HI Alll,

Axis 2 doesn't support some format of SOAP messages ,Is there a reason for 
it,or is it
a standard.



Axis 2 doesn't support this format of request , any idea why ???


<SOAP-ENV:Envelope 
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; 
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";>
                
<SOAP-ENV:Body>
                                <executeSQLQuery 
xmlns=http://www.kiran.com/AXL/API/7.1>
                                                
<sql>select * from typeproduct</sql> 
                                
</executeSQLQuery>
                
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
    
 



 (axis 2) expects the request message  to have 
namespace prefix in the request 
.
  
<SOAP-ENV:Envelope 
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; 
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";>
                
<SOAP-ENV:Body>
                                <ns:executeSQLQuery xmlns:ns 
="http://www.kiran.com/AXL/API/8.0";>
                                                
<sql>select * from typeproduct</sql> 
                                </ns:executeSQLQuery>
                
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>Is there a way to  make the axis 2 framework to allow and 
process the other format of request .
Can someone reply back soon.

Thanks ,
Sriram 



      From cricket scores to your friends. Try the Yahoo! India Homepage! 
http://in.yahoo.com/trynew

Reply via email to