axis problem with log4j

2007-11-15 Thread loredana loredana
I have a project that uses axis2-1.3 Everything worked fine. Now me and a friend of mine joined our 2 application. basically we copied our classes in the same folder and changed the web.xml file to contains the servlet declarations. The problem is that his application(that uses EhCache) uses log

Re: saving web service result as an xml file

2007-10-09 Thread loredana loredana
TED]> To: axis-user@ws.apache.org Sent: Tuesday, October 9, 2007 1:49:52 PM Subject: Re: saving web service result as an xml file Use FileWriter class in java.io 2007/10/9, loredana loredana <[EMAIL PROTECTED]>: Ok, long story short. a web service result is an xml file of this type

saving web service result as an xml file

2007-10-09 Thread loredana loredana
Ok, long story short. a web service result is an xml file of this type: 10 I want to know if there is any way to save this response directly in a web client... So in other words, I can do a web service client in java which queries the web service and returns me the resp

Re: simplest example pls help THANKS

2007-10-08 Thread loredana loredana
dpoint) ); call.setOperationName(new QName(" http://tempuri.org";;, "CelsiusToFahrenheit")); call.setSOAPActionURI("http://tempuri.org/CelsiusToFahrenheit "); Also checkout Axis2 if you are starting out. http://ws.apache.org/axis2/ Upul On 10/8/07, loredana loredana <[EMAI

simplest example pls help

2007-10-08 Thread loredana loredana
I am strugling for a couple of days now to do the most simplest web service client using a web service on w3schools as test. http://www.w3schools..com/webservices/tempconvert.asmx This is the web service. has 2 possible operations with one parameter. Can't get any simpler than this. Yet, I can

Re: new to axis

2007-10-04 Thread loredana loredana
eToHostException means - well - that your application cannot reach the host. AFAIK this means that either the host is not online or does not exist (what it does), or that you are having problems with your inet connection. Can you access the endpoint with your browser? /philipp loredana loredana

Re: new to axis

2007-10-04 Thread loredana loredana
xample? /philipp loredana loredana wrote: > Hy guys, I'm new to axis and I am having a small problem understanding even > the begining example...ok, so i took the most simple web service from w3 > schools: http://www.w3schools.com/webservices/tempconvert.asmx > and I tried to ma

new to axis

2007-10-04 Thread loredana loredana
Hy guys, I'm new to axis and I am having a small problem understanding even the begining example...ok, so i took the most simple web service from w3 schools: http://www.w3schools.com/webservices/tempconvert.asmx and I tried to make a web service client like the first example presented on the ax