Soap

C

cj

I've got a Soap web client written in VB. I'm wondering if it would be
ok to run this same program multiple times on the same pc. Would they
get confused with which of them requested what information? I'm
guessing it would be ok but...
 
?

=?ISO-8859-1?Q?G=F6ran_Andersson?=

cj said:
I've got a Soap web client written in VB. I'm wondering if it would be
ok to run this same program multiple times on the same pc. Would they
get confused with which of them requested what information? I'm
guessing it would be ok but...

The HTTP protocol takes care of that, just as when you have more than
one web browser running on the computer.
 
S

Steven Cheng[MSFT]

Hi Cj,

As for the VB soap client, do you mean it is a webservice proxy generated
in the VB.NET application, also is the server-side webservice also based on
..net/ASP.NET? Normally, if you start multiple instance of the same
webservice client application on a PC and execute webservice requests(web
method call) to the server, the server can correctly distinguish those
different client-side webservice requests, this is guranteed by underlying
transport layer(such as TCP, HTTP...), your webservice do not to do
anything particular on this. Thus, client A will always get the response
message(processed against requestA), client B will always get the response
message(processed against requestB)...

Is this want you need to know? If there is anything we missed, please feel
free to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.

==================================================



This posting is provided "AS IS" with no warranties, and confers no rights.
 
C

cj

Yes, I think we are talking about the same thing. I guess it's time to
give it a try. Thanks.
 
S

Steven Cheng[MSFT]

Thanks for your reply Cj,

Sure, if you have any further questions on this when testing the SOAP
client, please feel free to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.
 
S

Steven Cheng[MSFT]

Hi Cj,

have you got any further progress? If there is still any question, please
feel free to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top