Re: Can anyone please explain how to get the invoked method name?
"Stefan Haustein" <[email protected]> Wed, 15 Oct 2003 14:48:03 +0200 (MEST)
| Newsgroups | gmane.comp.java.enhydra.ksoap |
|---|---|
| Message-ID | <3484.141.20.180.56.1066222083.squirrel@postamt.cs.uni-dortmund.de> |
> If I understand correctly from reading the ksoap source files, is that > on the kSOAP Servlet side, the name of the class to be called is in the > URL found in the HttpServletRequest, while the method's name is found > with SoapObject.getName(). > My question is, what 's the use of ClassMap, and instanceMap then? The classMap is used to map method parameters. kSOAP is originally intended to be used on the client side, and the servlet capabilities were only added to be able to provide an interop testing server. Thus, the mapping of uris, classes and method names may not fit your needs very well... The best approach may be to copy the source of the servlet and modify it to meet your own needs. Best, Stefan