Ignore:
Timestamp:
03/18/15 16:03:10 (9 years ago)
Author:
sherbold
Message:
  • body of SOAP request can now be null in SimpleSOAPEventType
File:
1 edited

Legend:

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

    r1924 r1928  
    196196     * @param node 
    197197     *            DOM node that is serialized 
    198      * @return XML serialization as String 
     198     * @return XML serialization as String; null if node is null 
    199199     */ 
    200200    public static String getSerialization(Node node) { 
     201        if( node==null ) { 
     202            return null; 
     203        } 
    201204        try { 
    202205            StringWriter writer = new StringWriter(); 
Note: See TracChangeset for help on using the changeset viewer.