Hi,
I want to expose one object as webservice. This object is used to add requests in the work quque. Normally outside application use the BP object as webservice by resource name like follows:
http://resource1:8181/ws/AESxGetRequests?wsdl
where resource1 is the run time resource. this will handle one request at a time, I want that same object should be exposed as webservice on more than one runtime resource.
Like I want to expose on Reosurce 1 and Resource 2. How my outside application then call the webservice of object because now I will have 2 addresses.
http://resource1:8181/ws/AESxGetRequests?wsdl
http://resource2:8181/ws/AESxGetRequests?wsdl
Could it possible that we expose on a resource pool like follows
http://resourcepool:8181/ws/AESxGetRequests?wsdl
and according to the number of resources available in the pool it automatically cater request from Resource 1 or Resource 2.