Eric Answers inline
- How can I pack an AAR with some dependens JAR files?
Put them into the lib/ folder inside the AAR file.
- How can I specific the username/password in the ADB web service client for web BASIC authentication?
Options = stub._getServiceClient().getOptions(); org.apache.axis2.transport.http.HttpTransportProperties.BasicAuthentication auth = new BasicAuthentication(); auth.setXXXX(...) options.setProperty(org.apache.axis2.transport.http.HTTPConstants.BASIC_AUTHENTICATION,auth);
- How can I specify the proxy server information in the client?
org.apache.axis2.transport.http. HttpTransportProperties.ProxyProperties props = new ProxyProperties(); props.setHost(...) props.setPort(...) options.setProperty(org.apache.axis2.transport.http.HTTPConstants.PROXY, props); If you want more options there is a list here: http://www.wso2.net/articles/axis2/java/2006/08/01/client-api-parameters Paul -- Paul Fremantle VP/Technology, WSO2 and OASIS WS-RX TC Co-chair http://bloglines.com/blog/paulfremantle [EMAIL PROTECTED] "Oxygenating the Web Service Platform", www.wso2.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
