Suresh Babu Shanmugam

Greenhorn
+ Follow
since Dec 11, 2006
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 Suresh Babu Shanmugam

Thank you Jaikiran...!

Regards,
Suresh
13 years ago
Hi All,

We are using WebLogic 8.2 server for our project. We have JMSs and MDBs. In Weblogic, each queue can be configured for Time To Deliver Override. See attachement for the Time To Deliver Override configuration. More details on this click the following link http://download.oracle.com/docs/cd/E13222_01/wls/docs81/jms/implement.html. Using Time To Deliver Override, one can specify the schedule at which the queue should deliver the message to the MDB. Example: deliver message to MDB only from 9AM to 4PM.

Is there any similar feature available in JBOSS 5.1 GA?

Regards,
Suresh
13 years ago
Hi,

I worked for a MNC. Notice period was 3 months. i.e. Either serve 3 months notice period or pay 3 months basic salary. I gave 2 weeks notice period. Manager accepted it and waived my balance notice period.


Step 1: send a resignation mail to your manager.
Step 2: your manager will call you for the discussion. Negotiate with him for the earliest release. Ask him one week(No harm in asking one week if company policy says 3 months. There is a chance for full waiver of your notice period. just try..!!)
My opinion: If resigned, one should not stay more than 2 weeks in the company.
Step 3: upload your resignation details in your company's separation system. (Must for HR people to track)

These 3 steps should happen in maximum 3 days.

==================SAMPLE LETTER=========================
Dear <manager>,


I hereby tender my resignation from my position as System engineer. I request you to relieve me on or before 26th April 2008. During this period I will handover the charges as required.

It has been a genuine pleasure working for company during these past 2.5 years. I would like to thank you for the opportunity to be a part of your team.

your's sincerely
<name>
============================================================

All the best..!
[ May 19, 2008: Message edited by: Suresh Babu Shanmugam ]
15 years ago
Thank you very much for the reply.
[ April 27, 2007: Message edited by: Suresh Babu Shanmugam ]
16 years ago
Hi all,

1. What is Lightweight java object?
2. What is Heavyweight java object?
3. What is the difference between Lightweight java object and Heavy weight java object...??
4. Are these terms "heavyweight/lightweight" used for only AWT/Swing Or are these terms used in other java topics also???

Thank you for your reply.
16 years ago
Hi,
Schema export using Ant is giving problem. it is not exporting any database schema.

part of build.xml
Hi all,

I am new to hibernate. I am reading Java Persistence with Hibernate book. I was reading section Using Hibernate EntityManager. I am using ant to export the schema. but it is not doing so. After executing ant -verbose schemaexport when i tried to execute ant -verbose dbmanager it is not showing any table in database. Pls help me to run this small hello world application. :-(
j2sdkee-1_3_1-win.exe - Best for SCBCD 1.3
Hi All,

I have cleared SCBCD 1.3. I got 85%. I was expecting above 90%. :-( . Is this a good score..??
17 years ago
Hi Rahul,

1. The Client Calls this method to tell the container that he(client) is done using the bean's EJB Object reference:

Here, Client is done with EJBObject reference not with entity. So if remove method is called, Entity in Database will be deleted. #1 is applicable for Session Bean, where if client is done, he/she can call remove method. it is not possible with Entity Bean. No method for doing so in Entity Bean. :-)
1. No methods for this kind of task

2. ejbRemove()

3. setEntityContext()

4. ejbActivate()
[ February 28, 2007: Message edited by: Suresh Babu Shanmugam ]
Getting this ERROR

500 Servlet Exception
java.lang.NoClassDefFoundError: javax/activation/DataSource
at com.sun.mail.pop3.POP3Folder.createMessage(POP3Folder.java:276)
at com.sun.mail.pop3.POP3Folder.getMessage(POP3Folder.java:257)
at javax.mail.Folder.getMessages(Folder.java:857)
at com.enthuware.infra.email.SimpleEmailer.connectAndCheck(SimpleEmailer.java:85)
at com.enthuware.infra.email.SimpleEmailer.<init>(SimpleEmailer.java:39)
at _jsp._specialorders__jsp._jspService(_specialorders__jsp.java:85)
at com.caucho.jsp.JavaPage.service(JavaPage.java:61)
at com.caucho.jsp.Page.pageservice(Page.java:569)
at com.caucho.server.dispatch.PageFilterChain.doFilter(PageFilterChain.java:149)
at com.caucho.server.webapp.WebAppFilterChain.doFilter(WebAppFilterChain.java:163)
at com.caucho.server.dispatch.ServletInvocation.service(ServletInvocation.java:208)
at com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:259)
at com.caucho.server.port.TcpConnection.run(TcpConnection.java:332)
at com.caucho.util.ThreadPool.runTasks(ThreadPool.java:457)
at com.caucho.util.ThreadPool.run(ThreadPool.java:398)
at java.lang.Thread.run(Thread.java:534)


--------------------------------------------------------------------------------
Resin-3.0.10 (built Mon, 20 Dec 2004 01:12:17 PST)
Hi,

In home interface, in your case return type should be Collection not just String.


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

In Bean,


//Query for ejbSelectGetAllEmpNames SELECT OBJECT(m) FROM Employee m
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

//if Return EJBs Of Type is Remote
/*then at deploy time it says RemoteException Error processing ejb jar compilation failed*/
Should have remote interface for the Entity Bean. In your case, it should be Remote, because you are returning the Collection obtained from ejbselect method to a remote client

//if Return EJBs Of Type is None
If you give 'None' or 'Local', it will take it as 'Local'

Hope this reply helps you to resolve issues. If i am wrong please correct me.
[ February 19, 2007: Message edited by: Suresh Babu Shanmugam ]