How create Prosy Class for soap.tcp

From: MrDotNet (MrDotNet_at_discussions.microsoft.com)
Date: 11/17/04


Date: Wed, 17 Nov 2004 11:39:14 -0800

hi
Here is my Web service and one Soapmethod how can I create proxy class for
that and hows client access that web service. I try generated proxy class but
that give me error.
HELP.....
    Public Class WSE2Test
        Inherits SoapService
<SoapMethod("CreateDataTable")> Public Function CreateDataTable(ByVal
NCConnection As String, ByVal strSQL As String) As DataSet
            Try
              '......................
              ' Here some code fill out dataset
              return dataset
            Catch ex As Exception
                Throw ex
            End Try
            dbDA = Nothing
            dbCmd = Nothing
            dbConn = Nothing

        End Function

-- 
-MrDotNet MCAD, MCSD
Sr. Software Engineer / Lead Architect


Relevant Pages

  • Re: Please help me Run web services from information stored in a d
    ... the database will contain the string where the WSDL file could be found ... To give you an idea what string will be stored in the databse, ... Once I have the string that describes where I can find the Web Service, ... entry in the database table and be able to dynamically create the proxy class ...
    (microsoft.public.dotnet.framework.aspnet.webservices)
  • Calling Web Service Asynchronously
    ... I created a simple web service and a proxy class. ... basically it has one method called "GetSingle" that returns a string. ... Dim p As localhost.AsyncWebSvc = CType ...
    (microsoft.public.dotnet.framework.aspnet.webservices)
  • Proxy class not reading data returned in SOAP response
    ... I'm trying to create a .NET client to consume a Java web service. ... company that owns the web service does not publish a WSDL, ... generated a proxy class using WSDL.EXE. ... public string Login(string param1, string param2, string param3, out ...
    (microsoft.public.dotnet.framework.aspnet.webservices)
  • Re: how can i convert .asmx file to a .ashx?
    ... wsewsdl2.exe is a tool that generates proxy code for Web service clients ... The proxy derived from ... When you build an XML Web service client, whether you use Visual Studio .NET ... a proxy class is generated to communicate with the XML Web service. ...
    (microsoft.public.dotnet.framework.webservices.enhancements)
  • Re: Need help on passing custom objects (classes) to web service
    ... And also, once you have the web service solidified, the proxy class should ... > refreshed the reference at the client end. ... >>> Manohar Kamath ...
    (microsoft.public.dotnet.framework.webservices)

Loading