Changeset 1928 for trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs
- Timestamp:
- 03/18/15 16:03:10 (10 years ago)
- Location:
- trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/SOAPUtils.java
r1924 r1928 196 196 * @param node 197 197 * DOM node that is serialized 198 * @return XML serialization as String 198 * @return XML serialization as String; null if node is null 199 199 */ 200 200 public static String getSerialization(Node node) { 201 if( node==null ) { 202 return null; 203 } 201 204 try { 202 205 StringWriter writer = new StringWriter(); -
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java
r1924 r1928 89 89 if (clientName == null) { 90 90 throw new IllegalArgumentException("clientName must not be null"); 91 }92 if (soapRequestBody == null) {93 throw new IllegalArgumentException("soapRequestBody must not be null");94 91 } 95 92 this.calledMethod = calledMethod;
Note: See TracChangeset
for help on using the changeset viewer.