Re: Problem with Tomcat6 catalina.out

2015-04-01 Thread Yogesh Rao
Hello, Not sure if it would help but you could try installing crypto providers into the JRE extension directory (e.g. $JRE_HOME/lib/ext) which the tomcat is using and also an entry must be added to $JRE_HOME/lib/security/java.security. After this restart tomcat and check Regards, -Yogesh On Thu

Re: undefined method

2015-02-21 Thread Yogesh Rao
Hello Sean, If all the requests are originating from one browser then try running http watch or any other browser plugin of your preference to check the status codes for your request... Also another handy tool is nettool to sniff the requests.. Good luck! Regards, -Yogesh On Saturday, February

Re: tomcat crash problem (INTERNAL)

2014-10-05 Thread Yogesh Rao
Subbu, You either could analyse the applications heap usage as ognjen suggested or If possible try deploying the application with the latest release of tomcat 6 (6.0.41) . There could have been patches released which could have fixed the issue. Regards, -Yogesh On Fri, Oct 3, 2014 at 4:17 PM, Og

Re: java.lang.IllegalArgumentException at java.nio.Buffer.limit

2014-08-18 Thread Yogesh Rao
How about tracing the http request and response for the call made? Tip : adding a proxy wud help here to log the entire request. Regards, -Yogesh On Monday, August 18, 2014, John Smith wrote: > On Fri, Aug 8, 2014 at 9:10 AM, John Smith > wrote: > > > On Thu, Aug 7, 2014 at 5:28 PM, Filip Han

Re: java.lang.IllegalArgumentException at java.nio.Buffer.limit

2014-08-07 Thread Yogesh Rao
On closer look of the exception trace i do not think out.close() is causing this issue... Can you pass the xml as well for everyone to see the content being written? Regards, -yogesh On Friday, August 8, 2014, Yogesh Rao wrote: > Hi, > > I see out.close() in the writeXML method of you

Re: java.lang.IllegalArgumentException at java.nio.Buffer.limit

2014-08-07 Thread Yogesh Rao
Hi, I see out.close() in the writeXML method of yours.. I do not think you should be closing it. Can you try removing that and putting it to a test? Regards, -yogesh On Friday, August 8, 2014, Filip Hanik wrote: > if you could capture the XML that you are trying to write, we can put it > into

Re: Unable to deploy MBeans in Tomcat 7 using Modeler API

2014-08-07 Thread Yogesh Rao
nagedObject = new Hello(); String oname="Catalina:type=Hello"; registry.registerComponent( managedObject, oname, "org.example.mbeans.Hello" ); } catch (Exception e) { e.printStackTrace(System.err); } } } Thank you! Regards, -Yogesh On Wed, Aug 6, 2014 at 9:34 PM, Yogesh Rao w

Re: Unable to deploy MBeans in Tomcat 7 using Modeler API

2014-08-06 Thread Yogesh Rao
ble in the Registry.. Any ideas why ? Any pointers would be really helpful. Thank you! Regards, -Yogesh On Wed, Aug 6, 2014 at 6:19 AM, Yogesh Rao wrote: > Hi chris, > > Thank you for the quick reply. I will certainly look at the link > mentioned by you... Also let me know if you

Re: Unable to deploy MBeans in Tomcat 7 using Modeler API

2014-08-05 Thread Yogesh Rao
of the documentation. Regards, -yogesh On Wednesday, August 6, 2014, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Yogesh, > > On 8/5/14, 10:18 AM, Yogesh Rao wrote: > > I am trying to write a

Unable to deploy MBeans in Tomcat 7 using Modeler API

2014-08-05 Thread Yogesh Rao
Hi, I am trying to write a MBean using the Modeler API in tomcat. The details of my environment are as below:- Tomcat version : 7.0.54 JDK version : 1.7 OS : windows 7 The MBean written using Modeler API is not getting deployed and hence not showing up on JConsole. Following is the simple MBea