RE: HI i am fresher for axis2 webservices

2008-09-24 Thread yendam
HI, Thanks for giving reply and i wants to excute the Converter example from eclipse .. the way what i am doing in my local pc is same as http://www.eclipse.org/webtools/community/tutorials/BottomUpAxis2WebService/bu_tutorial.html but it is showing the requested resource is not availbale whi

Re: wsdl port address uses incorrect port number for https

2008-09-24 Thread keith chapman
Would you mind opening a JIRA issue please. That way it will be tracked. Thanks, Keith. On Thu, Sep 25, 2008 at 7:34 AM, Pugalia, Jai P (JP) <[EMAIL PROTECTED]>wrote: > Hi Keith, > > For now, I had solved the problem by writing my own Listener by > implementing the TransportListener class. I li

RE: wsdl port address uses incorrect port number for https

2008-09-24 Thread Pugalia, Jai P (JP)
Hi Keith, For now, I had solved the problem by writing my own Listener by implementing the TransportListener class. I like your suggestion of extending the existing Listener so I am going to try it out. I also tried by adding the proxyPort to the Connector configuration in the server.xml of To

Re: Async processing, client stubs thread safety and port conflicts

2008-09-24 Thread Dmitriy Frolov
Thanks again for the information. I will post my findings based on POC. -Dmitriy On Wed, Sep 24, 2008 at 4:48 PM, Deepal Jayasinghe <[EMAIL PROTECTED]>wrote: > > > Deepal, > > Thanks for your quick response. It worked perfectly. I didn't > > realize that configuration was initialized multiple

Re: wsdl port address uses incorrect port number for https

2008-09-24 Thread keith chapman
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. Thanks, Keith. On Wed, Sep 24, 2008 at 10:11 PM, Pugalia, Jai P (JP)

Re: ServiceContext in OperationContext does not match error

2008-09-24 Thread Deepal Jayasinghe
> Ok! Thanks again. So I must send the properties instead of the > context. Thanks Deepal! here we go ;-) -Deepal -- Thank you! http://blogs.deepal.org - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: ServiceContext in OperationContext does not match error

2008-09-24 Thread Igor Nogueira
Ok! Thanks again. So I must send the properties instead of the context. Thanks Deepal! 2008/9/24 Deepal jayasinghe <[EMAIL PROTECTED]> > > > Hi Deepal! Thanks for answering! That´s what I wanna do: I have two > > services. Service A and service B. Both are stateful, and they may not > > be on t

"Unsupported endpoint address" error without an address

2008-09-24 Thread cowwoc
Hi, I pasted a sample web service and client into my IDE and tried running it. Unfortunately the client dies with: javax.xml.ws.WebServiceException: Unsupported endpoint address: at $Proxy31.getPrice(Unknown Source) at client.MyClient.main(MyClient.java:20) How do I even begin

Re: Async processing, client stubs thread safety and port conflicts

2008-09-24 Thread Deepal Jayasinghe
> Deepal, > Thanks for your quick response. It worked perfectly. I didn't > realize that configuration was initialized multiple times. Yes , whenever you create a new service client it create a new configuration context. > > I have another question. Is client listener implemented as a server >

Re: ServiceContext in OperationContext does not match error

2008-09-24 Thread Deepal jayasinghe
> Hi Deepal! Thanks for answering! That´s what I wanna do: I have two > services. Service A and service B. Both are stateful, and they may not > be on the same server. Service A proccess the client's invocations and > consequently update the session state. You mean when client invoke the service

Re: ServiceContext in OperationContext does not match error

2008-09-24 Thread Igor Nogueira
Hi Deepal! Thanks for answering! That´s what I wanna do: I have two services. Service A and service B. Both are stateful, and they may not be on the same server. Service A proccess the client's invocations and consequently update the session state. Service B is a backup service and sometimes need

Re: Interoperability question: AsymmetricBinding with .Net

2008-09-24 Thread Dimuthu Leelarathne
Hi, Axis2/Ramart passes many interoperability tests with .NET. AFAIK the specified scenario must work with a .NET client. Thank you, Dimuthu Plamena Chongova wrote: Hi all! I have question regarding Axis2 <-> .Net interoperability scenario. Has anyone succeeded to run the scenario: an Axis

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 about c

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, Sept

Hosting WebService in Axis2 behind IIS Reverse Proxy

2008-09-24 Thread Paul Bakker
Hi, We're trying to setup WebService hosting inside Tomcat behind an IIS Reverse Proxy and experiencing some difficulties. The Reverse Proxy is configured to use AJP 1.3, here's the content of the proxy config files: worker.properties: worker.list=worker1 worker.worker1.type=ajp13 wo

Re: Async processing, client stubs thread safety and port conflicts

2008-09-24 Thread Dmitriy Frolov
Deepal, Thanks for your quick response. It worked perfectly. I didn't realize that configuration was initialized multiple times. I have another question. Is client listener implemented as a server model? Meaning that once it receives a response it hands it over to another thread for processing?

Dynamic Client with JAXB

2008-09-24 Thread Ben Reif
I'm trying to create a dynamic client using the ServiceClient, but I'm wondering if there's an easy way to create the OMElement for the payload. I've got the WSDL, the service QName, PortType QName, operation name, etc. and JAXB objects as input. The tricky part is knowing whether or not to create

AW: soapUI and Apache Axis

2008-09-24 Thread Matthias.Gaiser
Hi Frank, I use soapUI regularly to test my Axis web services and it works really good. I can recommend this tool to everyone for testing. You can get it here http://www.soapui.org Matthias. > -Ursprüngliche Nachricht- > Von: Chen, Lizhao [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch,

RE: Attachment SwA or MTOM

2008-09-24 Thread Attharkar, Asmita
Hi Thilina, Thanks for such a detailed response. Yes I got the sample in http://thilinag.blogspot.com/2008/04/download-file-from-axis2-web-service.html working and was able to retrieve the content on the server side. I used MTOM to get the contents of attachment from client to server. There wa

RE: HI i am fresher for axis2 webservices

2008-09-24 Thread Martin Gainty
dont forget to include services.xml in your .aar This service is to get the running Axis version sample.axisversion.Version Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attach

RE: HI i am fresher for axis2 webservices

2008-09-24 Thread D . H . T . M . Gameren
Hi, I have taken a look at your service and the problem is the way you build your aar-file. 1. the common structure is META-INF this contains services.xml + wsdl-file libcontains extra jar's when needed. Xx tree containing you class files. 2. Your aar-file only co

RE: HI i am fresher for axis2 webservices

2008-09-24 Thread yendam
D.H.T.M.Gameren wrote: > > > i am sending one project what i am doing it is showing errors > please rectify where is that error is and send me working example war file > thanks > or please send me any websrvice example which is already devoloped > http://www.nabble.com/file/p19648228/WeatherSe

get_store() throws NullPointerException.

2008-09-24 Thread Srijith Kochunni
Hi All, I am using Axis2 to create web service client using xmlbeans databinding. I have this strange problem that when I invoke the setter method for a particular type, I get a NullPointer exception. The exception is being thrown from an autogenerated code which I got using wsdl2

RE: soapUI and Apache Axis

2008-09-24 Thread Chen, Lizhao
Frank, I think they are separate tools for Web Service, SoapUI is on front end, and Axis is on back end. -Original Message- From: Frank Cohen [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2008 09:08 AM To: axis-user@ws.apache.org Subject: soapUI and Apache Axis Hi Everyone:

Interoperability question: AsymmetricBinding with .Net

2008-09-24 Thread Plamena Chongova
Hi all! I have question regarding Axis2 <-> .Net interoperability scenario. Has anyone succeeded to run the scenario: an Axis2 service with policy with AsymmetricBinding and UserNameToken as SignedSupportingToken vs. .Net client? Thanks and regards, Plamena