RE: SunOne Deployment?

2003-03-21 Thread Enrique Rodríguez
I wrote some lines in the Axis wiki, http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages HTH -Mensaje original- De: Roy Wood [mailto:[EMAIL PROTECTED] Enviado el: jueves, 20 de marzo de 2003 20:12 Para: [EMAIL PROTECTED] Asunto: SunOne Deployment? Anybody out there

How do I deal with ArrayList, java.sql.Date as method parameters?

2003-03-21 Thread Bill Pfeiffer
Reposting on this topic as I've haven't recieved any replies on my last post. I have an object tree from an already exisitng app that will get passed via method calls that I want to expose as web services. The objects included are mainly javabeans contained in javabeans. There are, however,

RE: Dynamically re-deploying AXIS server (class files )

2003-03-21 Thread Christer Holmér
You could reload the axis context in Tomcat. I'm doing that in ANT, like this: target name=reload depends=init echo message= ** reload axis **/ get src=http://localhost:80/manager/reload?path=/axis; dest=reloadresult.txt username=manager

RE: Maximum Connections

2003-03-21 Thread Keith Hatton
Title: Message I think you need to look at the server side of your configuration (JBoss - the web server component - Tomcat or Jetty?). Most likely it is refusing connections once a certain number are being handled concurrently. Keith -Original Message-From: E.Narayanan

RE: Dynamically re-deploying AXIS server (class files )

2003-03-21 Thread Lindeman, Bob
Hi, I got the same question but for Weblogic 5.1. Anyone knows how to do it there ? m.vr.gr. Bob Lindeman -Original Message- From: Christer Holmér [mailto:[EMAIL PROTECTED] Sent: vrijdag 21 maart 2003 09:48 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: Dynamically

Re: Maximum Connections

2003-03-21 Thread E.Narayanan
Title: Message Keith, Thanks a lot ! I changed the number of threads in jboss-service.xml (Jetty config) to 500 and things were better :) Narayanan - Original Message - From: Keith Hatton To: [EMAIL PROTECTED] Sent: Friday, March 21, 2003 2:34 PM Subject: RE:

RE: RC2 has slowwwed down compared to RC1, why?

2003-03-21 Thread Gurkan, Ozzie (MAN-Corporate)
How much information do you need from me? I can provide you with a sample wsdd setup that I have used and get as close to a stripped down sample as possible. I can also provide you with a stripped down WSDL file to generate source code from, too. Is that enough? -Original Message- From:

Is WSDD handlers capable of calling external module?

2003-03-21 Thread Sochea Meas (LMC)
Title: Is WSDD handlers capable of calling external module? Hi all! I am asking the same question again because it did not seem to go through the first time. I apologize for this inconvenient. Anybody knows if it is possible to use WSDD handlers to call external package (eg. calling

RE: Connection limit

2003-03-21 Thread Sean Leblanc
You're preaching to the choir on that one. :) I run FreeBSD almost exclusively at home. Thanks for the info. I suspected as much, but going through IIS vs. going direct to Tomcat had different behavior, so I was just curious. -Original Message- From: Brian Ewins [mailto:[EMAIL

Wrong mail list for WSDL questions?

2003-03-21 Thread Bill Pfeiffer
Over the last few weeks I have asked a couple of questions on this list concerning seemingly incorrect WSDL generation with little response. Is this the incorrect place for such questions? Does IBM maintain the java2wsdl wsdl2java stuff elsewhere? Thanks for any answers. Bill Pfeiffer

RE: document literal fun

2003-03-21 Thread Herrick, Mike
I got the Axis source and am using one of the doclit test cases as a basis for my WSDL: ..\test\wsdl\interop3\docLit\interoptestdoclit.wsdl It choked when I tried to view the ?WSDL in RC2, but it works in the latest build. Has there been a lot of fixes recently on the doc lit stuff? Thanks,

item xsi:nil=true/

2003-03-21 Thread Jinesh Varia
hello, I am extremely sorry to resubmit this. My client is posing a problem when it finds a item xsi:nil=true/ at the end of each array. Infact, I populate 15 records and the last one is chopped off and comes as item xsi:nil=true/ hence it is giving me the null pointer exception at the

(RESOLVED) Re: Unable to manually deploy any webservice usingAxis

2003-03-21 Thread Sharmila Sekaran
Just thought that I would let everyone know that I have resolved this configuration problem. The fact that I did not have JDK 1.4.x installed caused the "NoSuchMethodException". It was not mentioned anywhere in the Axis website that JDK 1.4.x would be *required* and so I was using JDK 1.3.x

Newbie: Easy Question on HTTP calls to service

2003-03-21 Thread Larry
I am experimenting with .jws deployment to get my feet wet before going forward with the more robust deployment. I am testing using http calls like: http://localhost:8080/axis/GetInventory.jws?method=currentBalanceTest Which works fine. I can also create test java clients that can call and

question re javax.xml.rpc.namespace.QNames

2003-03-21 Thread jack smith
Dear Axis Users, when I try to compile a simple StockQuoteClient.java file, I receive an error message that the package javax.xml.rpc.namespace.QNsamess is not present, I am using Tomcat 4.06 and XML-Axis 1.0 in a Win 2k o/s. Please post any suggestions and thanks

Re: question re javax.xml.rpc.namespace.QNames

2003-03-21 Thread Sharmila Sekaran
The packageimported in your client programshould be: javax.xml.namespace.QName If you list whatever is in the axis.jar file using jar tf axis.jar You will notice the discrepancy. -Sharmila Sekaran [EMAIL PROTECTED] 03/21/03 04:42PM Dear Axis Users, when I try to compile a

Re: question re javax.xml.rpc.namespace.QNames

2003-03-21 Thread Sharmila Sekaran
The packageimported in your client programshould be: javax.xml.namespace.QName If you list whatever is in the axis.jar file using jar tf axis.jar You will notice the discrepancy. -Sharmila Sekaran [EMAIL PROTECTED] 03/21/03 04:42PM Dear Axis Users, when I try to compile a

Re: question re javax.xml.rpc.namespace.QNames

2003-03-21 Thread Sharmila Sekaran
I wanted to make sure that I gave the correct command: "jar tf jaxrpc.jar" [EMAIL PROTECTED] 03/21/03 04:49PM The packageimported in your client programshould be: javax.xml.namespace.QName If you list whatever is in the axis.jar file using jar tf axis.jar You will notice the

RE: Newbie: Easy Question on HTTP calls to service

2003-03-21 Thread Sochea Meas (LMC)
Ok if currentBalanceTest holds a string parameter, your URL should look like this: http://localhost:8080/axis/GetInventory.jws?method=currentBalanceTestitem=xxxqty=5 Somewhere in you servlet you should have something like this: String item = request.getParameter(item); int qty =

RE: Newbie: Easy Question on HTTP calls to service

2003-03-21 Thread Dennis Sherman
http://localhost:8080/axis/GetInventory.jws?method=currentBalanceTestparm=v al Same as any HTTP GET -- Dennis R. Sherman Endeavor Information Systems 847-227-2976 [EMAIL PROTECTED] http://www.endinfosys.com -Original Message- From: Larry [mailto:[EMAIL PROTECTED] Sent: Friday, March

How to I get more friendly message when parsing exception happens

2003-03-21 Thread Brian Ko
Hi, I wonder if there is a way to handle parsing exception gracefully by returning meaning SOAP message. For example, my client sends an invalid SOAP message, I got following error. I got same message when the received message have wrong name space. Java AxisClient

RE: question re javax.xml.rpc.namespace.QNames

2003-03-21 Thread Vincent Carpentier (LMC)
Have you checked your classepath for jaxrpc.jar? Vince -Original Message- From: jack smith [mailto:[EMAIL PROTECTED] Sent: Friday, March 21, 2003 5:43 PM To: [EMAIL PROTECTED] Subject: question re javax.xml.rpc.namespace.QNames Dear Axis Users, when I try to compile a simple

newbie..error when trying to run happyaxis.jsp

2003-03-21 Thread ravi chandra
Hi folks! I am new to axis and am using Axis 1.0 and Apache Tomcat/4.1.18. I get the following error when I run the happyaxis.jsp.Any help will be greatly appreciated. Thanks, Ravi. exception org.apache.jasper.JasperException: Cannot inherit from final class at

RE: RC2 has slowwwed down compared to RC1, why?

2003-03-21 Thread Davanum Srinivas
Yes. That would be enough. Thanks, dims --- Gurkan, Ozzie (MAN-Corporate) [EMAIL PROTECTED] wrote: How much information do you need from me? I can provide you with a sample wsdd setup that I have used and get as close to a stripped down sample as possible. I can also provide you with a

RE: newbie..error when trying to run happyaxis.jsp

2003-03-21 Thread ravi chandra
Yes I tried restarting the server..but it didn't change anything. I really doubt there is something to do with my placing the webapps/axis directory. Can anyone tell me specifically where should I copy this directory into. Also I am using java1.4. Thanks, Ravi.

Re: How do I deal with ArrayList, java.sql.Date as method parameters?

2003-03-21 Thread Davanum Srinivas
Bill, PLEASE post a bugzilla bug (http://nagoya.apache.org/bugzilla) with your sample code. Thanks, dims --- Bill Pfeiffer [EMAIL PROTECTED] wrote: Reposting on this topic as I've haven't recieved any replies on my last post. I have an object tree from an already exisitng app that will get

Re: (RESOLVED) Re: Unable to manually deploy any webservice using Axis

2003-03-21 Thread Davanum Srinivas
Sharmila, 1.4.X is NOT a pre-req for Axis. Thanks, dims --- Sharmila Sekaran [EMAIL PROTECTED] wrote: Just thought that I would let everyone know that I have resolved this configuration problem. The fact that I did not have JDK 1.4.x installed caused the NoSuchMethodException. It was

Re: Wrong mail list for WSDL questions?

2003-03-21 Thread Davanum Srinivas
Bill, When you don't get response here...You could post to axis-dev@ mailing list. Thanks, dims --- Bill Pfeiffer [EMAIL PROTECTED] wrote: Over the last few weeks I have asked a couple of questions on this list concerning seemingly incorrect WSDL generation with little response. Is this

Re: How do I deal with ArrayList, java.sql.Date as method parameters?

2003-03-21 Thread Davanum Srinivas
See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18243 --- Bill Pfeiffer [EMAIL PROTECTED] wrote: Reposting on this topic as I've haven't recieved any replies on my last post. I have an object tree from an already exisitng app that will get passed via method calls that I want to expose