Ignore:
Timestamp:
07/08/15 13:09:44 (9 years ago)
Author:
sherbold
Message:
  • SimpleSOAPEventType can now either be a request or a response and contains the appropriate soap message body
  • SOAPUtils offer function to convert SOAPEventType into SimpleSOAPEventType and meanwhile split into request and response and sort the SimpleSOAPEvents in the appropriate order
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SOAPEventType.java

    r1924 r1993  
    270270        } 
    271271    } 
     272     
     273    /** 
     274     * @return the body of the soapResponse 
     275     */ 
     276    public Element getSoapResponseBody() { 
     277        try { 
     278            return soapResponse.getSOAPBody(); 
     279        } 
     280        catch (SOAPException e) { 
     281            return null; 
     282        } 
     283    } 
    272284 
    273285    /* (non-Javadoc) 
Note: See TracChangeset for help on using the changeset viewer.