I have queried service using WSDL generated and can see XML Response out
put..
Using   

1. stub.query_my_record(my_Record_Query__Message5);

2. stub.startquery_my_record(my_Record_Query__Message5,
                        O_tempCallbackN1000C);

Here O_tempCallbackN1000C is callback object.


But I am not sure How Axis Callback works? Can Callback and its method
getClientData() can b used for getting java response object?
  
public my_Record_Query_ProviderCallbackHandler(Object clientData) {
        this.clientData = clientData;
    }

    /**
     * Please use this constructor if you don't want to set any
clientData
     */
    public my_Record_Query_ProviderCallbackHandler() {
        this.clientData = null;
    }

    /**
     * Get the client data
     */
    public Object getClientData() {
        return clientData;
    }

What I am trying to do is get the Java response object back from
stub/callback. Your help is greatly appreciated.

Regards
AJ

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to