RE: axis2 1.3 stackoverflow

2008-09-30 Thread omatzura
CTED] >> Sent: Saturday, September 27, 2008 9:34 PM >> To: axis-user@ws.apache.org >> Subject: RE: axis2 1.3 stackoverflow >> >> this appears to be in the Axis2 code before my implementation is >> dispatched... >> >> > -Original Message-

RE: axis2 1.3 stackoverflow

2008-09-30 Thread Tony Dean
s off takes wsdl4j out of the picture and no errors. > -Original Message- > From: Tony Dean [mailto:[EMAIL PROTECTED] > Sent: Saturday, September 27, 2008 9:34 PM > To: axis-user@ws.apache.org > Subject: RE: axis2 1.3 stackoverflow > > this appears to be in the Axis2 cod

RE: axis2 1.3 stackoverflow

2008-09-27 Thread Tony Dean
this appears to be in the Axis2 code before my implementation is dispatched... > -Original Message- > From: Nan Null [mailto:[EMAIL PROTECTED] > Sent: Saturday, September 27, 2008 8:10 PM > To: axis-user@ws.apache.org > Subject: Re: axis2 1.3 stackoverflow > >

RE: axis2 1.3 stackoverflow

2008-09-27 Thread Tony Dean
I'm using wsdl4j 1.6.1. From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Saturday, September 27, 2008 8:13 PM To: axis-user@ws.apache.org Subject: RE: axis2 1.3 stackoverflow i found this on the spring site as a JIRA concerning jira when implementing WSDL4J WSDL4J (the library we use) i

RE: axis2 1.3 stackoverflow

2008-09-27 Thread Martin Gainty
i found this on the spring site as a JIRA concerning jira when implementing WSDL4J WSDL4J (the library we use) is not thread-safe, so I put a synchronized block around it. for some reason I cannot locate the print method on the current WSDL version 1.5.2 of com.ibm.wsdl.util.xml.DOM2Writer whi

Re: axis2 1.3 stackoverflow

2008-09-27 Thread Nan Null
Do you have database connection involved? Look like you have resource sharing problem. If it's not database, then make sure you synchronized where needed. If it's database, make sure to use connection pool, and try..finally to release all connections properly. I would comment out all code, excep