Issue Details (XML | Word | Printable)

Key: AXIS-2449
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: Alexander Vaagan
Votes: 4
Watchers: 4
Operations

If you were logged in you would be able to see more operations.
Axis

Axis does not supply correct namespace in SOAP message

Created: 28/Mar/06 04:29 PM   Updated: 30/May/06 09:23 PM
Return to search
Component/s: Basic Architecture, Serialization/Deserialization
Affects Version/s: None
Fix Version/s: None

Time Tracking:
Not Specified

File Attachments:
  Size
XML File SampleWS.wsdl 2006-03-31 04:38 PM Alexander Vaagan 3 kB
Environment: Windows XP, JBoss 4.0.3


 Description  « Hide
Hi.
I have a WebService running on axis and are trying to consume it from a .NET (C#) client, but all I get back is NULL values.

I have search both this mailing list and others and I can see that I am not the only one having this problem, but I can't seem to find a real fix to the problem.
Some people says I should manually edit the wsdl file and some mean I should manualy edit the .NET proxy, but I don't like either solution sinse it fixes the
symptom not the real problem.

The service takes a complex type and an int as input and returns å complex type.
In the .wsdd file I have adden a beanMapping that looks like this:

<beanMapping
xmlns:bedriftws="http://data.foo.bar.company"
qname="companyws:FoobarDO"
languageSpecificType="java:company.bar.foo.data.FoobarDO"
/>
which puts the type in the http://data.foo.bar.company namespace.
The default namespace is http://foo.bar.company namespace.
The wsdl file is automatically generated from axis like this: http://hostname/webapp/services/FoobarWS?wsdl

The schema definition of the returned object in the wsdl looks like this: (The extension base i found in the "http://framework.company" namespace)

            <schema elementFormDefault="qualified" targetNamespace="http://data.foo.bar.company" xmlns="http://www.w3.org/2001/XMLSchema">
               <import namespace="http://framework.company"/>
               <complexType name="FoobarDO">
                  <complexContent>
                     <extension base="tns1:Data">
                        <sequence>
                           <element name="signatur" nillable="true" type="xsd:string"/>
                           <element name="kommentar" nillable="true" type="xsd:string"/>
                        </sequence>
                     </extension>
                  </complexContent>
               </complexType>

To me it looks like it's located in the correkt namespace as defines in the beanMapping in the wsdd file.

The problem is that axis does not send the response in the correkt namespace:
Eg. Soap response from axis:

<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <soapenv:Body>
         <hentFoobarResponse xmlns="http://foo.bar.company">
            <hentFoobarReturn>
               <signatur xsi:nil="true"/>
               <kommentar>Viskom testing testing testing</kommentar>
            </hentFoobarReturn>
         </hentFoobarResponse>
      </soapenv:Body>
   </soapenv:Envelope>

Here the .NET client clearly is trying to find objects and values in the wrong namespace. The wsdl says it's in http://data.foo.bar.company and axis sends it in http://foo.bar.company

I have deployed the same app on a Websphere server (without axis) and this works fine. The return message from Websphere looks like this:

<?xml version="1.0" encoding="utf-8"?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <soapenv:Header/>
      <soapenv:Body>
         <hentFoobarResponse xmlns="http://foo.bar.company">
            <hentFoobarReturn>
               <signatur xsi:nil="true" xmlns="http://data.foo.bar.company"/>
               <kommentar xmlns="http://data.foo.bar.company">Viskom testing testing testing</kommentar>
            </hentFoobarReturn>
         </hentFoobarResponse >
      </soapenv:Body>
   </soapenv:Envelope>

Here the correkt namespace is supplied and the .NET client can read and deserialize it correctly.

Axis version: Implementation-Version: 1.3 2244 October 5 2005
Java version: java full version "1.4.2_08-b03"



 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Alexander Vaagan added a comment - 29/Mar/06 12:01 AM
I see I have made a small typo in the above description.
Please substitue bedriftws witth companyws.

/Alex

Bjorn Townsend added a comment - 31/Mar/06 03:54 AM
Can you attatch the full WSDL so we can try and reproduce this more easily?

Alexander Vaagan added a comment - 31/Mar/06 04:38 PM
Hi.
Thanks for looking in to this problem. It's a real showstopper for me sinse a lot of the consumers of the services I write are .NET.
The WSDL file I attached is not the exact same one that I used in my previous post, but it has the same problem. As far as I can see,
unless the WebService and the data objects are in the same namespace, Axis will always get this wrong.

I downloaded the latest CVS snapshot and it has the same problem.

/alex


John Busfield added a comment - 30/May/06 09:23 PM
AXIS-2473 and AXIS-1529 describe the same issue and are also unresolved.