RE: Inaccessible WSDL files after enabling both HTTP and HTTPS in Axis2/Tomcat

2010-02-08 Thread Doughty, Michael
onday, February 08, 2010 8:44 AM To: axis-user@ws.apache.org Subject: Re: Inaccessible WSDL files after enabling both HTTP and HTTPS in Axis2/Tomcat Michael, This looks like another example of the issue described in AXIS2-4465. Not sure if it is possible to make this work properly in 1.5.1, but

Re: Inaccessible WSDL files after enabling both HTTP and HTTPS in Axis2/Tomcat

2010-02-08 Thread Andreas Veithen
Michael, This looks like another example of the issue described in AXIS2-4465. Not sure if it is possible to make this work properly in 1.5.1, but in the current trunk the configuration mechanism to enable HTTP and HTTPS in a servlet environment is much more transparent (and known to work

Inaccessible WSDL files after enabling both HTTP and HTTPS in Axis2/Tomcat

2010-02-08 Thread Doughty, Michael
I have a problem that I am hoping someone could shed some light on. I have enabled both HTTP and one-way HTTPS in my Tomcat 6 instance. Likewise, I have added the correct configuration information to my axis2.xml in the war distribution of Axis2 1.5.1. The HTTP port is 8080 and the HTTPS

Re: [Axis2] How to deploy Axis2 in https

2010-01-28 Thread Amila Suriarachchi
On Sat, Dec 16, 2006 at 5:27 PM, Subash Devkota wrote: > Ruchith, > > My https configuration does not require client to authenticate itself. > > I have already included security in Axis2 with rampart. It works fine when > axis server is hosted in http. > But, when i hosted t

Re: [Axis2] How to deploy Axis2 in https

2010-01-26 Thread stevens_wu
Does anybody know how to deploy axis2.war to https port in geronimo 2.1?I have deployed axis2.war to http port in geronomo 2.1. Any suggestions will be appreciated. Subash Devkota wrote: > > Hi all, > > I have problem deploying axis2 1.0 in https. > > I need to deploy my axi

Axis2 : Invalid Security Error while trying to access https web service

2010-01-01 Thread santhosh kotte
Hi all I am trying to run a sample on applying Binding Operation Level Policy. I get the following error while trying to access the service. [INFO] Listening on port 8080 [ERROR] InvalidSecurity org.apache.axis2.AxisFault: InvalidSecurity at org.apache.rampart.handler.PostDispatchVerif

RE: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Vadim Letitchevski
ahesh Buddhika [mailto:thilin...@gmail.com] Sent: Wednesday, December 09, 2009 10:28 AM To: axis-user@ws.apache.org Subject: Re: Creating Web Service client using HTTPS from wsdl files AFAIK these configuration needs to be happen at the transport level and it depends on the app server you are usin

Re: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Thilina Mahesh Buddhika
na Mahesh Buddhika [mailto:thilin...@gmail.com] > *Sent:* Wednesday, December 09, 2009 5:13 AM > > *To:* axis-user@ws.apache.org > *Subject:* Re: Creating Web Service client using HTTPS from wsdl files > > hi, > > Some of the properties you mentioned, like two-way authentication h

RE: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Vadim Letitchevski
HTTPS from wsdl files hi, Some of the properties you mentioned, like two-way authentication has to be enabled in the SSL settings in the app-server where the Axis2 is deployed. For example, in Tomcat following configuration segment available in server.xml holds some of these parameters. It

Re: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Thilina Mahesh Buddhika
hi, Some of the properties you mentioned, like two-way authentication has to be enabled in the SSL settings in the app-server where the Axis2 is deployed. For example, in Tomcat following configuration segment available in server.xml holds some of these parameters. It depends on the app serve

Creating Web Service client using HTTPS from wsdl files

2009-12-08 Thread Vadim Letitchevski
I am trying to configure my client auto-generated from WSDL to use SSL. I have read already the recommendations to set these: System.setProperty("javax.net.ssl.trustStore", "/path/to/.keystore"); System.setProperty("javax.net.ssl.trustStorePassword", "changeit"); Unfortunately this is not all I ne

Re: Problems with https mutual auth

2009-12-03 Thread Philippe A.
> Thilina Mahesh Buddhika > http://blog.thilinamb.com > > > On Mon, Nov 30, 2009 at 10:10 PM, Philippe A. wrote: > >> I have successfully setup one way https authentication between my web >> service client and server. The next step is to enable two-way auth but I'

Re: Problems with https mutual auth

2009-12-03 Thread Thilina Mahesh Buddhika
etting its value to "true" you can force two-way authentication in SSL handshake. Thanks. /thilina Thilina Mahesh Buddhika http://blog.thilinamb.com On Mon, Nov 30, 2009 at 10:10 PM, Philippe A. wrote: > I have successfully setup one way https authentication between my web >

HTTPS Soap Client Connection

2009-12-01 Thread Michel
Greetings, I'm have been working in a HTTP client connection, but actually I got this error: ERROR - org.apache.axis2.AxisFault: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderExcepti

Problems with https mutual auth

2009-11-30 Thread Philippe A.
I have successfully setup one way https authentication between my web service client and server. The next step is to enable two-way auth but I'm having problems doing it. To make sure two-way auth kicks in, I wanted to have client auth fail on purpose. However, client requests are not reject

Re: [axis2] Need help with HTTPS

2009-11-19 Thread Amila Suriarachchi
On Fri, Nov 20, 2009 at 7:08 AM, Vadim Letitchevski < vletitchev...@teledyne.com> wrote: > I am trying to figure out how to use HTTPS with Apache2-1.5. > First of al I have used the binary distribution and do not know if it > supports SSL. > Second: I have jdk1.6 build 17 and

[axis2] Need help with HTTPS

2009-11-19 Thread Vadim Letitchevski
I am trying to figure out how to use HTTPS with Apache2-1.5. First of al I have used the binary distribution and do not know if it supports SSL. Second: I have jdk1.6 build 17 and in document http://hc.apache.org/httpclient-3.x/sslguide.html it says that it should have the proper JSSE support

RE: Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Jaime Hablutzel Egoavil
;); ConfigurationContext ctx = ConfigurationContextFactory.createConfigurationContextFromFileSystem(null); authStub = new EmrAuthWsStub(ctx, "https://172.17.0.24:8443/emrws"; + "/services/emrAuthWs.emrAuthWsHttpSoap12Endpoint"); /* /

RE: Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Suma.Subramanian
-user@ws.apache.org Subject: Re: Creating Web Service client using HTTPS from wsdl files Can you please attach your client code ? Thanks& regards. -Prabath suma.subraman...@thomsonreuters.com wrote: > > Hi > > I need to invoke a set of web services through HTTPS. The WSDL files &g

Re: Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Prabath Siriwardena
Can you please attach your client code ? Thanks& regards. -Prabath suma.subraman...@thomsonreuters.com wrote: Hi I need to invoke a set of web services through HTTPS. The WSDL files and the XSD files are provided. I was able to get the token from the client with the Authentication

Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Suma.Subramanian
Hi I need to invoke a set of web services through HTTPS. The WSDL files and the XSD files are provided. I was able to get the token from the client with the Authentication web service. But when I invoke the other web service I get a SocketException: Connection Reset. As I'm new to Java an

[axis2 java]HTTPS

2009-11-13 Thread Vadim Letitchevski
Hi I have a few Axis2 based clients and services working using HTTP already. The source was initially generated fro WSDL. Our client requested use of HTTPS now. Could you please refer me to some info on how to transition to HTTPS communication under Axis2? I see some bits and pieces in this

Re: HTTPS

2009-11-12 Thread Prabath Siriwardena
ndpoint in the truststore.jks. Thanks & regards. -Prabath Michel Pérez wrote: Greetings, I need to create an https, connection, to send a SOAP message, here is my code: Options options =*new* Options(); options.setTo(targetEPR); // this sets the location of MyService service Servi

HTTPS

2009-11-12 Thread Michel Pérez
Greetings, I need to create an https, connection, to send a SOAP message, here is my code: Options options =new Options(); options.setTo(targetEPR); // this sets the location of MyService service ServiceClient serviceClient = new ServiceClient(); serviceClient.setOptions(options

Re: Generated WSDL HTTPS Port not 8443

2009-11-10 Thread Andreas Veithen
On Tue, Nov 10, 2009 at 18:31, v2cg4ss wrote: > > I just tried the nightly build of 10-Nov-2009 14:33 and the endpoints look > good: > > > - >   location="https://localhost:8443/axis2-webapp-SNAPSHOT/services/MyWS.NetEffectWS_1HttpsSoap11Endpoint/"; > /> &g

RE: Generated WSDL HTTPS Port not 8443

2009-11-10 Thread v2cg4ss
I just tried the nightly build of 10-Nov-2009 14:33 and the endpoints look good: - https://localhost:8443/axis2-webapp-SNAPSHOT/services/MyWS.NetEffectWS_1HttpsSoap11Endpoint/"; /> - http://localhost:8080/axis2-webapp-SNAPSHOT/services/MyWS.MyWSHttpSoap11Endpoint/"; /&g

RE: Generated WSDL HTTPS Port not 8443

2009-11-10 Thread Sanjay Gupta
Hi, I have the same issue and very interested in finding a solution. Sanjay -Original Message- From: v2cg4ss [mailto:ssel...@datamentors.com] Sent: Monday, November 09, 2009 1:40 PM To: axis-user@ws.apache.org Subject: Re: Generated WSDL HTTPS Port not 8443 Is this in a nightly build

Re: Generated WSDL HTTPS Port not 8443

2009-11-09 Thread v2cg4ss
e the > documentation is not up to date with the changes. > >> I have a client using >> .NET and they are generating their client code from the WSDL.  The >> programmer claims that they cannot change the endpoint in the .NET code >> like >> I can with java. >&g

Re: Generated WSDL HTTPS Port not 8443

2009-11-08 Thread Andreas Veithen
nt code from the WSDL.  The > programmer claims that they cannot change the endpoint in the .NET code like > I can with java. > > MyWSStub stub = new MyWSStub(ctx, > "https://localhost:8443/axis2/services/MyWS";); > > Scott > > > Andreas Veithen-2 wrote: >

RE: Generated WSDL HTTPS Port not 8443

2009-11-05 Thread Betts, Hendry
Generated WSDL HTTPS Port not 8443 Thank you for the reply, is this being resolved soon. I have a client using .NET and they are generating their client code from the WSDL. The programmer claims that they cannot change the endpoint in the .NET code like I can with java. MyWSStub stub = new My

Re: Generated WSDL HTTPS Port not 8443

2009-11-05 Thread v2cg4ss
Thank you for the reply, is this being resolved soon. I have a client using .NET and they are generating their client code from the WSDL. The programmer claims that they cannot change the endpoint in the .NET code like I can with java. MyWSStub stub = new MyWSStub(ctx, "https://localhost

Problem with NTLM authentication over Https

2009-11-04 Thread Nitin Gupta
Axis version: 1.5.1 Java Version: 1.1.0_13 Authentication: NTLM Protocol: HTTPS Platform: Windows XP Hi I am trying to access Exchange Web Service running on IIS, using Axis 1.5.1. I generated the stub classes using JAXB data binding. I am trying to pass the authentication information as follows

RE: HTTPS WebService through HTTP Proxy

2009-10-18 Thread Pedro Quintas
Hi, Does anyone have any ideia about this matter? Thanks, Kintas De: Pedro Quintas [mailto:pedro.quin...@first.pt] Enviada: quinta-feira, 15 de Outubro de 2009 09:06 Para: axis-user@ws.apache.org Assunto: RE: HTTPS WebService through HTTP Proxy Importância: Alta I don't agreed with you

RE: HTTPS WebService through HTTP Proxy

2009-10-15 Thread Pedro Quintas
I don't agreed with you. The Client must know that on the other side (WebService) talks in HTTPS. For example, I use SOAPUI to test this connections and again I put the TCPMon between the SOAPUI and the proxy. I saw in plaintext the communication with the proxy: CONNECT portal.pt:443 HTT

RE: HTTPS WebService through HTTP Proxy

2009-10-15 Thread Christian Gosch
[mailto:pedro.quin...@first.pt] Sent: Thursday, October 15, 2009 2:00 AM To: axis-user@ws.apache.org Subject: HTTPS WebService through HTTP Proxy Importance: High Hello. I need to call a HTTPS WebService through a HTTP proxy. I set on Options object the following: options.setProperty

HTTPS WebService through HTTP Proxy

2009-10-14 Thread Pedro Quintas
Hello. I need to call a HTTPS WebService through a HTTP proxy. I set on Options object the following: options.setProperty(HTTPConstants.CUSTOM_PROTOCOL_HANDLER, new Protocol("https", (ProtocolSocketFactory)new AuthSSLProtocolSocketFactory(endp

https transport

2009-07-16 Thread axis
Hi, I'm not sure offhand how to make the server certificate authentication work in that situation, but I believe Axis2 is using the Commons HttpClient by default, and that appears to offer a way of using your own socket factory Below is the exception : SSL HANDSHAKE FAILURE: A signer with Subje

Re: axis https proxy

2009-07-02 Thread Paul Fremantle
. > > We are using (java) axis 1.2. Some of our users report problems with https > proxy. It looks like axis does not respect the proxy settings in the java > control panel. > > A normal new URL(url).openConnection() to the same https server from within > the same client w

axis https proxy

2009-07-02 Thread Tore Halset
Hello. We are using (java) axis 1.2. Some of our users report problems with https proxy. It looks like axis does not respect the proxy settings in the java control panel. A normal new URL(url).openConnection() to the same https server from within the same client works just fine with the

Fw: problem with Https

2009-05-18 Thread Ricardo Aguiar
Hi, I've been used Axis2 1.2 to consume Web Services over HTTP and HTTPS. It has been worked fine. But when I tried to consume a Web Service over HTTPS ( the server certificate is "VeriSign Class 3 Extended Validation SSL CA" ), I get the exception below: java.lang.Illega

Re: Help Axis don't work under https - First Element must contain the local name, Envelope , but found html

2009-05-08 Thread Cesar de Almeida Correia
Cesar. Re: Help Axis don't work under https - First Element must contain the local name, Envelope , but

Re: Help Axis don't work under https - First Element must contain the local name, Envelope , but found html

2009-05-07 Thread Cesar de Almeida Correia
client has some misconfiguration. Well, I builded my client under http enviroment. Actually, should I have to build it under https? Thanks in advance

Re: Help Axis don't work under https - First Element must contain the local name, Envelope , but found html

2009-05-07 Thread Andreas Veithen
axis. It work fine under http, but with > https fail. Finished certs configuration in service and client, I am getting > the folowing error. Is missing some exta configuration to use https? > > Thanks in advance. > > INFO org.apache.axis2.builder.BuilderUtil - OM

RE: https client - defining the keystore path

2009-05-07 Thread Sanjay Gupta
"C:/cts/axis2/client/resources/server.jks"); System.setProperty("javax.net.ssl.trustStorePassword", "**"); Hope this helps. Thanks Sanjay -Original Message- From: Nuno Feliciano [mailto:nuno.felici...@novabase.pt] Sent: Thursday, May 07, 2009 10:08 AM To: axis-u

Help Axis don't work under https - First Element must contain the local name, Envelope , but found html

2009-05-07 Thread Cesar de Almeida Correia
Hello all, I have some services under apache axis. It work fine under http, but with https fail. Finished certs configuration in service and client, I am getting the folowing error. Is missing some exta configuration to use https? Thanks in advance. INFO org.apache.axis2.builder.BuilderUtil

https client - defining the keystore path

2009-05-07 Thread Nuno Feliciano
Hi, I’m trying to use an axis client to consume an https webservice. I set the following properties System.setProperty("axis.socketSecureFactory", "org.apache.axis.components.net.SunJSSESocketFactory"); System.setProperty("javax.net.ssl.keyStore", "C:

JAVA2WSDL -l option (HTTPS)

2009-04-01 Thread kumaresan.balasundaram
Hi, We are using apache axis 1.2 java2wsdl to generate the WSDL, when we specify java2wsdl -l http:\\url.. -> WSDL is getting genrated with the specified port address - <https://10.116.194.30:9101/servlet_jsp/axis2/services/XCDAuth?wsdl#> - <https://10.116.194.30:9101/servl

JAVA2WSDL -l option (HTTPS)

2009-03-31 Thread kumaresan.balasundaram
Hi, We are using apache axis 1.2 java2wsdl to generate the WSDL, when we specify java2wsdl -l http:\\url.. -> WSDL is getting genrated with the specified port address - <https://10.116.194.30:9101/servlet_jsp/axis2/services/XCDAuth?wsdl#> - <https://10.116.194.30:9101/servl

RE: Implementing a WebService over HTTPS

2009-03-29 Thread Martin Gainty
you'll need to configure a HTTPS connector defined in server.xml here is a good tutorial http://roneiv.wordpress.com/2008/01/03/jboss-tutorial-how-to-enable-ssl-https-on-jboss-as-well-as-other-nice-to-know-configurations/ HTH Martin __ Discl

Implementing a WebService over HTTPS

2009-03-29 Thread Arati Mahimane
Hi, Can anyone guide me with Implementing a WebService over HTTPS? I am using JBoss and Axis2 . I followed the steps given on the JBoss community (generated the keystore, got the certificate and imported it, made changes in server.xml file in JBoss) but it didnt work. Thanks, Arati Mahimane

axis2 stops making https connections randomly... HELP!

2009-03-24 Thread Sean Patronis
- HttpConnectionManager.getConnection: config = HostConfiguration [host=https://somedomain.com], timeout = 0 DEBUG iThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration) DEBUG iThreadedHttpConnectionManager - enter HttpConnectionManager.ConnectionPool.getHostPool

Re: Problems using https and rampart

2009-02-25 Thread Nandana Mihindukulasooriya
rt in conjunction with a web > service running under https. I can call the web services using ws-policy and > rampart fine using http, but when calling using https I get timeout > exception. If I call a service not using ws-policy/rampart by https this > also works fine. I only use simpl

Problems using https and rampart

2009-02-25 Thread Håkon Sagehaug
Hi I'll try to rephrase my question since I've not got any replay on my last one. Is there normally any problems with using rampart in conjunction with a web service running under https. I can call the web services using ws-policy and rampart fine using http, but when calling using h

Using web service with policy under https

2009-02-24 Thread Håkon Sagehaug
Hi all, I've got some web services and before just running under http, and wanted to try running it under https, this worked fine for all my web service, except the ones having policies and where the client is calling them, and rampart is enabled on both sides. Do I've got to have trans

RE: SSL tunnel (https through proxy)

2009-02-09 Thread McCullough, Ryan
ough, Ryan [mailto:rmccullo...@rightnow.com] Sent: Thursday, February 05, 2009 11:11 AM To: axis-user@ws.apache.org Subject: SSL tunnel (https through proxy) I am trying to add the ability to do SSL tunneling through a proxy server to Axis1 C++. I was curious how this works. I did find some reference wo

SSL tunnel (https through proxy)

2009-02-05 Thread McCullough, Ryan
I am trying to add the ability to do SSL tunneling through a proxy server to Axis1 C++. I was curious how this works. I did find some reference works by Ari Luotonen from 1995 and 1998. http://muffin.doit.org/docs/rfc/tunneling_ssl.html http://www.web-cache.com/Writings/Internet-Drafts/draft-luo

Re: axis2 https

2009-01-22 Thread ricky
Nandana, I am using Axis2 1.4 war in tomcat 6.0.18. I have configured tomcat server.xml: maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="${user.home}/.keystore" keypass="changei

Re: axis2 https

2009-01-22 Thread Nandana Mihindukulasooriya
Are you using Axis2 war in tomcat or standalone Axis2 server ? What do you mean by web service on the client ? thanks, nandana On Thu, Jan 22, 2009 at 11:54 AM, ricky wrote: > I need to use https on the server using axis2. What do I need to do? Also, > the client calling the web service

axis2 https

2009-01-21 Thread ricky
I need to use https on the server using axis2. What do I need to do? Also, the client calling the web service on the server implements its own web service using https. client server 1. client calls the web > service on the server. 2. the ser

AXIS over https

2008-12-23 Thread aurir_
How do I configure Tomcat and/or AXIS so that my endpoint is on https? I'm using AXIS 1.3 and Tomcat 5.0.19. Thanks. -- View this message in context: http://www.nabble.com/AXIS-over-https-tp21147135p21147135.html Sent from the Axis - User mailing list archive at Nabble.com.

Error trying to specify the https transport, AxisFault: Server does not have an epr for wsdl

2008-11-30 Thread Chad Miller
Hi, I'm trying to use a credit card service over axis2 1.4, and I'm trying to use the option in the services.xml to only let it accept connections over my https transport. https Instead of this working, it exposes the

Re: [AXIS2] Generated WSDL error for HTTPS transport

2008-11-04 Thread Sagara Gunathunga
Hi, Thanks Asankha for your reply , When i deploy Axis2 on JBoss as normal way ( with SSL configured for server ) without above two setting i can reach to the WSDL over HTTP/S but that WSDL document only contains end point binding for HTTP and SOAP protocols not for HTTPS , is there any way to

Re: [AXIS2] Generated WSDL error for HTTPS transport

2008-11-04 Thread Asankha C. Perera
Sagara 1. Restrict transport protocols in axis2.xml file by using https element. 2. Configure the transportReceiver for the certificate class="org.apache.axis2.transport.nhttp.HttpCoreNIOSSLListener"> ... with these settings application deployed well but in WSDL endpoint

[AXIS2] Generated WSDL error for HTTPS transport

2008-11-04 Thread Sagara Gunathunga
Hi, I manage to expose a web service with HTTPS support on JBoss , I followed following steeps ( server is already configured for SSL). 1. Restrict transport protocols in axis2.xml file by using https element. 2. Configure the transportReceiver for the certificate 9002 true

Re: [AXIS2] Problem with HTTPS transport

2008-11-03 Thread Sagara Gunathunga
HI, Is there any way to expose a Endpoint binding with HTTPS only using AXIS2 ..? something like https://host:port/web/services/PayfoneService.PayfoneServiceHttpsEndpoint Thanks , On Mon, Nov 3, 2008 at 5:53 PM, Sagara Gunathunga < [EMAIL PROTECTED]> wrote: > > Hi, > We use A

[AXIS2] Problem with HTTPS transport

2008-11-03 Thread Sagara Gunathunga
Hi, We use Axis2-1.4 within a Spring application , and we have a requirement to expose web service only for HTTPS transport. So I did the following procedure . 1.) Enable the in axis2.xml file . (Initially I got an error but once I add HttpCore and HttpCore -nio as Maven dependencies it solved

regarding https://issues.apache.org/jira/browse/AXIS2-3732

2008-10-14 Thread Eugene Koifman
Subject: regarding https://issues.apache.org/jira/browse/AXIS2-3732 Hello, I've ran into the same issue described in https://issues.apache.org/jira/browse/AXIS2-3732, but when I check the sources code distribution for 1.3, 1.4, and 1.4.1 I don't see the changes listed in the att

Re: Axis2 1.4 don't work with ssl, proxy and https authentication

2008-09-26 Thread Davide79
ort error: 401 Error: Unauthorized. > > I think the problem is : > Java Networking Properties for proxy override HttpTransportProperties and > clear authentication information > https://issues.apache.org/jira/browse/AXIS2-3839 > > I don't now how to fix this problem >

Axis2 1.4 don't work with ssl, proxy and https authentication

2008-09-26 Thread Davide79
Hi, i get always the same fantastic error: org.apache.axis2.AxisFault: Transport error: 401 Error: Unauthorized. I think the problem is : Java Networking Properties for proxy override HttpTransportProperties and clear authentication information https://issues.apache.org/jira/browse/AXIS2-3839

Re: Accessing WSDL via https still shows http addresses

2008-09-25 Thread Sagi Mann
Update: I wrote a standalone client to test the impact of this "issue". I create the stub using an HTTPS WSDL URI, and using NetBeans 5.5.1 HTTP monitor, it seems that the POST request sent to the webservice is indeed over HTTPS, so I think that the fact that the WSDL contains HTTP UR

Accessing WSDL via https still shows http addresses

2008-09-25 Thread Sagi Mann
Hello, I'm trying to get am axis2-based web service to work via https. I deployed axis2.war on GlassFish 2, and deployed a test service called "hello". This works great via http. But when I try to set this up via https, I see something strange: if I access the service's

Re: wsdl port address uses incorrect port number for https

2008-09-24 Thread keith chapman
I hope this gets fixed in future versions of Axis2. > > Thanks, > JP > > -- > *From:* keith chapman [mailto:[EMAIL PROTECTED] > *Sent:* Wednesday, September 24, 2008 6:53 PM > > *To:* axis-user@ws.apache.org > *Subject:* Re: wsdl port add

RE: wsdl port address uses incorrect port number for https

2008-09-24 Thread Pugalia, Jai P (JP)
Subject: Re: wsdl port address uses incorrect port number for https You could easily extend the Listener shipped with Axis2 and override its getEPRsForService method. This is the method that generates the endpoint address, so you could handle it the way you want it to be by simple extending it

Re: wsdl port address uses incorrect port number for https

2008-09-24 Thread keith chapman
) <[EMAIL PROTECTED]>wrote: > Hi, > > Does Axis2 include a class for transport listener which supports https? > > Is it possible to configure Axis2 to not include any port number when > generating the soap address? > > Thanks, > JP > >

RE: wsdl port address uses incorrect port number for https

2008-09-24 Thread Pugalia, Jai P (JP)
Yes, I agree doesn't make sense to use the SimpleHTTPServer class for http and https. Looks like Axis2 uses a HTTPSListener internally if https configuration is not available in the axis2.xml. However this class is private and not exposed to general use. I noticed the SSL configuration

RE: wsdl port address uses incorrect port number for https

2008-09-24 Thread Pugalia, Jai P (JP)
Hi, Does Axis2 include a class for transport listener which supports https? Is it possible to configure Axis2 to not include any port number when generating the soap address? Thanks, JP From: Pugalia, Jai P (JP) [mailto:[EMAIL PROTECTED] Sent: Monday

RE: wsdl port address uses incorrect port number for https

2008-09-22 Thread Martin Gainty
doesnt make sense to use the same org.apache.axis2.transport.http.SimpleHTTPServer class for both http and https transport this is the SSL configuration I see for configuring HttpCoreNIOSSLListener in axis2.xml //the default behaviour is to have your service engage Rampart

RE: wsdl port address uses incorrect port number for https

2008-09-22 Thread Pugalia, Jai P (JP)
Hi, The proxyPort does not help us as we are not using Apache as a proxy server. If I configure the axis2.xml as below: 8080 8443 then the soap address for http includes the port 8080 and the soap address for https includes the port 8443 but the soap

Re: wsdl port address uses incorrect port number for https

2008-09-21 Thread keith chapman
It should be specified in the http transport listener of the axis2.xml. You can have a look at https://svn.wso2.org/repos/wso2/trunk/mashup/java/modules/core/conf/axis2.xmlfor an example usage. This is the axis2.xml used in the WSO2 Mashup Server [1] Look for the following. Thanks

RE: wsdl port address uses incorrect port number for https

2008-09-21 Thread Pugalia, Jai P (JP)
Hi Keith, Where do I specify this parameter? I am guessing axis2.xml. In axis2.xml, the http transport receiver has a port parameter is set to 8080 and the https transport receiver is commented out in axis2.xml. Am I heading in the right direction? Thanks, Jai

Re: wsdl port address uses incorrect port number for https

2008-09-21 Thread keith chapman
Hi, When its going through Apache you can use the following parameter in the transport listener to set the port address, 80 For the https listener you can set it to 443. Thanks, Keith. On Sun, Sep 21, 2008 at 10:21 PM, Enaganti M Naidu <[EMAIL PROTECTED]>wrote: > JP, We have ha

RE: wsdl port address uses incorrect port number for https

2008-09-21 Thread Enaganti M Naidu
:51:13 -0600From: [EMAIL PROTECTED]: axis-user@ws.apache.org; axis-user@ws.apache.org Hi,My Axis2 web service is deployed for secure access and the URL is of the form "https:///axis2/services/Version?wsdl". However when the WSDL is returned, port number 80 is specified in the soap addre

RE: wsdl port address uses incorrect port number for https

2008-09-21 Thread Pugalia, Jai P (JP)
Hi, My Axis2 web service is deployed for secure access and the URL is of the form "https:///axis2/services/Version?wsdl". However when the WSDL is returned, port number 80 is specified in the soap address instead of port 443 (default port for https). I have verified that the port

Re: Re: A service ONLY over https and not http

2008-09-19 Thread Christian Mielke
Hi, I already tried this using the the tag inside the service.xml but when I start the AXIS server, I get the information that this tag is not supported in AXIS 2. Greetings Christian - original Nachricht Betreff: Re: A service ONLY over https and not http Gesendet: Fr, 19. Sep

Re: A service ONLY over https and not http

2008-09-19 Thread Nandana Mihindukulasooriya
Hi Christian, In the services.xml, you can add https to expose your service only using https transport. thanks, nandana On Fri, Sep 19, 2008 at 3:44 PM, Christian Mielke <[EMAIL PROTECTED]> wrote: > Hello, > > I want to call one of my web services only by https

A service ONLY over https and not http

2008-09-19 Thread Christian Mielke
Hello, I want to call one of my web services only by https and not by http. The service also shouldn't accept the requests over http. It only should accept the requests over https. Is there a possibility to configure this in the services.xml or somewhere else? Greetings Christian

RE: Axis2 webservice over https in Tomcat

2008-09-16 Thread Martin Gainty
Good Morning If I understand you're attempting to override a running http connection with https protocol? one viable solution would be to engage WS - Security 1.0 or WS - Security 1.1 with a rampart module rampart will enforce your configured security policy for any/all axis archives

Re: Axis2 webservice over https in Tomcat

2008-09-16 Thread Bartholodeus
I am still looking for a solution. Anybody an idea? -- View this message in context: http://www.nabble.com/Axis2-webservice-over-https-in-Tomcat-tp19373554p19510845.html Sent from the Axis - User mailing list archive at Nabble.com

Re: Axis2 webservice over https in Tomcat

2008-09-09 Thread srodrigu
I have the same issue where it did not like the part in the services.xml. I tried not doing the part in the service.xml file and called up the wsdl and it looks like it thinks http is port 8080 and https is port 80 even though Tomcat is using port 80 for http and port 443 for https. Is there

Re: Axis2 webservice over https in Tomcat

2008-09-09 Thread Bartholodeus
geReceiver" /> http://www.w3.org/2004/08/wsdl/in-out"; class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/> https xx.xxx.xxx.TestWebservice When I start my JBoss again I get the following exception: org.apache.

Re: Axis2 webservice over https in Tomcat

2008-09-08 Thread Deepal jayasinghe
Bartholodeus wrote: > Hi, > > I am currently running an axis2 v1.3 webservice with https support. I made > the webservice with java2wsdl and wsdl2java with the eclipse codegen plugin. > In my scenario Axis and Tomcat are both deployed in JBoss. What I do not > fully understan

Axis2 webservice over https in Tomcat

2008-09-08 Thread Bartholodeus
Hi, I am currently running an axis2 v1.3 webservice with https support. I made the webservice with java2wsdl and wsdl2java with the eclipse codegen plugin. In my scenario Axis and Tomcat are both deployed in JBoss. What I do not fully understand is how they work together especially with https

Re: Axis https issue

2008-09-01 Thread keith chapman
Try adding the following parameter to the https transportReceiver in your axis2.xml 443 Thanks, Keith. On Sun, Aug 24, 2008 at 8:18 PM, Madhavaram, Neelima < [EMAIL PROTECTED]> wrote: > Hi, > > > > I have been using axis for a while and it always worked when posting &

Re: Axiss2 1.2 - Problem with client calling WS behind HTTPS

2008-09-01 Thread keith chapman
Hi Nick, Did you manage to resolve the issue? Thanks, Keith. On Sun, Aug 17, 2008 at 11:24 PM, Nick Popov <[EMAIL PROTECTED]> wrote: > Hi, > > > > I have Axis2 1.2 deployed as a part of web application on Tomcat 5. > > Tomcat configuration have HTTP and HTTPS po

Re: Axiss2 1.2 - Problem with client calling WS behind HTTPS

2008-08-26 Thread SGruverman
Nick, I was catching up on my axis-user mail and noticed that you hadn't received any replies. Not sure if I can help, but some suggestions: Does the endpoint your client is calling have the correct protocol as well as the correct port? (e.g. HTTPS://www.mysite.com:8443/your/service/here)

Axis https issue

2008-08-24 Thread Madhavaram, Neelima
/:443/services instead of https:///services We are using Oracle 10g application server. Is it the problem of axis or application server? Can any one help me in this? Thanks, nmadhava

Axiss2 1.2 - Problem with client calling WS behind HTTPS

2008-08-17 Thread Nick Popov
Hi, I have Axis2 1.2 deployed as a part of web application on Tomcat 5. Tomcat configuration have HTTP and HTTPS ports configured. The web services are accessible via HTTP and HTTPS. For HTTPS I'm using self-signed cert in a store. I can see the WSDL for HTTPS/HTTP in IE/FF also by

Re: [Axis2] - Axis2 at HTTPS with HTTP blocking

2008-07-09 Thread Jan Verstuyft
; 2 weblogic servers with this WEB APP on it. >>> In front of it an Apache Webserver for loadbalancing >>> in front of it a BlueCoat that handles the HTTPS. >>> >>> >>> The actual problem is that (if the HTTP is disabled and HTTPS is >>> enabled), h

Re: [Axis2] - Axis2 at HTTPS with HTTP blocking

2008-07-09 Thread Paul Fremantle
s with this WEB APP on it. >> In front of it an Apache Webserver for loadbalancing >> in front of it a BlueCoat that handles the HTTPS. >> >> >> The actual problem is that (if the HTTP is disabled and HTTPS is >> enabled), he waits for a timeout of 45 seco

Re: [Axis2] - Axis2 at HTTPS with HTTP blocking

2008-07-09 Thread Deepal Jayasinghe
Yes , once the servlet receives the message it does not whether the message came on http or https. -Deepal Paul Fremantle wrote: Surely if there is a front-end server handling HTTPS then the messages coming into Axis2 should be in HTTP? Paul On Wed, Jul 9, 2008 at 9:57 AM, Jan Verstuyft

  1   2   3   4   >