Re: Axis Client - Dynamic Web Pages

2004-07-26 Thread Ingrid Falk
Hi, > "Keith" == Keith Tingle <[EMAIL PROTECTED]> writes: Keith> For troubleshooting / development purposes I would like to Keith> have some web pages that read the WSDL file of my web Keith> service and build a simple GUI for setting parameter Keith> values... and actually m

Re: Method overloading

2003-11-12 Thread Ingrid Falk
> "Tom" == Tom Oinn <[EMAIL PROTECTED]> writes: Tom> Quite correct, and if you are only ever going to use axis and Tom> noone else will ever ever need to access your services then Tom> it's reasonable. However, in this case you should probably Tom> be using CORBA :) Maybe, but

Re: Method overloading

2003-11-12 Thread Ingrid Falk
> "Tom" == Tom Oinn <[EMAIL PROTECTED]> writes: >> Does SOAP support overloading? If I want to expose two methods- >> >> 1. sayHello(String firstName) 2. sayHello(String firstName, >> String lastName) >> >> >> Then how do I do it in AXIS. Can somebody point me

RE: How to make CalcClient respond to GET/POST requests?

2003-06-23 Thread Ingrid Falk
> "Wendy" == Wendy Smoak <[EMAIL PROTECTED]> writes: Wendy> Yes, that's it! But now I have a strange result with Wendy> subtract: Wendy> http://localhost/axis/Calculator.jws?method=subtract&i1=25&i2=10 Wendy> Gives: -15 Yes, I noticed that too. Somehow the parameters get r

Re: How to make CalcClient respond to GET/POST requests?

2003-06-20 Thread Ingrid Falk
> "Wendy" == Wendy Smoak <[EMAIL PROTECTED]> writes: Wendy> I tried: Wendy> http://localhost/axis/Calculator.jws?operation=add&i1=5&i2=6 Wendy> And got AXIS error: invoking via GET No method! Maybe: http://localhost/axis/Calculator.jws?method=add&i1=5&i2=6 ??

Re: Newbie: where do you put your service's web.xml?

2003-06-18 Thread Ingrid Falk
> "Michael" == Michael Woinoski <[EMAIL PROTECTED]> writes: Michael> (This seems like a very basic question, but I can't find Michael> the answer in the docs or mailing list archives.) This is covered in the axis installation guide by: Advanced Installation: adding Axis to your own W

Re: Calling a web service from a browser

2003-06-02 Thread Ingrid Falk
> "Alexandru" == Alexandru Simion <[EMAIL PROTECTED]> writes: Alexandru> Hi , Can, anyone, tell me if it is possible to invoke Alexandru> an axis web service from a browser ? And, if yes, what Alexandru> is the procedure to do that ? Yes, it should be possible. You either can w

RE: Determining if a service is deployed (wrapped in my own webapp)

2003-02-19 Thread Ingrid Falk
> "ryan" == ryan cuprak <[EMAIL PROTECTED]> writes: ryan> Thanks, but I've wrapped it in my own webapp. I tried this: ryan> http://149.98.242.166:8080/GMPServer/services/GMP ryan> which returned the page: GMP Hi there, this is an AXIS ryan> service! Perhaps there will be a f

Re: Accessibility of servlets within Axis webapp

2003-02-17 Thread Ingrid Falk
> "Laurent" == Laurent Perez <[EMAIL PROTECTED]> writes: Laurent> Hi I am trying to access a very simple servlet Laurent> (SimpleServlet) within Axis' webapp directory (I got a Laurent> web service working fine but I need to make that servlet Laurent> available to public).

WEB-INF path when axis is used from within a jar

2003-02-10 Thread Ingrid Falk
Hi, i integrated axis into my own web-application which is packed in a war and served by the tomcat 4.x servlet-container. The AxisServletBase provides the methods getWebInfPath getHomeDir which use ServletContext.getRealPath("/WEB-INF") (for eg.) to set them at init time. But from within a jar,