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=8395>. 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=8395 Compatibility problem between Axis and .Net Summary: Compatibility problem between Axis and .Net Product: Axis Version: beta-1 Platform: PC OS/Version: Windows NT/2K Status: NEW Severity: Critical Priority: Other Component: Basic Architecture AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] I created some simple Web Service on Axis/Tomcat Beta1 release. I deployed it (on localhost:8080)This works fine, and I could access the service from a client on the local machine. Then I opened MS VS.net, created a client for the same service that is deployed above. Visual Studio could find and recognizes the service and get its wsdl file. When I tried to build the client, I get the message: "c:\inetpub\wwwroot\TempConvertClient1\WebForm1.aspx.cs(65): The type or namespace name 'Converter' does not exist in the class or namespace 'TempConvertClient1.TcatSvc' (are you missing an assembly reference?) c:\inetpub\wwwroot\TempConvertClient1\WebForm1.aspx.cs(67): The type or namespace name 'ws' could not be found (are you missing a using directive or an assembly reference?) "Converter" is the name of the Web Service. attached you find the Converter.wsdl file What is going on here? Did anyone tried this? Any compatibility issues here between Axis and .Net? please respond quickly Thanks WSDL file =========== <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions targetNamespace="urn:Example7" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:SOAP- ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:impl="urn:Example7-impl" xmlns:intf="urn:Example7" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <wsdl:message name="convertRequest"> <wsdl:part name="in0" type="xsd:double"/> </wsdl:message> <wsdl:message name="convertResponse"> <wsdl:part name="return" type="xsd:double"/> </wsdl:message> <wsdl:portType name="Converter"> <wsdl:operation name="convert" parameterOrder="in0"> <wsdl:input message="intf:convertRequest"/> <wsdl:output message="intf:convertResponse"/> </wsdl:operation> </wsdl:portType> <wsdl:binding name="ConverterSoapBinding" type="intf:Converter"> <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="convert"> <wsdlsoap:operation soapAction=""/> <wsdl:input> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:Example7" use="encoded"/> </wsdl:input> <wsdl:output> <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:Example7" use="encoded"/> </wsdl:output> </wsdl:operation> </wsdl:binding> <wsdl:service name="ConverterService"> <wsdl:port binding="intf:ConverterSoapBinding" name="Converter"> <wsdlsoap:address location="http://localhost:8080/axis/Converter.jws"/> </wsdl:port> </wsdl:service> </wsdl:definitions>