Axis does not supply correct namespace in SOAP message
------------------------------------------------------

         Key: AXIS-2449
         URL: http://issues.apache.org/jira/browse/AXIS-2449
     Project: Apache Axis
        Type: Bug
  Components: Basic Architecture, Serialization/Deserialization  
 Environment: Windows XP, JBoss 4.0.3
    Reporter: Alexander Vaagan


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"



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to