Ask a Question related to ASP.NET Web Services, Design and Development.
-
Luke Zhang [MSFT] #1
Re: Updating a web service and it's wsdl file
Come modification to my sample:
Public Class Info
Public name As String = "Superman"
Public email As String = "Superman@superman.com"
End Class
<WebMethod()> Public Function GetInfo() As Info
Dim MyInfo As New Info()
GetInfo = MyInfo
End Function
To expand it, add following class to your project:
Public Class MoreInfo
Inherits Info
Public sex As String = "male"
End Class
and change the web method to:
<WebMethod()> Public Function GetInfo() As MoreInfo
Dim MyInfo As New MoreInfo()
GetInfo = MyInfo
End Function
The "old" client will be able to work with this.
Luke
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
Luke Zhang [MSFT] Guest
-
.WSDL file and flex web service based app
Hi everyone, I had created a web service and generated the .wsdl file by weblogic workshop. This is web service is used to retrive data from... -
web service - external wsdl file in cf 6?
Hi, Considering that the wsdlfile attribute of the cfcomponent tag is a new CF 7 feature, is there another way to specify a wsdl file rather than... -
Binding a WSDL file to a web service class
I started developing an ASP.NET web service by explicitly designing the WSDL and separating the data type definitions into XSD files. I followed... -
Web Service from WSDL File
I have a situation where I have WSDL and a schema that I want to implement a web service from on a Windows box using VS .NET. Everything else I... -
Consuming Web Service with no WSDL file..
Sam, Since you have access to the schemas, which is the hard part, one viable option would be to hand-craft the WSDL file and use <xsd:import/>...



Reply With Quote

