You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by mm...@apache.org on 2005/05/06 00:37:40 UTC

svn commit: r168451 - /incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java

Author: mmerz
Date: Thu May  5 15:37:40 2005
New Revision: 168451

URL: http://svn.apache.org/viewcvs?rev=168451&view=rev
Log:
Fix for the RPC encoding issue.  Bug 571

Contributor: Daryoush Mehrtash

Modified:
    incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java

Modified: incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java?rev=168451&r1=168450&r2=168451&view=diff
==============================================================================
--- incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java (original)
+++ incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java Thu May  5 15:37:40 2005
@@ -96,7 +96,7 @@
 
         TypeMappingRegistry tmr = new TypeMappingRegistryImpl(true);
         TypeMapping tm = tmr
-                .getOrMakeTypeMapping(sd.getUse() == Use.ENCODED ? "encoded"
+                .getOrMakeTypeMapping(sd.getUse() == Use.ENCODED ? "http://schemas.xmlsoap.org/soap/encoding/" //"encoded"
                         : "");
         sd.setTypeMappingRegistry(tmr);
         sd.setTypeMapping(tm);