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:
Thank you
abs
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