Re: Axis2 Client performance issue - AxisConfiguration Caching

2007-03-07 Thread aravind1001
In our case, both the parameters don't change at all so I made it into a class variable. I am not sure whether it is multi-thread safe but should be ok since it is a read-only object tree. If the parameters do change just use the tuple (path, axis2xml) as key and ConfigurationContext as the key va

Re: Axis2 Client performance issue - AxisConfiguration Caching

2007-03-06 Thread aravind1001
Curtis, I faced the same problem. It also leaks around 250KB per call. Though I couldn't figure out the root set that is holding references to a lot of OMElementImpl and OMTextImpl objects. The JVM was also crashing every few days. Change the code generated to cache the ConfigurationContext and

[Axis2] Implement ACL using X.509 subject

2007-02-27 Thread aravind1001
Hi, I am trying to implement an ACL(access control list) based on the CN extracted out of the certificate that was used to sign a SOAP message. This will be executed after the signature verfication is successful. An easy way is to use HTTP authentication to implement this and use that identity in

[Axis2] Implement ACL using X.509 subject

2007-02-27 Thread aravind1001
[re-post. previous one seems lost] Hi, I am trying to implement an ACL(access control list) based on the CN extracted out of the certificate that was used to sign a SOAP message. This will be executed after the signature verfication is successful. An easy way is to use HTTP authentication to imp

[Axis2] Implement ACL using X.509 subject

2007-02-27 Thread aravind1001
Hi, I am trying to implement an ACL(access control list) based on the CN extracted out of the certificate that was used to sign a SOAP message. This will be executed after the signature verfication is successful. An easy way is to use HTTP authentication to implement this and use that identity in

[Axis2] trusted certificates

2007-02-21 Thread aravind1001
Hi, Is there a way to specify the list of trusted certificates/CAs in axis2.xml? Looking at the implementation of Merlin and also from testing it appears that Axis uses the JRE's cacerts and also the certificates in the "org.apache.ws.security.crypto.merlin.file" property. My goal is to control