Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-25 Thread Simon Arame
Mark, Piotr, thanks a lot for your answers. I tested both fixes proposed by Piotr: 1) adding to catalina.properties works. 2) adding to JreMemoryLeakPreventionListener.classesToInitialize did not work. Simon On Fri, Apr 25, 2025 at 10:12 AM Piotr P. Karwasz wrote: > Hi, > > On 25.04.2025 15:

Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-25 Thread Piotr P. Karwasz
Hi, On 25.04.2025 15:57, Piotr P. Karwasz wrote: To solve this, add: javax.xml.datatype.DatatypeFactory = com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl A more proper solution could be to initialize `j.x.b.DatatypeConverterImpl` using the `JreMemoryLeakPreventionListene

Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-25 Thread Piotr P. Karwasz
Hi Simon, On 22.04.2025 17:44, Simon Arame wrote: org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading Illegal access: this web application instance has been stopped already. Could not load [org.apache.xerces.jaxp.datatype.XMLGregorianCalendarImpl$DaysInMonth]. The follo

Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-25 Thread Mark Thomas
There is a lot of information here. Responses in-line. On 24/04/2025 21:51, Simon Arame wrote: Not sure I am interpreting the doc correctly, does this mean that the concerned classes of the xercesImpl jar in /WEB-INF/lib will be ignored when there exists the equivalent in the bootstrap class

Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-24 Thread Simon Arame
Hi Mark, thank you for providing those steps. I downloaded a "YourKit" trial and did execute them. I am blocked at the "Figure out what is creating those reference chains" step. The documentation [ https://tomcat.apache.org/tomcat-9.0-doc/api/org/apache/catalina/loader/WebappClassLoaderBase.html ]

Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-24 Thread Mark Thomas
On 23/04/2025 16:10, Simon Arame wrote: What java method call should I be searching for in libraries source code ? It isn't going to be that simple. You'll need to do something like. 1. Deploy the application 2. Undeploy the application 3. Force GC (with a profiler) 4. Take a memory snap

Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-23 Thread Simon Arame
ister the Soap service ? We followed the axis documentation instructions for when using tomcat and declared the AxisServlet in web.xml and assigned it a url-pattern. I am not sure if any additional steps are required for the servlet to correctly de-register ( the documentation mentions the use of a

Re: Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-22 Thread Mark Thomas
On 22/04/2025 16:44, Simon Arame wrote: What is strange is that although it says "this web application instance has been stopped already", the web application is still running, end users are still receiving 200 OKs from the web application. Any other web applications running on that Tomcat i

Axis Fault, Xerces sees the webapp as stopped although it is running

2025-04-22 Thread Simon Arame
Hi, I'm running tomcat 9.0.98 with jvm 1.8.0_432 on a Rocky LInux. I've encountered this problem with Axis Soap library: the server throws an exception, in the application log, a simple AxisFault: ( hostname and class name changed for privacy reasons ) > ERROR - axisfaultexceptio

Re: soap web service (axis based) on tomcat 8

2015-09-19 Thread Christopher Schultz
app classpath during app >> idle time? Is there anyway to turn this off? > > Quick pointer : > http://tomcat.apache.org/tomcat-8.0-doc/config/host.html#Standard_Impl ementation > > See "autoDeploy" (default is true) > > If you set this to "false", doe

Re: soap web service (axis based) on tomcat 8

2015-09-19 Thread tomcat
On 19.09.2015 02:20, jennifer zhou wrote: Hi, Our app was running well on Tomcat 7 on linux. Recently we migrated to Tomcat 8 on linux. However we found the system CPU usage is higher than normal. When there is no any user interaction, we still see about 25% of the system CPU usage. After dee

soap web service (axis based) on tomcat 8

2015-09-18 Thread jennifer zhou
Hi, Our app was running well on Tomcat 7 on linux. Recently we migrated to Tomcat 8 on linux. However we found the system CPU usage is higher than normal. When there is no any user interaction, we still see about 25% of the system CPU usage. After deep dive, we found the tomcat keeps scanning ou

RE: axis

2011-03-25 Thread Jorge Infante Osorio
You just need to download the axis2 war and deploy it inside tomcat as any other application. Jorge. -Mensaje original- De: robert.jen...@surecomp.com [mailto:robert.jen...@surecomp.com] Enviado el: lunes, 14 de marzo de 2011 15:38 Para: users@tomcat.apache.org Asunto: axis Does tomcat

Re: axis

2011-03-14 Thread Thomas Freitag
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello Robert, On 03/14/2011 08:38 PM, robert.jen...@surecomp.com wrote: > Does tomcat include the apache axis or do I have to download and install > separately? Tomcat does not include axis. Regards, - -- Thomas Freitag -BEGIN PGP SIG

axis

2011-03-14 Thread Robert.Jenkin
Does tomcat include the apache axis or do I have to download and install separately? Sincerely, Robert Jenkin Surecomp Services, Inc. 2 Hudson Place, 4th Floor Hoboken, NJ 07030 Skype: robert.jenkin Office: 201 217 1437 | Direct: 201 716 1219 | Mobile: 908 251 0537 http://www.Surecomp.com

Re: Re: Occasional (!) error "(404) Not Found" with Apache Axis 1.4 web service after update to Tomcat 6.0.29

2010-12-21 Thread Felix Dierich
Apache Axis 1.4 based web service running on Tomcat. After the Tomcat update some of these calls suddenly get a "(404)Not Found" response from the servlet, with no clear pattern. In a write operation with 20 SOAP calls more or less at once, two may get this response, the rest works well. This

Re: Occasional (!) error "(404) Not Found" with Apache Axis 1.4 web service after update to Tomcat 6.0.29

2010-12-20 Thread Konstantin Kolinko
2010/12/20 Felix Dierich : > I have a very strange issue, which only occured after an update from Tomcat > 6.0.26 to 6.0.29. I have a number applications doing alltogether ~50-100 > SOAP calls per minute to an Apache Axis 1.4 based web service running on > Tomcat. After the Tomcat up

Occasional (!) error "(404) Not Found" with Apache Axis 1.4 web service after update to Tomcat 6.0.29

2010-12-20 Thread Felix Dierich
Hi everyone, I have a very strange issue, which only occured after an update from Tomcat 6.0.26 to 6.0.29. I have a number applications doing alltogether ~50-100 SOAP calls per minute to an Apache Axis 1.4 based web service running on Tomcat. After the Tomcat update some of these calls

Re: Tomcat Maven and Axis 1.5.1 problem

2010-11-02 Thread srd.pl
wrote: > > A little googling produces this result: > http://www.jarvana.com/jarvana/view/org/apache/axis2/axis2-kernel/1.1.1/axis2-kernel-1.1.1.jar!/org/apache/axis2/transport/local/LocalTransportSender.class?classDetails=ok > > I suspect that your set of Axis jars are from differ

RE: Tomcat Maven and Axis 1.5.1 problem

2010-11-01 Thread Karthik Nanjangude
Hi I do not think so to use MAVEN *.jar in Tomcat Lib... I presume these are for used for Deployment / Undeployment of AXIS application mounted on Tomcat and NOT for Run time With regards karthik >> maven-artifact-2.0.8.jar > > maven-artifact-manager-2.0.7.jar > > ma

Re: Tomcat Maven and Axis 1.5.1 problem

2010-11-01 Thread Ron McNulty
A little googling produces this result: http://www.jarvana.com/jarvana/view/org/apache/axis2/axis2-kernel/1.1.1/axis2-kernel-1.1.1.jar!/org/apache/axis2/transport/local/LocalTransportSender.class?classDetails=ok I suspect that your set of Axis jars are from different versions of Axis - maybe

RE: Tomcat Maven and Axis 1.5.1 problem

2010-10-30 Thread Martin Gainty
; From: p...@pidster.com > To: users@tomcat.apache.org > Subject: Re: Tomcat Maven and Axis 1.5.1 problem > > On 29/10/2010 08:25, srd.pl wrote: > > > > Thanks for the contribution. I have posted on the axis list but no response > > and I'm running out of time :/ I

Re: Tomcat Maven and Axis 1.5.1 problem

2010-10-29 Thread srd.pl
Thanks for the contribution. I have posted on the axis list but no response and I'm running out of time :/ If you can take a look at a list of the .jar files my webservice has: activation-1.1.jar ant-1.7.0.jar ant-launcher-1.7.0.jar antlr-2.7.6.jar apache-maven-2.0.9.jar asm-3.1.jar asm-

Re: Tomcat Maven and Axis 1.5.1 problem

2010-10-28 Thread Pid
Builder.java:669) 1 email to the list is sufficent, please be patient. The root cause is a ClassNotFoundException. Are you sure you have included all of the jars in the application? The Axis lists may be a better location to find out more about your problem. p 0x62590808.asc Description: app

Tomcat Maven and Axis 1.5.1 problem

2010-10-28 Thread srd.pl
Hello, I am trying to deploy a webservice on tomcat that implements some axis wsdl2java work. However when I try to launch the code it gives an error in the line when I create an instance of auto-generated ServiceStub. The funny thing is that I am using Maven for building the project. And when

Tomcat Maven and Axis 1.5.1 problem

2010-10-28 Thread srd.pl
Hello, I am trying to deploy a webservice on tomcat that implements some axis wsdl2java work. However when I try to launch the code it gives an error in the line when I create an instance of auto-generated ServiceStub. The funny thing is that I am using Maven for building the project. And when

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
Caldarale, Charles R wrote: From: Michele Mase' [mailto:michele.m...@gmail.com] Subject: Re: Anyone? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux For Chuck Is Java really cross-platform? Definitely - once the JRE is ported to the platfo

RE: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Caldarale, Charles R
> From: Michele Mase' [mailto:michele.m...@gmail.com] > Subject: Re: Anyone? intermittent javax.net.ssl.SSLException: Invalid > padding tomcat6.x axis 1.4 jdk 1.5 linux > For Chuck > Is Java really cross-platform? Definitely - once the JRE is ported to the platform of

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Michele Mase'
>>>> >>>> The reason why it happens under Linux and not under Windows, is most >>>> probably because the JVM is different. >>>> >>>> >>>> Michele Mase' wrote: >>>> >>>> On Sun, Jul 25, 2010 at 9:

RE: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Caldarale, Charles R
> From: André Warnier [mailto:a...@ice-sa.com] > Subject: Re: Anyone? intermittent javax.net.ssl.SSLException: Invalid > padding tomcat6.x axis 1.4 jdk 1.5 linux > > Both windoz and linux use the same java :( That is a myth. Besides the points André brings up, even the

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
me webapp under a windows system never catches the exception The webapps uses tomcat like a client with the axis library (1.4 version only, it is non axis <1.4 capable) in order to connect to an external webservice with https. You catch the exception after 1 hour of work, 5, 7 hours and more than 24 h

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
t.ssl.SSLException: Invalid padding" errors. The same webapp under a windows system never catches the exception The webapps uses tomcat like a client with the axis library (1.4 version only, it is non axis <1.4 capable) in order to connect to an external webservice with https. You catch the exc

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Michele Mase'
the exception) >>> Under linux environment, >>> RedHat EL5.5 >>> Jdk 1.5.0_22 >>> Tomcat6.0.26 >>> axis1.4 >>> our webapps takes strange intermittent "javax.net.ssl.SSLException: >>> Invalid >>> padding" errors. >>&g

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
the exception The webapps uses tomcat like a client with the axis library (1.4 version only, it is non axis <1.4 capable) in order to connect to an external webservice with https. You catch the exception after 1 hour of work, 5, 7 hours and more than 24 hours of work. Once the exception is catche

Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Michele Mase'
_22 > Tomcat6.0.26 > axis1.4 > our webapps takes strange intermittent "javax.net.ssl.SSLException: Invalid > padding" errors. > The same webapp under a windows system never catches the exception > The webapps uses tomcat like a client with the axis library (1.4 version > o

Re: Axis SOAP maximum message size

2009-07-15 Thread André Warnier
Sergio Arrighi wrote: Hi, Which is the maximum size of an Axis Soap Message? We here don't know about that kind of stuff, we just know about this Tomcat thing. Maybe you should ask that on an Axis support list, or a SOAP support list, or a Message support

Axis SOAP maximum message size

2009-07-15 Thread Sergio Arrighi
Hi, Which is the maximum size of an Axis Soap Message? Many thanks. Sergio -- *I.M.I.N. Holding s.r.l.* Sergio Arrighi sergio.arri...@iminholding.com <mailto:sergio.arri...@iminholding.com> Cell. 3455805121 Vicolo Molino, 2 21052 Busto Arsizio Varese Tel. +39 0331324679 Fa

Re: Disable AXIS services list?

2009-06-12 Thread Mark Thomas
John Oliver wrote: > I Googled for this, and found a reference to setting > "disableServiceList" to true, but that didn't work. Tomcat is 6.0.18 > running under W2K3 Server if that makes a difference. A question for the axis use

Disable AXIS services list?

2009-06-11 Thread John Oliver
I Googled for this, and found a reference to setting "disableServiceList" to true, but that didn't work. Tomcat is 6.0.18 running under W2K3 Server if that makes a difference. Thanks. -- *** * John Oliver

RE: TWO Axis web services listening on different ports

2009-02-25 Thread Caldarale, Charles R
> From: marcopb [mailto:marc...@interfree.it] > Subject: TWO Axis web services listening on different ports > > Is there any xml tag to let one Tomcat instance listen to > multiple port ? Just configure an additional for the desired port: http://tomcat.apache.org/tomcat-5.5-doc/c

TWO Axis web services listening on different ports

2009-02-25 Thread marcopb
tiple port ? Thanks -- View this message in context: http://www.nabble.com/TWO-Axis-web-services-listening-on-different-ports-tp22201284p22201284.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsu

Re: Request queue menagement Tomcat 5.5 + Axis

2009-02-04 Thread Sergio Arrighi
Hi Chuck, Thank you very much for the precious shortcut! BB Sergio Caldarale, Charles R ha scritto: From: Sergio Arrighi [mailto:sergio.arri...@iminholding.com] Subject: Re: Request queue menagement Tomcat 5.5 + Axis Could you please tell me if it's possible to set the number of dedi

RE: Request queue menagement Tomcat 5.5 + Axis

2009-02-03 Thread Caldarale, Charles R
> From: Sergio Arrighi [mailto:sergio.arri...@iminholding.com] > Subject: Re: Request queue menagement Tomcat 5.5 + Axis > > Could you please tell me if it's possible to set the number > of dedicated threads and queue lenght? As usual, it's in the doc: http://tomcat.

Re: Request queue menagement Tomcat 5.5 + Axis

2009-02-03 Thread Sergio Arrighi
Hi Mark, It's Sergio again about request queues on Tomcat + Axis. Could you please tell me if it's possible to set the number of dedicated threads and queue lenght? Is there a maximum for these two parameters?? Thank you very much! Sergio Mark Thomas ha scritto: Sergio Arr

Re: Request queue menagement Tomcat 5.5 + Axis

2009-01-29 Thread Mark Thomas
Sergio Arrighi wrote: > Hello to everyone, > > I've developed a webApp on tomcat 5.5. > This webapp consists of a bunch of webservices that i've created using > axis. > Is there someone who could help me to understand how tomcat or axis > handle the request qu

Request queue menagement Tomcat 5.5 + Axis

2009-01-29 Thread Sergio Arrighi
Hello to everyone, I've developed a webApp on tomcat 5.5. This webapp consists of a bunch of webservices that i've created using axis. Is there someone who could help me to understand how tomcat or axis handle the request queue?? Thank you very much Sergio Arrighi --

Re: TomCat and support of WebServices stacks: JAX-WS vs. Axis

2008-05-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben, Ben Stover wrote: | Which type of WebService stacks does TomCat support-out-of-the-box | (=without installing additional components): | | JAX-WS | | and/or | | Axis Neither. You will have to install either a JAX-WS or an Axis library in order

TomCat and support of WebServices stacks: JAX-WS vs. Axis

2008-05-06 Thread Ben Stover
Which type of WebService stacks does TomCat support-out-of-the-box (=without installing additional components): JAX-WS and/or Axis Assume I get to a remote server where TomCat is running. How can I check what types of WebServices (and which spec version) are currently supported by this

RE: How to detect which version of Axis is currently running in TomCat ?

2008-04-10 Thread Caldarale, Charles R
> From: Ben Stover [mailto:[EMAIL PROTECTED] > Subject: How to detect which version of Axis is currently > running in TomCat ? > > How can I find out if Axis is already (successfully) > installed on this server and if yes which version it is? If you're doing this from a

How to detect which version of Axis is currently running in TomCat ?

2008-04-10 Thread Ben Stover
Assume I get to an already installed and running TomCat server. How can I find out if Axis is already (successfully) installed on this server and if yes which version it is? Ben - To start a new topic, e-mail: users

Re: tomcat/axis not compiling java

2008-03-14 Thread atheus
Christopher Schultz-2 wrote: > > Is it possible that you are missing: > > JkMount /*.jwsmyWorker > > ?? > > - -chris > Yes! thank you! -- View this message in context: http://www.nabble.com/tomcat-axis-not-compiling-java-tp16010755p16048075.html Sent fro

Re: tomcat/axis not compiling java

2008-03-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 J.R., atheus wrote: | Sorry, yes, we're running apache 2 with mod_jk. It works - jsps compile and | run. It's just these damn jws things. Is it possible that you are missing: JkMount /*.jwsmyWorker ?? - -chris -BEGIN PGP SIGNATURE-

Re: tomcat/axis not compiling java

2008-03-12 Thread atheus
Christopher Schultz-2 wrote: > > J.R., > > atheus wrote: > | Basically I have tomcat 6 and axis installed on the server, and > | happyaxis.jsp validates the install, but whenever I try to access a > jws web > | service it spits out the java code rather than compilin

Re: tomcat/axis not compiling java

2008-03-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 J.R., atheus wrote: | Basically I have tomcat 6 and axis installed on the server, and | happyaxis.jsp validates the install, but whenever I try to access a jws web | service it spits out the java code rather than compiling and executing - - as | if

tomcat/axis not compiling java

2008-03-12 Thread atheus
Hi - I hope someone here can help me, because I've been at this for hours and I'm getting nowhere... Basically I have tomcat 6 and axis installed on the server, and happyaxis.jsp validates the install, but whenever I try to access a jws web service it spits out the java code r

Re-map Axis 2 URL in Tomcat 5.0 - Possible?

2007-10-04 Thread foo shyn
Hi All, Sent this out yesterday but no feed back yet. Perhaps the timing not right, so send again. Sorry for the duplication. I have tried to install and run Axis2 on Tomcat 5.0 and it was working fine. However, i notice that for me to engage my service in tomcat the URL would be something l

RE: Axis is not working.

2007-10-04 Thread zhshqzyc
I can't imagine it would be working without CLASSPATH. I uninstalled the tomcat 6.0 and installed tomcat 5.0.25. It works then. Caldarale, Charles R wrote: > >> From: zhshqzyc [mailto:[EMAIL PROTECTED] >> Subject: RE: Axis is not working. >> >> Which enviro

RE: Axis is not working.

2007-10-03 Thread Caldarale, Charles R
> From: zhshqzyc [mailto:[EMAIL PROTECTED] > Subject: RE: Axis is not working. > > Which environment variable should be removed? > CLASSPATH? CLASSPATH is the only one I mentioned. You might want to read over the description of Tomcat's classloading mechanism to make sur

RE: Axis is not working.

2007-10-03 Thread zhshqzyc
Which environment variable should be removed? CLASSPATH? OR AXISCLASSPATH? Thanks! Caldarale, Charles R wrote: > >> From: zhshqzyc [mailto:[EMAIL PROTECTED] >> Subject: Axis is not working. >> >> I checked the classpath it is okay. > > No, it isn't

RE: Axis is not working.

2007-10-03 Thread Caldarale, Charles R
> From: zhshqzyc [mailto:[EMAIL PROTECTED] > Subject: Axis is not working. > > I checked the classpath it is okay. No, it isn't o.k. No CLASSPATH should be used when running Tomcat. The referenced tutorial fails to make clear that setting CLASSPATH is only for compiling

Axis is not working.

2007-10-03 Thread zhshqzyc
Hello, I am using Jakarta Tomcat 6.0.10. I followed the tutorial from "Configuring & Using Apache Tomcat 6" at "http://www.coreservlets.com";. Installation is fine, tomcat works well for servets and JSP. After I installed Axis-1.4, I typed the url "http://localh

Re: Filter mapped to "/*" not seeing Axis requests (Tomcat 5.0.19)

2007-09-20 Thread Jim Cox
request, line 284 is a section of code prefaced by the comment "We fell off the end of the chain -- call the servlet instance" On 9/20/07, David Delbecq <[EMAIL PROTECTED]> wrote: > Hello > > Filter mapped to /* should see everything that reach it's application. > Th

Re: Filter mapped to "/*" not seeing Axis requests (Tomcat 5.0.19)

2007-09-20 Thread Steve Souza
I suspect it is not working due to the axis servlets location under /top/. '/*' might only work for the root context and not any subcontexts/subdirectories. Something else that might be of interest. Today, I am going to release JAMon 2.7 which contains a Tomcat valve that will keep

Re: Filter mapped to "/*" not seeing Axis requests (Tomcat 5.0.19)

2007-09-20 Thread David Delbecq
Hello Filter mapped to /* should see everything that reach it's application. This include your axis service. I suggest you investigate to possibility that your ignoredUrls or ignoredPatterns apply to all your axis request, making your filter ignore them. If you see not output from your filte

Filter mapped to "/*" not seeing Axis requests (Tomcat 5.0.19)

2007-09-20 Thread Jim Cox
I developed a simple logging filter to debug some performance problems on a Tomcat 5.0.19 installation. It works well for the requests it sees, but the filter does not see requests serviced by a .wsdd-deployed Axis servlet. Anyone have any help/info/pointers to offer? Only one webapp is defined

Re: content header missing using IIS, tomcat and axis

2007-07-26 Thread Rainer Jung
Can you check, if the attachment to the request has been received completely by your Tomcat webapp? Regards, Rainer Daniel Dang wrote: Hi there, I am using IIS version 6.0 talk to tomcat version 5.5.16 with mod_jk and axis version 2.4 client recieved xml soap message fine. The problem is

content header missing using IIS, tomcat and axis

2007-07-26 Thread Daniel Dang
Hi there, I am using IIS version 6.0 talk to tomcat version 5.5.16 with mod_jk and axis version 2.4 client recieved xml soap message fine. The problem is when axis setting a attachments client recieved http error 500 The same server code working fine for apache but not for IIS here is a

Re: Axis 2, POJO, Exceptions and Faults

2007-07-16 Thread albert quinn
Hi Joe !!! : Many thanks by your answer, I'm really a newbie in the Axis world and I'm still lost, spending a lot of time reading the Axis 2 docs and samples but not finding answers to thowsands of questions in that docs and samples. So, I'm trying to find the easiest way to

Re: Axis 2, POJO, Exceptions and Faults

2007-07-15 Thread Joe Nathan
For clients, any exceptions happened in transport will be captured by try {} catch blocks. Errors occured in POJO servers will be embedded in return strings as XML strings. Note that use of SOAP means that you should live with XML! regards. -- View this message in context: http://www.nabble.com/

Axis 2, POJO, Exceptions and Faults

2007-07-14 Thread albert quinn
Hi !! : I'd like to develop a web service in Axis 2 the easiest way possible. So, I'd like to develop a POJO, and then generate a POJO Web Service from it with the "Axis 2 Service Archiver" Eclipse plugin. I'd like my POJO Web Service throwed RemoteExceptions or

RE: axis - tomcat "loader constraint violation"

2007-07-13 Thread E Koutsoudaki
Hi, the library was required to be in the Tomcat\common\lib, so I have removed it from the Tomcat\webapps\axis\WEB-INF\lib as you said and now it works fine! Thank you very much for your help, Elisavet Quoting "Reich, Matthias" <[EMAIL PROTECTED]>: Hi, it looks as if clas

RE: axis - tomcat "loader constraint violation"

2007-07-13 Thread Reich, Matthias
re to have classes located *either* in the common classpath *or* in the webapp classpath, but not in both of them. Regards, Matthias > -Original Message- > From: E Koutsoudaki [mailto:[EMAIL PROTECTED] > Sent: Friday, July 13, 2007 2:12 PM > To: users@tomcat.apache.org > Subje

axis - tomcat "loader constraint violation"

2007-07-13 Thread E Koutsoudaki
builds fine, but when running the following error occurs: java.lang.LinkageError: loader constraint violation: when resolving field "service" the class loader (instance of org/apache/catalina/loader/WebappClassLoader) of the referring class, org/apache/axis/client/Stub, and the class loader

Re: problem with Tomcat 5.5.17, Axis 2, MySQL 3.1.12, JNDI

2007-07-13 Thread albert quinn
lem was the "name" atribute in the "Resource" element, I've changed it from "java:comp/env/jdbc/DB" to "jdbc/DB" and it began to work fine !!.. yeah I've problems with Axis 2 now, but I can connect to the remote Database without problems. M

Re: problem with Tomcat 5.5.17, Axis 2, MySQL 3.1.12, JNDI

2007-07-12 Thread David Smith
rt quinn wrote: > Hi ! : > > First of all : excuse my poor english. Second : I'm trying to set up > a MySQL connection pool on Tomcat 5.5.17 (running over Windows XP) to > connect to a remote DB from a web service running on the Axis 2 > deployed in Tomcat. I've read t

Re: problem with Tomcat 5.5.17, Axis 2, MySQL 3.1.12, JNDI

2007-07-12 Thread albert quinn
#x27;m trying to set up > a MySQL connection pool on Tomcat 5.5.17 (running over Windows XP) to > connect to a remote DB from a web service running on the Axis 2 > deployed in Tomcat. I've read the Tomcat docs and the Tomcat mailing > lists but i've not founded any answers t

Re: problem with Tomcat 5.5.17, Axis 2, MySQL 3.1.12, JNDI

2007-07-12 Thread David Smith
d albert quinn wrote: Hi ! : First of all : excuse my poor english. Second : I'm trying to set up a MySQL connection pool on Tomcat 5.5.17 (running over Windows XP) to connect to a remote DB from a web service running on the Axis 2 deployed in Tomcat. I've read the Tomcat docs and the Tomc

problem with Tomcat 5.5.17, Axis 2, MySQL 3.1.12, JNDI

2007-07-11 Thread albert quinn
Hi ! : First of all : excuse my poor english. Second : I'm trying to set up a MySQL connection pool on Tomcat 5.5.17 (running over Windows XP) to connect to a remote DB from a web service running on the Axis 2 deployed in Tomcat. I've read the Tomcat docs and the Tomcat mailing list

Re: Java Axis and R

2007-06-26 Thread Peter Ansell
Have you seen the following publication which demonstrates how to use R as an Axis web service. The way they made it work may be similar to the way you are trying to do. http://www.bioconductor.org/packages/2.0/bioc/vignettes/RWebServices/inst/doc/EnablingPackages.pdf Peter Ansell Yifan (Eric

RE: Java Axis and R

2007-06-24 Thread Yifan (Eric) Jiang
Hi Kaustubh, Thanks for your information. But I am looking for something that can be use in Java program. Thanks Eric -Original Message- From: kaustubh shinde [mailto:[EMAIL PROTECTED] Sent: Monday, 25 June 2007 2:02 p.m. To: Tomcat Users List Subject: Re: Java Axis and R Hi there

Re: Java Axis and R

2007-06-24 Thread kaustubh shinde
Hi all, I've been asked to develop a Java Axis web service to call R program (http://www.r-project.org/). There is a Java/R interface (http://www.rforge.net/rJava/) has been developed and allows to call methods and access R object from Java. So my application is running fine as a normal Java

Java Axis and R

2007-06-24 Thread Yifan (Eric) Jiang
Hi all, I've been asked to develop a Java Axis web service to call R program (http://www.r-project.org/). There is a Java/R interface (http://www.rforge.net/rJava/) has been developed and allows to call methods and access R object from Java. So my application is running fine as a normal

synchronizing Tomcat start and axis web service application start.

2007-05-13 Thread Hakan . Barisik
Hi I am trying to find a config point or some mechanism where I can make Tomcat to start ( not just load ) my axis web service application. As the component initialization during startup for my application will take some time (2 minutes), I want Tomcat to handle incoming requests

Re: Tomcat and Axis Logging delay

2007-03-29 Thread Andy Kayley
code, and are using Java 5. Now we have a webapp that has some servlets/jsps and an axis webservice in the same war. We have logging set up on tomcat to use the tags as follows... In directory.. /usr/local/tomcat/conf/Catalina/ourapp.ourdomain.com we have.. ourapp.xml whic

Tomcat and Axis Logging delay

2007-03-29 Thread Andy Kayley
t has some servlets/jsps and an axis webservice in the same war. We have logging set up on tomcat to use the tags as follows... In directory.. /usr/local/tomcat/conf/Catalina/ourapp.ourdomain.com we have.. ourapp.xml which contains The problem we're seeing is that t

Tomcat and Axis Logging delay

2007-03-29 Thread Andy Kayley
t has some servlets/jsps and an axis webservice in the same war. We have logging set up on tomcat to use the tags as follows... In directory.. /usr/local/tomcat/conf/Catalina/ourapp.ourdomain.com we have.. ourapp.xml which contains The problem we're seeing is that t

Re: AXIS: tomcat always do http compression without watch min size

2006-10-06 Thread wakeup
re the client does NOT send a > "accept-encoding" header with the a value containing "gzip" or by using > the noCompressionUserAgents, compressableMimeType attributes on the > connector. > > -Tim > > wakeup wrote: >> Thanks, I think you are rig

Re: AXIS: tomcat always do http compression without watch min size

2006-10-06 Thread Tim Funk
connector. -Tim wakeup wrote: Thanks, I think you are right. Axis don't set content-leght because it is sending response chunked. Where do I have to disable chunk in the axis server o in the client? Thankss Tim Funk wrote: compressionMinSize only works with fixed file sizes. If axis is

Re: AXIS: tomcat always do http compression without watch min size

2006-10-06 Thread wakeup
Thanks, I think you are right. Axis don't set content-leght because it is sending response chunked. Where do I have to disable chunk in the axis server o in the client? Thankss Tim Funk wrote: > > compressionMinSize only works with fixed file sizes. If axis is NOT > setting the

Re: AXIS: tomcat always do http compression without watch min size

2006-10-05 Thread Tim Funk
compressionMinSize only works with fixed file sizes. If axis is NOT setting the ContentLength before serving back results - then compressionMinSize can't be checked to see if compression can be done. And then compression will be done based on the client input headers. -Tim wakeup wrote

Re: AXIS: tomcat always do http compression without watch min size

2006-10-05 Thread Peter Rossbach
Which mime type send axis as responce? Peter Am 05.10.2006 um 09:46 schrieb wakeup: Hi, I have an apache tomcat 5.5.17. In my server.xml file I have put It run sucessfull with normal html tomcat pages. But when I ask to axis 1.4 webservices it always compress the response althought it

AXIS: tomcat always do http compression without watch min size

2006-10-05 Thread wakeup
Hi, I have an apache tomcat 5.5.17. In my server.xml file I have put It run sucessfull with normal html tomcat pages. But when I ask to axis 1.4 webservices it always compress the response althought it be less than 1kb. Why axis don't respect compressionMinSize parameter? Thanks -- View

Re: tomcat + axis service:

2006-09-29 Thread Kristian Rink
Hi again, Mark et al; Am Fri, 22 Sep 2006 07:23:29 -0400 schrieb Mark Thomas <[EMAIL PROTECTED]>: > > attachments. So far, recieving and decoding messages (small sizes, > > or locally) works well, but external tests using the remote sender > > client and bigger attachments always ends up like t

Re: tomcat + axis service:

2006-09-22 Thread Kristian Rink
Mark, list; ...at first, thanks a lot for your hint. :) Am Fri, 22 Sep 2006 07:23:29 -0400 schrieb Mark Thomas <[EMAIL PROTECTED]>: > > attachments. So far, recieving and decoding messages (small sizes, > > or locally) works well, but external tests using the remote sender > > client and bigge

Re: tomcat + axis service:

2006-09-22 Thread Mark Thomas
Kristian Rink wrote: > > Folks; > > I am running an (axis-based) SOAP web service inside a tomcat 5.5 > environment to link two subsidiaries of our company. This service is > supposed to recieve messages including very large (> 100 MB) MIME > attachments. So far, recievi

tomcat + axis service:

2006-09-22 Thread Kristian Rink
Folks; I am running an (axis-based) SOAP web service inside a tomcat 5.5 environment to link two subsidiaries of our company. This service is supposed to recieve messages including very large (> 100 MB) MIME attachments. So far, recieving and decoding messages (small sizes, or locally) wo

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-20 Thread Luis Rivera
because I need to use the JNI, which requires the classes to be in the shared pool. Here is where the problem lies, because everythinig works if I constrain my application to webapps/axisWEB-INF/classes and webapps/axis/WEB-INF/lib. The problem comes at run time, when the classes in the shared/cl

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-20 Thread Luis Rivera
lasses to be in the shared pool. Here is where the problem lies, because everythinig works if I constrain my application to webapps/axisWEB-INF/classes and webapps/axis/WEB-INF/lib. The problem comes at run time, when the classes in the shared/classes directory access the parameters, which are c

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-20 Thread David Smith
to figure out what is happening? See the tomcat website for your version of tomcat. --David Luis Rivera wrote: Hi Barry and Tomcat/users/devs, I am hoping an axis/tomcat/dev/user will have a good advise. I am sure more than one user has needed to use axis/tomcat and a JNI interface, so I am

Re: Tomcat 5.5/Axis 1.4 java.lang.reflect.InvocationTargetException

2006-07-19 Thread Luis Rivera
Hi Barry and Tomcat/users/devs, I am hoping an axis/tomcat/dev/user will have a good advise. I am sure more than one user has needed to use axis/tomcat and a JNI interface, so I am sure this has been done. I need classes in the shared context and classes in the webapps context, which cause

  1   2   >