Seema Hemant

Greenhorn
+ Follow
since Mar 07, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Seema Hemant

Hi. I posted this under "Other Java Products and Servers" however I did not get any replies. So, trying my luck here. Here goes the issue:-

We have a client application hosted on a JRun server (shared server for multiple applications). We could see java.lang.OutOfMemoryError in the default log which is causing the application outages. Could you please let me know how to get rid of this error?

Also, if someone could let me know if there are any tools readily available to read/understand the trhead dump taken from JRun server.
13 years ago
We have a client application hosted on a JRun server (shared server for multiple applications). We could see java.lang.OutOfMemoryError in the default log which is causing the application outages. Could you please let me know how to get rid of this error?

Also, if someone could let me know if there are any tools readily available to read/understand the trhead dump taken from JRun server.

13 years ago
Suppose, I have a project using JSP/Servelet, Apache Tomcat 6.0, MySQL 5.0.
My project's URL is http://appname.domainname.com.

Now I want to convert it using SSL for security certificate.
Then URL should be https://appname.domainname.com.

What changes do I have to make for that?
Are there any changes from coding side also?
13 years ago
Hi All,

Could you please help me on the following:-

Multiple instances of the MDBs are getting created in parallel (1 on each instance) even though the max-pool-size is set to 1. Due to this, the messages from a queue are getting consumed in parallel - over the 2 instances of the server.How do i create a single instance of the MDB on glassfish cluster?
Note : We are using EJB3.0 and glassfish 2.1 which does not support @Singleton annotation.
Hi,

I am using top-down approach of webservices. I have written wsdl to generate sub-class of a main-class. main class is Account and sub-classes are DomesticAccount and InternationalAccount using <xs:extension base="tns:Account">. When I generate java code from wsdl, sub-classes are getting generated. I have a method with return type of only main class. So when i deploy this service and try to generate jar by pointing to server, I am not getting sub-classes in the jar, may be because they are not part of In Parameters OR Out Parameters of any method. I can use dummy methods to have sub-classes as in parameters and get them generated in the jar. But is there any other way to get sub-classes in the jar, which is rather a refined/perfect approach. Please let me know on this.



Also I am facing the same issue in bottom-up approach. I have the sub-classes which are not part of in parameters or out parameters any method so not getting generated in the deployed service jar and wsdl.



I am using JDK1.5 compiler and IBMWebsphere 6.1 server. Please let me know on this as soon as possible. My work got stuck because of this.

14 years ago