hi there,
i have a pojo which is exported as a service by spring's dispatcher servlet. my protocol is hessian.
now, on the client side, i can call the service's methods like String getString()...
Type: Posts; User: csoehnel; Keyword(s):
hi there,
i have a pojo which is exported as a service by spring's dispatcher servlet. my protocol is hessian.
now, on the client side, i can call the service's methods like String getString()...
Ha, I didn't know that. Thanks a lot, I think that solves my problem. I'll report. :)
I found out that the HessianServiceExporter implements the InitializingBean interface.
Could you give me a simple example how i can configure "global" stuff in that way please. Do I have to derive...
Thanks for answering...
I should describe a little more what I want to do:
When you're writing a servlet and you want to do something administrative in a global way, like managing the requests...
Hi to everybody,
I am currently writing an application based on Spring. I have a POJO which is exported by the HessianServiceExporter and mapped to a DispatcherServlet.
So far so good...
As...