I have a server-side app assembled using spring, which exposes a service via HTTP-based remoting. However, the clients that access the service may not be configured via spring.

I was wondering if there was a way to retrieve and invoke the service interface from a non-spring client.

(i.e if the service was deployed on the following: http://<server>:<port>/remoting/MyService)
What do I need to do on the client-side to invoke this service ?

Thanks all.