Hi All,
We have a "stateful" service that we have exposed to the outside world using RmiServiceExporter. We have made the service stateful by making all "session" related attributes as...
Type: Posts; User: alokasd; Keyword(s):
Hi All,
We have a "stateful" service that we have exposed to the outside world using RmiServiceExporter. We have made the service stateful by making all "session" related attributes as...
According to me this is not possible. A consumer can not dequeue more than one message with a receive() call. This is against the specification and design of JMS.
- SD
Try the following on the client machine and see if it is successful
ftp <server ip/name> <rmi port>
If this fails to connect then it is a network issue else it is your code issue.
- SD
I have been able to get this to work by making the "session" level attributes of the service as ThreadLocal. Dose anyone has any other suggestions?
- SD
Hi,
I have a service that I want to expose to the outside world on RMI protocol. My bean definition looks like following:
<bean class="org.springframework.remoting.rmi.RmiServiceExporter">
...
Hi
I am new to Spring Batch and hance wanted some information. I wanted to know if it is possible to run the InputReader in multiple threads? If yes then how do we prevent two threads reading the...