Author: mmerz Date: Tue Dec 7 09:57:33 2004 New Revision: 110123 URL: http://svn.apache.org/viewcvs?view=rev&rev=110123 Log: AxisHook was incorrectly setting the QName of an array to the component's QName.
Contributor: Jonathan Colwell 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?view=diff&rev=110123&p1=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java&r1=110122&p2=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/AxisHook.java&r2=110123 ============================================================================== --- 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 Tue Dec 7 09:57:33 2004 @@ -256,7 +256,7 @@ new ArrayDeserializerFactory() ); } - q = configureTypeMapping(desc, type.getComponentType()); + configureTypeMapping(desc, type.getComponentType()); } else if (! tm.isRegistered(type, q)) {
