So when Axis 2 first came out, I opted to not use it because if it's lack of
support for unwrapping doc/lit services.  Now, it supports it...supposedly.
Using the same WSDLs I use in Axis 1.4, I try to generate a wrapped doc/lit
client.  This appears to only work for *asynchronous* operations.  *
Unwrapping* seems to *not* take place when on the *synchronous* operations.


Here's an example:

----
    /**
     * Auto generated method signature
     * @param revokeAccess59
     */
    public com.enhance.plapi.service.account.RevokeAccessResponserevokeAccess(
        com.enhance.plapi.service.account.RevokeAccess revokeAccess59)
        throws java.rmi.RemoteException;

    /**
     * Auto generated method signature for Asynchronous Invocations
     * @param revokeAccess59
     */
    public void startrevokeAccess(
        com.enhance.plapi.credentials.Credentials credentials60,
        com.enhance.plapi.service.account.User user61,
        com.enhance.plapi.service.account.Account account62,
        final
com.enhance.plapi.service.account.AccountWebServiceCallbackHandler callback)
        throws java.rmi.RemoteException;

----

Is there any way I can get the synchronous operations to get method
signatures similarly to the asynchronous services?  I'd like to not have to
pack and unpack all of these myself.

Otherwise, has some tricky little detail changed that I need to know about
when it comes to wrapped doc/lit services?

Reply via email to