Re: Memory Leap on server side

2005-01-18 Thread Lyndon Tiu
Peter Molettiere wrote: On Jan 18, 2005, at 10:42 AM, Lyndon Tiu wrote: The past few days, we did have a few emails regarding memory leaks, but these were for the client-side. All my posts over the last few days have been about issues which affect both the server and the client side. Yes, and

Re: Memory Leap on server side

2005-01-18 Thread Lyndon Tiu
past few days, we did have a few emails regarding memory leaks, but these were for the client-side. We found a temporary solution pending a more permanent fix from the bug report someone on this list posted. -- Lyndon Tiu

Re: Axis memory leak

2005-01-14 Thread Lyndon Tiu
. He worked hard on this and he deserves the credit. Thank you. -- Lyndon Tiu

Re: Axis memory leak

2005-01-13 Thread Lyndon Tiu
ny serious application down. In client-side stub code, look for the call object and try: Call.getMessageContext().getRequestMessage().getSOAPEnvelope().getRecorder().clear(); -- Lyndon Tiu

Re: restarting axis from command line

2005-01-12 Thread Lyndon Tiu
Suzy Fynes wrote: Does anyone know how to restart axis from the commend line or any way with having to restart tomcat and not using tomcat manager? Windows or Linux? -- Lyndon Tiu

Re: Axis with HTTPS : What do I have to make ?

2005-01-06 Thread Lyndon Tiu
ot;C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf\ssl\server\server_truststore\cacerts" truststorePass="password" /> 3) On client (client-side tomcat) tomcat-users.xml, add the line (change "" to fit your environment): -- Lyndon Tiu

Re: Axis Memory Use

2005-01-05 Thread Lyndon Tiu
. Our server side seems fine. We are using 1.1. Any more thoughts? -- Lyndon Tiu

Axis Memory Use

2005-01-05 Thread Lyndon Tiu
Hello, I have an Axis application running on Tomcat. It seems to be a memory hog. I am wondering if anyone else here has experienced a similar issue and any steps you did to either solve or go around the problem. Thanks. -- Lyndon Tiu

Re: java.lang.OutofMemory in large SOAP message

2005-01-03 Thread Lyndon Tiu
If you can, try splitting up the results by requesting fewer records at a time. -- Lyndon Tiu

Axis Testing Tool

2004-12-27 Thread Lyndon Tiu
ering if there is anything out there that I can re-use. Thanks for any tips. -- Lyndon Tiu

Re: Axis SOAP over HTTPS

2004-12-22 Thread Lyndon Tiu
Note: This is for client-side authetication related to clientAuth in step #2. 4) Optionally, on server tomcat's server.xml: Comment out: port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort=&q

Re: webservices security

2004-12-15 Thread Lyndon Tiu
ivate" web services. We also use firewalls for "private" web services. -- Lyndon Tiu

Re: data validation

2004-12-14 Thread Lyndon Tiu
me form of error, you instantiate your Custom Exception class, put some debug message in it and throw it up the stack. -- Lyndon Tiu

Re: data validation

2004-12-14 Thread Lyndon Tiu
ound. -- Lyndon Tiu

Re: maintaining a database connection pool or a socket connection pool

2004-12-14 Thread Lyndon Tiu
cated under: /common/endorsed -- Lyndon Tiu

Re: .NET client

2004-12-14 Thread Lyndon Tiu
, it will be hard to determnine the issue. Your problem is typical of Java and C# iterop. No such things as easy. -- Lyndon Tiu

Re: More Newbie Wisdom

2004-12-10 Thread Lyndon Tiu
se64Binary element to an xsd:AnyType. Jeesh. -- Andy What happened? -- Lyndon Tiu

Axis-Admin with SSL

2004-12-06 Thread Lyndon Tiu
Hello, Anyone here every used the Axis-Admin servlet off an SSL connection? I am getting: server\build.xml [503] axis-admin failed with {http://schemas.xmlsoap.org/soap/envelope/}Server.userException java.lang.NumberFormatException: For input string: "" Thanks for any help. -- Lyndon Tiu

Re: Quality of Axis with respect to document and literal style

2004-12-05 Thread Lyndon Tiu
On December 5, 2004 04:23 pm, Michael Schuerig wrote: > On Sunday 05 December 2004 22:11, Lyndon Tiu wrote: > > On December 5, 2004 12:50 pm, Michael Schuerig wrote: > > > Does this result in sensible XML being transferred over the net? By > > > that I mostly mean

Re: Quality of Axis with respect to document and literal style

2004-12-05 Thread Lyndon Tiu
On December 5, 2004 12:50 pm, Michael Schuerig wrote: > On Sunday 05 December 2004 21:37, Lyndon Tiu wrote: > > With doc/lit, we found that we need to pass data structures back and > > forth in String array form. We cannot pass anything more complex > > (like Hashmaps of Hash

Re: Quality of Axis with respect to document and literal style

2004-12-05 Thread Lyndon Tiu
ave a lot of undefined behavior. I am wondering why axis still insists on use rpc as default as it does not scale well and is effectively useless in production environments with more than one concurrent hit? -- Lyndon Tiu

Re: Apache Soap VS Axis

2004-12-02 Thread Lyndon Tiu
but specifically within axis itself: Use wrapped doc/lit instead of rpc and you will notice a large performance improvement. -- Lyndon Tiu

WS-Security?

2004-11-29 Thread Lyndon Tiu
Hello, Has anyone here used WS-Security on Axis? Thanks. -- Lyndon Tiu

Custom headers for authentication?

2004-11-29 Thread Lyndon Tiu
Hello, Anyone here ever used custom soap headers for authentication purposes? How about WS-Security (Axis-WSSE)? Any tips and suggestions and comments about how well these work and how effective these are? Thanks. -- Lyndon Tiu

Re: Axis port 8443 SSL only

2004-11-29 Thread Lyndon Tiu
John Walker wrote: Comment out the Connector definition in the server.xml file under $CATALINA_HOME$/conf/server.xml Thanks. That worked. -- Lyndon Tiu

Axis port 8443 SSL only

2004-11-29 Thread Lyndon Tiu
authenticate client requests. Perhaps someone on this list can suggest how I can lock down Axis so that it will not respond to port 8080 client requests and will only respond to port 8443. Thanks so much. -- Lyndon Tiu

Re: Axis client SSL

2004-11-25 Thread Lyndon Tiu
Thank you. Your suggestion worked! -- Lyndon Tiu Alex Karshakevich wrote: Ususally this involves just changing the URL from http://... to https://..., no special programming needed. Only if you are using client certificates as well, you will need to set up some system properties

Axis client SSL

2004-11-25 Thread Lyndon Tiu
coding I need to do or will the WSDL auto generate this? Thank you for you time. -- Lyndon Tiu

HashMap of HashMaps

2004-11-23 Thread Lyndon Tiu
n of the Axis deserializers? Any suggestions would be appreciated. Thanks for your time. -- Lyndon Tiu