You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Mark Roder <mr...@wamnet.com> on 2001/10/24 21:12:02 UTC

Issue: Namespace problems and deserialization

I am working on a soap client application that is talking to an existing
soap service.

I am having some namespace problems with responses containing objects with
no namespaces associated with them not being deserialized properly with the
BeanSerializer.

If you take the files from the attached jar and use them in the bidbuy
sample, you can see this error with the following steps:

To show it is broke with namespaces:
   -replace the files
   -run the functional tests

To show it works with namespaces
   -use the replaced files
   -modify the deploy.xml so the beanmapping has the namespace 
      from:<Receipt classname="samples.bidbuy.Receipt" /> 
      to:<bid:Receipt classname="samples.bidbuy.Receipt" /> 
   -modify the TestClient.java  so the rcptqn has the namespace.

Later

Mark