1. how can I share proxy objects across multiple Axis2 web service clients? stackoverflow.comI have several WCF services that I want to access from a Java client. The services have some complex data contracts used across multiple services. I want to be ... |
2. Connect to AXIS 1.4 Webservice through a proxy stackoverflow.comI am using AXIS 1.4 to generate the subs for my webservice. The generation works fine as it is, but I am facing a problem to connect to the webservice though ... |
3. Axis2 NTLM Authentication for Proxy-Server stackoverflow.comWhat is the correct way to authenticate an Axis2 (Version 1.4) Client at a http proxy server that requires NTLM authentication? I'm using the following code to provide the proxy credentials, but ... |
4. Why axis2 generated proxy does not have any ServiceLocator class stackoverflow.comI am new to Web Services. I have to use the crm web services to perform some task from my java application. I am using Eclipse Galileo on Tomcat Application server. ... |
5. How to set Proxy Settings while invoking Web Service through proxy server from Axis2 Web Service Client? stackoverflow.comNot able to set the Proxy Settings in Axis2 Web Service Client. |
6. Axis2 ADB Client via proxy? stackoverflow.comI have created an adb client successfully for a web service from a third party supplier, and this is working well on our development environment. Our live environment requires all internet access ... |
7. Axis and Proxy setting coderanch.comHi All, I am using Axis client to connect to a webservice. And we have to use proxy to connect to external URL. So, how do I set proxy setting for my Axis client? I have seen only one way of doing it and that is by setting System property using System.setProperty("https.proxyHost",proxyHost);System.setProperty("https.proxyPort",proxyPort); But I do not want to use this as ... |
8. Proxy Authentication using Axis coderanch.com |
9. Axis2 client behind a Proxy coderanch.comUsing Axis 1.x if your client was behind a proxy all you had to do was set the system properties with -Dhttp.proxyHost=myproxy.mycompany.com -http.proxyPort=80 and everything worked correctly. Under Axis 2.x this doesn't appear to work anymore. I have temporarily kludged it by adding the following code to the generated stub, but there must be a better way. Any ideas? Options opts ... |
10. Axis HTTP Proxy Settings coderanch.comHi all, I have three web services to be accessed from my machine. The first two are located on a node that is connected to same LAN that my machine is connected on. And the third one is reachable over the internet and is used to send SMS messages. In order to reach the third message, I have to set the ... |
11. Axis 1.1 and Proxy?? coderanch.comHi All, I am working on a client that calls few services. It works very well without proxy. The new requirements are that they should also work same via a proxy server. This is the code that i use to set the proxy settings.. System.setProperty( "http.proxySet", "true" ); System.setProperty( "http.proxyHost", "192.168.1.30" ); System.setProperty( "http.proxyPort", "808" ); System.setProperty( "https.proxySet", "true" ); System.setProperty( ... |
12. Problem with Axis2 via proxy with NTLM authentication (currently defaulting to BASIC) coderanch.com18:37:10,692 WARN [HttpMethodDirector] Required credentials not available for [color=red]BASIC [/color] |
13. Axis with http proxy issue forums.oracle.com |