Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Keeping session alive for PocketPC using Web Services

Status
Not open for further replies.

abs2003

MIS
Aug 31, 2004
80
US
Hi all,

I am using Web Services and get XML doc back. The problem is the session is ended before I make another request. Example, I submit request to login on the service. I then submit another request for search. Evidently, the session is terminated after service return the result. Can anyone help?

Here's the portion of my code:
Code:
        Dim cnt As Integer
        Dim nodeList As XmlNodeList
        Dim xNode As XmlNode
        Dim logInNode As XmlNode
        Dim rootNode As XmlNode
        Dim ws As New com.theWebSite.Login.wsLogin
        Dim itmNo As String

        rootNode = ws.Login(UserID, PW)


        Dim wsSearch As New com.theWebSite.Search.Search

        rootNode = wsSearch.ISBNSearch(SearchItem, 1, 1)

Thank you

abs
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top