RE: Multiple requests to a webservice...???
- From: stcheng@xxxxxxxxxxxxxxxxxxxx (Steven Cheng [MSFT])
- Date: Fri, 28 Mar 2008 04:12:50 GMT
Hi Srishti,
From your description, you have an IIS ISAPI component which accept requestfrom client and perform some processing and write the output back to
client. Now, you're looking for a way to make multiple such requests(http)
package into a single http request so that you can make multiple such web
request called without establishing multiple http connections, correct?
If this is the case, I think this is mostly depending on the server-side
ISAPI processing code logic. For http/soap protocal, the standard is fixed
that we cannot make multiple http request become a single request(something
like batch request sending). However, for server-side processing, that's
customizable. For example, you may make your ISAPI extension accept an
additional parameter such as processing count so as to determine how many
times you will need to process for the same requests. Or you can define new
request message formatting so as to contain multiple method call bodies in
it. Anyway, I think it is necessary to adjust the server-side code logic.
How do you think?
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@xxxxxxxxxxxxxx
==================================================
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.
--------------------
From: =?Utf-8?B?U29udQ==?= <sonu@xxxxxxxxxxxxx>
Subject: Multiple requests to a webservice...???
Date: Thu, 27 Mar 2008 14:16:00 -0700
times
Hi all,
I don't know if this is the right place to ask this question.... so if it
isn't please direct me as to where I should be asking this....
I have an ISAPI dll for a client (written in c++ compiled in VS2003)
This application handles one request at a time, does some calculation and
returns the result on the browser. This is being hosted on my server which
the client calls from his server.
Now, my client needs to do this operation from the ISAPI dll multiple
for every user who makes a request for it.seconds.
So this process takes a considerable amount of time for each user as it
performs the operation manu times for evry user.
"one request takes about 0.6-0.7 seconds and 12 requests take 7-10
Could it be possible do something so that we need to send just one httpye...
request instead of 12. Something like a SOAP api where we can pass data
(whether in array or XML) of all the 12 requests at one time and you can
return the result?"
I have been looking into this past two days in the general area of XML
webservices, ATL server, .NET web services.... But not sure what to do
so,
I hope I am clear... and hopefully heading in the right direction... If
I didn't find any indication/examples of how I could pass multiplerequests
to a webservice method....know
Hopefully I can make a web service or picksup data from an XML file and
return the results in an XML files as well of all the requests....(don't
what is possible!!)
Please help...............!!!
Regards & Thanks a lot
Srishti
.
- Follow-Ups:
- RE: Multiple requests to a webservice...???
- From: Sonu
- RE: Multiple requests to a webservice...???
- References:
- Multiple requests to a webservice...???
- From: Sonu
- Multiple requests to a webservice...???
- Prev by Date: Multiple requests to a webservice...???
- Next by Date: RE: Multiple requests to a webservice...???
- Previous by thread: Multiple requests to a webservice...???
- Next by thread: RE: Multiple requests to a webservice...???
- Index(es):
Relevant Pages
|