Author: gnodet
Date: Mon Sep 25 04:16:33 2006
New Revision: 449652

URL: http://svn.apache.org/viewvc?view=rev&rev=449652
Log:
SM-577: JSR181 fault messages does not respect WSDL message fault definition

Modified:
    
incubator/servicemix/trunk/servicemix-itests/src/test/java/org/apache/servicemix/itests/PersonTest.java

Modified: 
incubator/servicemix/trunk/servicemix-itests/src/test/java/org/apache/servicemix/itests/PersonTest.java
URL: 
http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-itests/src/test/java/org/apache/servicemix/itests/PersonTest.java?view=diff&rev=449652&r1=449651&r2=449652
==============================================================================
--- 
incubator/servicemix/trunk/servicemix-itests/src/test/java/org/apache/servicemix/itests/PersonTest.java
 (original)
+++ 
incubator/servicemix/trunk/servicemix-itests/src/test/java/org/apache/servicemix/itests/PersonTest.java
 Mon Sep 25 04:16:33 2006
@@ -68,19 +68,4 @@
         System.err.println(method.getResponseBodyAsString());;
     }
 
-    public void testFault2() throws Exception {
-        PostMethod method = new 
PostMethod("http://localhost:8192/PersonService/";);
-        String req = "<env:Envelope 
xmlns:env=\"http://schemas.xmlsoap.org/soap/envelope/\"; " +
-                     "              
xmlns:tns=\"http://servicemix.apache.org/samples/wsdl-first/types\";>" +
-                     "  <env:Body>" +
-                     "    <tns:GetPerson>" +
-                     "       <tns:personI></tns:personId>" +
-                     "    </tns:GetPerson>" +
-                     "  </env:Body>" +
-                     "</env:Envelope>";
-        method.setRequestEntity(new StringRequestEntity(req));
-        new HttpClient().executeMethod(method);
-        System.err.println(method.getResponseBodyAsString());;
-    }
-
 }


Reply via email to