ASP
  Home arrow ASP arrow Consuming a WSDL Webservice from ASP
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ASP

Consuming a WSDL Webservice from ASP
By: Dave - 123aspx.com
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 34
    2003-01-01

    Table of Contents:

    Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Last week I exposed my site, 123aspx.com, as a SOAP webservice. However, most webmasters feel you need to run ASP.NET or the SOAP toolkit to take advantage this service. This isn't necesarily true, with a little ingunetiy and the latest XML parser from Microsoft, you can consume SOAP services from a traditional ASP page. This tutorial will show you how.
    Last week I exposed my site, 123aspx.com, as a SOAP webservice.   However, most webmasters feel you need to run ASP.NET or the SOAP toolkit to take advantage this service.  This isn't necesarily true, with a little ingunetiy and the latest XML parser from Microsoft, you can consume SOAP services from a traditional ASP page. This tutorial will show you how.

    Overview
    This example application uses the
    123aspx.com webservice as an example.  I'll be using the following three files to demonstrate consuming this service from ASP:.
         global.asa -- used to populate an Application level variable with the SOAP data when the application starts.
         i_soapcall.asp -- an include file used to call the SOAP webservice.
         default.asp -- a standard ASP page used to display the formatted SOAP data.
    Global.asa
    The global.asa file is fired everytime the website starts.  Specically the event Sub Application_OnStart is called. Inside of this sub, we are going to populate an application level variable with our SOAP data. Lets take a look at the code.
    <SCRIPT LANGUAGE=VBScript RUNAT=Server>
    Sub Application_OnStart
        Dim ASPNETResources
        ASPNETResources = GetASPNetResources()   
        Application("ASPNETExpires") = 12    'set the content to expire in 12 hours.
        If Len(ASPNETResources) >0 then    'populate the application level variables
            Application.Lock
            Application("ASPNETResourcesUpdated")=Now()
            Application("ASPNETResourceList")=ASPNETResources
            Application.UnLock
        End if
    End Sub
    </script>
    <!-- #include file="i_soapcall.asp" -->
    When Application_OnStart first fires, we dimension a variable called ASPNETResources, which is populated by a function call GetASPNetResources(), GetASPNetResources(), found inside of the include file i_soapcall.asp, returns a string of HTML. We will be getting to i_soapcall.asp shortly.  Lets go over some of the logic of the global.asa code.   Once we have made our function call, we are storing an an expiration time of 12 hours the variable Application("ASPNETExpires"). We'll use this later in default.asp. We also check to see if the function was sucessful and returned a string with a length greater than 0.  If ASPNETResources was populated, then we need to record the time it was populated, Application("ASPNETResourcesUpdated"), and store the results in the application level variable, Application("ASPNETResourceList").
    Default.asp
    The default.asp is used to display the formatted contents of our webservice request.  Let's start out by looking at the code of default.asp.
    <%
    Dim     ASPNETResources   
    If len( Application("ASPNETResourceList") )>0 then    'we have our latest resources

        REM -- check to see if they expired
        If DateDiff("h",Now(),Application("ASPNETResourcesUpdated")) > Application("ASPNETExpires") Then   
            REM -- we need to update the latest resurces
            ASPNETResources = GetASPNetResources()
            Application.Lock
            Application("ASPNETResourcesUpdated")=Now()
            Application("ASPNETResourceList")=ASPNETResources
            Application.UnLock
        End if 'datediff...

    Else    'for some reason the application level variable is empty, fill it.
        ASPNETResources = GetASPNetResources()
        Application.Lock
        Application("ASPNETResourcesUpdated")=Now()
        Application("ASPNETResourceList")=ASPNETResources
        Application.UnLock

    End if
    Response.Write     Application("ASPNETResourceList")
    %>
    The first thing we want to check is to see if our application level variable, Application("ASPNETResourceList"), has been populated. We do that by checking it's length:
        If len( Application("ASPNETResourceList") )>0 then 'we have our latest resources
    If indeed, there is data, we need to check to see if  the data has expired.  Using the DateDiff function, we can check to see if the data has expired past our timespan of 12 hours which was set in our global.asa as Application("ASPNETExpires").
        If DateDiff("h",Now(),Application("ASPNETResourcesUpdated")) > Application("ASPNETExpires") Then   
    If our data has expired or, if for some reason, Application("ASPNETResourceList") is empty, we call our soap service to populate our variable with data. We are using the same logic that we did in the global.asa. Once we have our data, we execute a Response.Write() to send our formatted results to the client.
    Now the Good Stuff - i_soapcall.asp
    Now to the heart of the matter, it's what we've all been waiting for, how is this mysterious function GetASPNetResources(), consuming a webservice from legacy ASP? Remeber that our SOAP service is really serving up a XML formatted text file.   If we can somehow, progromattically, get to that XML file, then we should be able to parse it. Well in our case, it turns out it's really not that difficult. Inside of our function, we call two objects:
    Function GetASPNetResources()   
        Set SoapRequest = Server.CreateObject("MSXML2.XMLHTTP")
        Set myXML =Server.CreateObject("MSXML.DOMDocument")
    SoapRequest is the server-side component that can make POST and GET requests across the web.  For more info on the MSXML2.XMLHTTP component, you can visit MSDN.
    myXML will be used to create an in-memory XML document of our SOAP service.  Now that we have our objects, let's call our SOAP service.
        myXML.Async=False
        SoapURL = "http://64.85.12.73/WebSvc/whatsnew123apx_ds.asmx/GetNew123aspXResources?"
        SoapRequest.Open "GET",SoapURL , False
        SoapRequest.Send()

        if Not myXML.load(SoapRequest.responseXML) then 'an Error loading XML
            returnString = ""
        Else    'parse the XML

    First we we set the Asyncronous property of our XMLDocument object to false. This will require the entire SOAP xml document to get loaded into memory before we continue processing code.  We set  SoapURL to the url of our webservice, and then we open a connection to our webservice using:
        SoapRequest.Open "GET",SoapURL , False
    SoapRequest.Open takes 5 parameters. Only the first two are required and the remaining three are optional. Here is a breakdown of the 5 parameters:
        oServerXMLHTTPRequest.open bstrMethod, bstrUrl, bAsync, bstrUser, bstrPassword
        Parameters
        bstrMethod
            HTTP method used to open the connection, such as PUT or PROPFIND.
        bstrUrl
            Requested URL. This must be an absolute URL, such as "http://Myserver/Mypath/Myfile.asp".
        bAsync (optional)
            Boolean. Indicator as to whether the call is asynchronous. The default is False (the call does not return immediately).
        bstrUser (optional)
            Name of the user for authentication.
        bstrPassword (optional)
            Password for authentication. This parameter is ignored if the user parameter is Null or missing
    With our open connection, we make a  request across the web by calling SoapRequest.Send(). The webserver sends the results back, and they are stored in the property SoapRequest.responseXML,as text. We take this text and load it asycronously into an in-memory resident XML Dom object by calling the load method of myXML. If any xml parsing errors occur, the document is not loaded and we decide to return an empty string.  If the XML document was loaded successfully, we parse document and look for our data.
    Parsing the XML Document
    Our SOAP service returns 4 fields: Name, URL, Domain, and DateUpdated. In this version of calling our SOAP service, we are only going to display the Name and URL fields.  So how do we get at these fields? We search for them specifiing the XPath syntax for searching.
        REM -- The XML Nodes are CASE SENSITIVVE!
        Set nodesURL=myXML.documentElement.selectNodes("//URL")
        Set nodesName=myXML.documentElement.selectNodes("//Name")
        NumOfNodes = nodesURL.Length
    The "//" characters are used to denote "find all instances of " in XPath. Therefore, using "//URL" will return an arry of nodes in the XML document named "URL".  We have to be careful here, because XML is case sensitive, calling "//url" will not return any nodes at all. We check the length of the array by calling nodesURL.Length.
    The Hard Part is Over
    We've called our SOAP service, and now we have access to our nodes, all that's left is to format and display it to the HTML client.
        ResourceList = "<font face=verdana size=2>Latest ASP.NET Resources</font><ul>"
        For i = 0 to NumOfNodes -1
            ResourceList = ResourceList & "<li><a href=" & nodesURL(i).text & "><font face=verdana size=2>" & nodesName(i).text & "</font></a></li>"
        next
        ResourceList =ResourceList & "</ul>"
        returnString = ResourceList
        GetASPNetResources = returnString
    Because the array of nodes is a zero based array, we run a For loop to a maximum of NumOfNodes -1. We dynamically build a string, wrapping <li> </li> around our Names and URLs.  We could have easily have built an HTML table or some other structure.  We store our formatted HTML string in returnString, and pass returnString back to the function call  GetASPNetResources = returnString.
    That's All!
    That's all their is to calling a SOAP service from a legacy ASP page.   We've called our SOAP service and passed it into an XML object using Microsoft's parsers:
    MSXML2.XMLHTTP and MSXML.DOMDocument. We've looped through the collection of nodes and created an HTML formatted string. We've simulated ASP.NET caching by storing the HTML formatted string in an Application level varable. Here is the code in its entirety.
    All the code
    Global.asa
    <SCRIPT LANGUAGE=VBScript RUNAT=Server>

    Sub Application_OnStart
        Dim ASPNETResources

        ASPNETResources = GetASPNetResources()   
        Application("ASPNETExpires") = 12    'set the content to expire in 12 hours.
        If Len(ASPNETResources) >0 then    'populate the application level variables
            Application.Lock
           
            Application("ASPNETResourcesUpdated")=Now()
            Application("ASPNETResourceList")=ASPNETResources
            Application.UnLock
        End if

    End Sub
    </script>
    <!-- #include file="i_soapcall.asp" -->
    Default.asp
    <%@ Language=VBScript %>
    <%Option Explicit%>
    <!-- #include file="i_soapcall.asp" -->
    <HTML>
    <HEAD>
    <META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
    </HEAD>
    <BODY>
    <%
    Dim     ASPNETResources   
    If len( Application("ASPNETResourceList") )>0 then    'we have our latest resources

        REM -- check to see if they expired
        If DateDiff("h",Now(),Application("ASPNETResourcesUpdated")) > Application("ASPNETExpires") Then   
            REM -- we need to update the latest resurces
            ASPNETResources = GetASPNetResources()
            Application.Lock
            Application("ASPNETResourcesUpdated")=Now()
            Application("ASPNETResourceList")=ASPNETResources
            Application.UnLock
        End if 'datediff...

    Else    'for some reason the application level variable is empty, fill it.
        ASPNETResources = GetASPNetResources()
        Application.Lock
        Application("ASPNETResourcesUpdated")=Now()
        Application("ASPNETResourceList")=ASPNETResources
        Application.UnLock

    End if 'len(..

    Response.Write     Application("ASPNETResourceList")

    %>
    <P>&nbsp;</P>

    </BODY>
    </HTML>
    i_soapcall.asp
    <script language="vbscript" runat="server">
    Function GetASPNetResources()   
        Dim returnString
        Dim myXML
        Dim SoapRequest
        Dim SoapURL

        Set SoapRequest = Server.CreateObject("MSXML2.XMLHTTP")
        Set myXML =Server.CreateObject("MSXML.DOMDocument")

        myXML.Async=False
        SoapURL = "http://64.85.12.73/WebSvc/whatsnew123apx_ds.asmx/GetNew123aspXResources?"
        SoapRequest.Open "GET",SoapURL , False
        SoapRequest.Send()

        if Not myXML.load(SoapRequest.responseXML) then 'an Error loading XML
            returnString = ""
        Else    'parse the XML

            Dim nodesURL
            Dim nodesName
            Dim nodesDateUpdated
            Dim nodesDomain
            Dim NumOfNodes
            Dim ResourceList
            Dim i

            REM -- The XML Nodes are CASE SENSITIVVE!
            Set nodesURL=myXML.documentElement.selectNodes("//URL")
            Set nodesName=myXML.documentElement.selectNodes("//Name")

            REM -- uncomment the following lines if we want to access the DataUpdated and the Domain Nodes
            REM --Set nodesDateUpdated = myXML.documentElement.selectNodes("//DateUpdated")
            REM --Set nodesDomain = myXML.documentElement.selectNodes("//Domain")

            REM -- the number of nodes in the list
            NumOfNodes = nodesURL.Length
            ResourceList = "<font face=verdana size=2>Latest ASP.NET Resources</font><ul>"

            For i = 0 to NumOfNodes -1
                ResourceList = ResourceList & "<li><a href=" & nodesURL(i).text & "><font face=verdana size=2>" & nodesName(i).text & "</font></a></li>"
            next

            ResourceList =ResourceList & "</ul>"
           
            returnString = ResourceList
       
            Set nodesURL = Nothing
            Set nodesName = Nothing
        End If
       
        Set SoapRequest = Nothing
        Set myXML = Nothing
       
       
        GetASPNetResources = returnString
    End Function
    </script>

    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More ASP Articles
    More By Dave - 123aspx.com

     

    IBM® developerWorks developerWorks - FREE Tools!


    IBM – Taking Web 2.0 to Work

    You'll get answers to many questions and more from David Barnes, Lead Evangelist for IBM Emerging Internet Technologies. David will discuss aspects of Web 2.0 that bring value to corporations, academia, and government. He'll also discuss IBM's vision around Web 2.0, including the importance of remixability and consumability. The discussion will culminate with examples of various IBM Software Group solutions you can use to get ahead of the Web 2.0 adoption curve.
    FREE! Go There Now!


    NEW! Accelerating Software Innovation on i on Power Systems

    Attend this launch webcast with Scott Hebner, Vice President of IBM Rational Marketing and Strategy, for an overview of Rational’s new software offerings and resources to help modernize and accelerate software innovation on i on Power Systems – while ensuring past application investments are protected and continue to grow. Learn how these solutions are helping customers extend their core i5/OS solutions toward modern architectures such as SOA and web technologies to deliver business improvements that stand the test of time.
    FREE! Go There Now!


    NEW! Best Practices in Integrated Requirements Management

    Poor Requirements Management capabilities in an Enterprise have been linked to excessive project failures, escalating IT costs, and failure to deliver competitive advantage into the marketplace. Join Brianna M Smith from IBM Rational and learn about how successful organizations align IT and Business stakeholders through collaborative processes and tools for effective requirements management, and how an integrated approach across the IT lifecycle can provide unparalleled visibility and traceability to ensure that project teams are delivering on the business vision by "doing the right things" and "doing things right."
    FREE! Go There Now!


    NEW! Download DB2 9.5 for Linux, Unix, and Windows

    Download a free trial version of IBM DB2 9.5 for Linux, UNIX, and Windows. DB2 9 is the result of a five-year development project that transformed traditional (static) database technology into an interactive data server that merges the high performance and ease of use of DB2 with the self-describing benefits of XML.
    FREE! Go There Now!


    NEW! Download the free Web Application Security eKit

    Discover how IBM Rational AppScan Standard Edition can help you detext vulnerabilities in your web applications in the Web Application Security eKit. IBM Rational AppScan is a leading suite of automated web application security solutions that scan and test for common Web application vulnerabilities. The new Web Application Security eKit provides you with valuable resources, including white papers, demos, and additional information on the benefits of testing your Web applications.
    FREE! Go There Now!


    NEW! Hello World: Monitor a simple business process using WebSphere Business Monitor V6.0.2

    This tutorial shows new users of IBM WebSphere Business Monitor Version 6.0.2 how to perform the "Hello World" equivalent for monitoring business process applications. It is intended to help you get familiar with the capabilities of the product.
    FREE! Go There Now!


    NEW! Improve your build process with IBM Rational Build Forge, Part 1: Create a continuous build and integration environment

    Learn how to implement a build management system that uses and extends your existing automation technologies. This tutorial shows, step-by-step, how to install and configure IBM Rational Build Forge to manage builds for Jakarta Tomcat from source code.
    FREE! Go There Now!


    NEW! Try the IBM SOA Sandbox for People

    Visit IBM developerWorks to try the IBM SOA Sandbox for people. The SOA Sandbox for people provides a trial environment with the necessary tooling and components required to enable consistent human and process interaction and collaboration, showing how you can improve user experience and business productivity.
    FREE! Go There Now!


    NEW! Webcast: Eclipse: Empowering the universal platform

    The Eclipse community is constantly working to extend Eclipse's functionality. In this webcast, learn about some of the most important and feature-rich projects under development. From multi-language support to plug-in development, tune in to see what Eclipse is capable of now.
    FREE! Go There Now!


    NEW! Webcast: Quickly provide customized, integrated user interfaces with Lotus Notes 8

    IBM Lotus Notes 8 provides a wide range of developers the ability to provide customized, integrated user interfaces via composite applications and via custom sidebar and toolbar plug-ins. This webcast provides you with tips and techniques to use with out-of-the-box capabilities of Lotus Notes 8, and survey how you can share useful components within your own company and within a larger community.
    FREE! Go There Now!



    All FREE IBM® developerWorks Tools!

    ASP ARTICLES

    - Using MySQL with ASP
    - ADO for the Beginner
    - ADO.NET 101: Data Rendering with a DataGrid ...
    - Introducing SoftArtisans OfficeWriter 3.0 En...
    - Getting Remote Files With ASP
    - The Real Basics of Functions in ASP
    - Enhancing Readability with ASP
    - Mimicking PHP's String Formatting Functions
    - Windows Server Hacks 12, 77, and 98
    - How to Sort a Multi-Dimensional Array
    - Developing an Information Management Tool wi...
    - What are Active Server Pages?
    - Getting Remote Pages with ASP
    - FTP’ing Files with ASP
    - Apply Single-Sign-On to Your Application





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
    Stay green...Green IT