Thanks for this, much appreciated ________________________________
From: Sameera Jayasoma [mailto:[EMAIL PROTECTED] Sent: 03 July 2008 20:22 To: [email protected] Subject: Re: Axis2 Client config location Hi Brian, I just have look at Axis2 source code. I noticed that Axis2 uses the system properties "axis2.repo" and "axis2.xml" to get the locations of the repository and the axis2.xml, if you haven't specified them in your client side code. So you can use -Daxis2.repo or -Daxis2.xml system properties. 1. If you are using serviceClient, use the constructor which requires no parameters ServiceClient sc = new ServiceClient(); 2. If you are using generated client stub (There may be a better solution) ConfigurationContext ctx = ConfigurationContextFactory.createConfigurationContextFromFileSystem(nul l, null); ServiceStub stub = new ServiceStub(ctx); Thanks Sameera Jayasoma Software Engineer WSO2 Inc. Oxygenating the Web Service Platform. http://wso2.org/ blog: http://sameera-jayasoma.blogspot.com/ __________________________________________________________ FINEOS Corporation is the global brand name of FINEOS Corporation Limited and its affiliated group companies worldwide. The information contained in this e-mail is confidential, may be privileged and is intended only for the user of the recipient named above. If you are not the intended recipient or a representative of the intended recipient, you have received this e-mail in error and must not copy, use or disclose the contents of this e-mail to anybody else. If you have received this e-mail in error, please notify the sender immediately by return e-mail and permanently delete the copy you received. This e-mail has been swept for computer viruses. However, you should carry out your own virus checks. Registered in Ireland, No. 205721. http://www.FINEOS.com __________________________________________________________
