View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
tom tom is offline
external usenet poster
 
Posts: 570
Default multiple webservice calls on same server session

Hello,

I want to do multiple webservice calls and want to make sure that they
arrive on the same session server side.

I've used the Webservice reference toolkit to create the proxy classes for
the webservices.

"
Dim x as WsvcClass1
Dim y as WsvcClass2

bool a = x.CallWebmethod1()
bool b = y.CallWebmethod2()
"

Is there a way to make sure that x and y call the server on the same session?

PS : I use excel 2000

Thanx,
Tom