I am generating a proxy client using adb beans. It creates a wrapper object for the request and response. For example...
GetXRequest-->getXRequest12 GetXResponse-->getXResponse11 So I do the following getXRequest12 = new getXRequest12() getXRequest = new getXRequest() getXRequest.setXXX(); getXRequest.setXXX(); getXRequest12.setGetXRequest(getXRequest) Then the stub class takes wrapper class called.. getXRequest12 Can anyone clarify why adb generator does this? John Ranaudo
