Kinook Software Forum

Kinook Software Forum (https://www.kinook.com/Forum/index.php)
-   [VBP] General Discussion (https://www.kinook.com/Forum/forumdisplay.php?f=2)
-   -   Consuming Web Services (https://www.kinook.com/Forum/showthread.php?t=414)

tdc 04-23-2004 12:46 PM

Consuming Web Services
 
Is there any way I can consume a web service directly from Visual Build? I'd like to be able to convert values returned from the web service into Visual Build macros.

kinook 04-23-2004 01:28 PM

You should be able to use the MS SOAP 3.0 toolkit and some vbscript to do what you are requesting.

You can download the MS SOAP 3.0 toolkit at http://download.microsoft.com/downlo...39/soapsdk.exe

Here is a function (untested) to get you started. You could add a function similar to the following example to your project script, then just add a Set Macro step with [GetSOAPValue()] as the value.

Function GetSOAPValue()
' (Using MS SOAP Toolkit 3.0)

' SOAP client object
Set clientACH = CreateObject("MSSOAP.SoapClient30")
' Output variables
Dim Result
' Initializing the SOAP client
clientACH.MSSoapInit "http://soap.example.com/soap-url"
' soap method
Result = clientACH.ConnectionCheck("Parameter1", "Parameter2")
GetSOAPValue = Result
End Function

James 10-04-2005 11:05 AM

Another method
 
Here is another method of consuming web services from a Visual Build script. This method uses the HTTP action rather than using VB Script and the MS SOAP toolkit.

Let's assume you have the following web service:

Code:

_
Public Class MyWebService
        Inherits System.Web.Services.WebService

        _
        Public Function MyWebMethod(ByVal param1 As String, ByVal param2 As Integer) As Boolean
                ' Perform web service logic here
                Return True
        End Function
End Class

To consume this web service using Visual Build Pro, simply create an HTTP action and set its properties as follows:

HTTP Server: The name of the server (e.g. "localhost")

Command: Post form data

Macro Name: The name of a temporary macro that will hold the result of the web method

URL: The path of the web method (e.g. "/MyWebService.asmx/MyWebMethod")

Transfer Type: ASCII

Form data: The parameters to pass to the web service, in the format Param1Name=Param1Value&Param2Name=Param2Value (e.g. "param1=hello world&param2=5")


That's it! Now you can execute the step to call the web service, and the return value will be stored in the macro you specified. So, for the sample web service shown above, the macro would hold the following value:
Code:


true

Keep in mind that you can use macros in the "Form data" field to dynamically pass values to the web service.


All times are GMT -5. The time now is 03:43 AM.


Copyright © 1999-2023 Kinook Software, Inc.