DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8341>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8341 WSDL definitions element namespace is not compatible with W3C Summary: WSDL definitions element namespace is not compatible with W3C Product: Axis Version: beta-1 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Basic Architecture AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] According to http://www.w3.org/TR/wsdl the namespace URI that point to the SOAP schema (http://schemas.xmlsoap.org/wsdl/soap/) should be "soap" and not "wsdlsoap" . The problem causes compatibility problems with a SOAP client that I use. The WSDL definitions element should include the attribute xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" instead of xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/". This of course will also affect some other elements that use this namespace (binding, operations, address and body). Reproduce : URL : http://localhost:8080/axis/StockQuoteService.jws?WSDL Result : <wsdl:definitions targetNamespace="http://localhost:8080/axis/StockQuoteService.jws" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:SOAP- ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:impl="http://localhost:8080/axis/StockQuoteService.jws-impl" xmlns:intf="http://localhost:8080/axis/StockQuoteService.jws" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">.....