Results 1 to 2 of 2
- 07-06-2011, 11:57 AM #1
Member
- Join Date
- Nov 2010
- Posts
- 2
- Rep Power
- 0
JAVA web service (XML-RPC) is it multi threaded?
Hello ALL
I have, i hope, a simple question.
I use java XML-RPC web services to expose a bit of functionality. see below
ProcessWs.java
@WebService
@SOAPBinding(style = Style.RPC)
public interface ProcessWS{
@WebMethod CleanReturn Clean(String xml);
}
ProcessWsIMPL.java
@Override
public QASCleanReturn QASClean(String xml) {
....
...
(CODE)
....
....
}
what i would like to know is, if two clients were to make a call to this web service at the same time will it be multi-threaded and processed both calls at the same time? Or will the process one call and queue subsequent requests?
Many thanks in advance for all the help
Ricky
- 07-07-2011, 06:28 AM #2
Senior Member
- Join Date
- Nov 2010
- Location
- Delhi
- Posts
- 135
- Blog Entries
- 1
- Rep Power
- 0
Similar Threads
-
Implement a multi-threaded matrix multiplication program.
By redasu in forum Threads and SynchronizationReplies: 0Last Post: 11-17-2010, 09:00 AM -
Threaded algorithms
By TerTer in forum Threads and SynchronizationReplies: 0Last Post: 04-20-2010, 02:58 PM -
Writing into a File in a Multi Threaded app.
By snehalkgandhi in forum Threads and SynchronizationReplies: 1Last Post: 12-19-2008, 05:10 AM -
A generic framework for a flexible, multi-threaded server
By Java Tip in forum java.netReplies: 0Last Post: 04-07-2008, 08:14 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks