Help for java mail

i want devloped java mail , what should i do

Everything you need is on the JavaMail web page, which was referred to
in the header to this forum. Did you see it?
http://java.sun.com/products/javamail

Similar Messages

  • Free SMTP server for Java mail testing

    Hi all,
    Are there any free SMTP servers that can be downloaded from the Net for Java mail. Thanks.
    Regards
    Ram

    I am sorry ..may be my question was not very clear. I do not have am SMTP host. I need an SMTP host to route emails...is that possible.
    If I have an SMTP host on my machine, then it will act as a router to route messages to other email severs like yahoo or hotmail.
    So the "from" will be a user from the SMTP host.i.e my machine user and the "to" will be some email "[email protected]" or "[email protected]".
    Is it posssible to route emails directly to any Yahoo or hotmail server using just java mail client?
    Thanks
    Regards
    RP

  • Call Oracle Help for Java in Oracle forms running in the web

    Hi, everyone,
    We are developing a web-enabled Oracle database application
    system. Oracle suggested us to use Oracle Help for Java(OHJ) to
    create an online help system for the web environment. We
    successfully created a OHJ program which can be independently.
    But we still have no idea how to call this OHJ program from the
    forms running in the web environment.
    Could anyone help us out?
    Thanks.
    null

    I would like to know if anyone has been able to do this too. Could someone respond if they have successfully gotten this to work?
    Thanks!!

  • Oracle Help for Java 4.2.0 and 4.1.17

    Attention to all: Oracle Help for Java 4.2.0 and 4.1.17 are now available for download at
    http://otn.oracle.com/software/tech/java/help/content.html
    OHJ 4.2.0 features a new Ice Browser and enhancements related to the known modal dialog problem. It requires JDK 1.3 and is a recommended upgrade for all clients using JDK 1.3 or higher.

    4.1.17 appears to work correctly with RoboHelp.
    4.2 gives an error when attempting to generate fts.idx via RoboHelp.

  • Using Apache Commons HTTPClient to create a custom socket for Java mail

    Does anyone know how to use Apache Commons HTTPClient to create a custom socket for Java mail. This is necessary for me to use NTLM authentication

    JavaMail doesn't use HTTP.
    If you want to add support for NTLM authentication to one of the standard protocols,
    your best bet is to create a SASL provider, although note that only JavaMail's IMAP
    provider uses SASL currently. The other protocols should add SASL support, but that
    hasn't been done yet.

  • Migrating from JavaHelp to Oracle Help for Java

    Currently we have a product in which we have implemented Sun Microsystem's JavaHelp as the Help delivery system. However, after evaluating Oracle Help for Java we would like to migrate from Javahelp to OHJ.
    My question is, how difficult would this migration be from the Development side? I have been reviewing the Oracle Help for Java Developer's Guide and comparing it against the JavaHelp documentation but I haven't been able to get a clear idea of how different the implementation is.
    Thanks,
    Theresa

    Hello Theresa,
    Thanks for considering Oracle Help.
    There isn't much you have to do with your source content and control files. With the exception of the full text search index, the Oracle Help control file formats (helpset, index, map, etc.) extend the JavaHelp formats. So you can use the JavaHelp control files as is, or you can extend them with the Oracle Help extensions. For a quick overview of differences, see the following page in the Oracle Help Guide:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Oracle Help File Formats."
    3. Click "Comparision to Javahelp File Formats."
    To create an Oracle Help full text search index, run through the Helpset Authoring Wizard and remove the existing JavaHelp search view and have the wizard generate an Oracle Help Search index
    on the following wizard page. For the Helpset Authoring Wizard doc:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Authoring Oracle Help Systems."
    3. Click "Using the HelpSet Authoring Wizard."
    Alternatively, change the helpset file by hand. For the doc:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Oracle Help File Formats."
    3. Click "Helpset File."
    Then run the indexer. For doc:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Authoring Oracle Help Systems."
    3. Click "Using the Full-text Search Indexer."
    On the development side, the APIs are different, but they are also very
    simple. You create a Help object, add HelpSets, and associate topic-ids
    with java UI components using the CSHManager as described in the
    Oracle Help Guide:
    1. Go to http://otn.oracle.com/ohguide/help/.
    2. Click "Oracle Help for Java Developer's Guide."

  • Urgent help on java mail

    Hi,
    I have one prob with java mail .. How do i display file content in email ...
    When i pass content as String(suppose hello) it displays hello in email ....How do i display file content in html form when user opens his email .....
    Any help on this i will appriciate ..........
    Thanks.

    Hi,
    I have one jsp file and this file includes some include files ......
    How do i send this jsp file as body of email using java mail ................
    I did this by hot coding the tags and content ... i have to read from jps file and this file include some images ...........
    Here is my code ... Please can any one help me ....
    import java.io.*;
    import java.util.Properties;
    import java.util.Date;
    import javax.mail.*;
    import javax.activation.*;
    import javax.mail.internet.*;
    public class sendhtml {
    public static void sendMess(String[] argv) {
    String to, subject = "hello", from = null,
    cc = null, bcc = null, url = null;
    String mailhost = "xx.xxx.xx.xx";
    String mailer = "sendhtml";
    String protocol = null, host = null, user = null, password = null;
    String record = null; // name of folder in which to record mail
    boolean debug = false;
    try {  
    to="[email protected]";
    Properties props = System.getProperties();
    // could use Session.getTransport() and Transport.connect()
    // assume we're using SMTP
    if (mailhost != null)
    props.put("mail.smtp.host", mailhost);
    // Get a Session object
    Session session = Session.getDefaultInstance(props, null);
    if (debug)
    session.setDebug(true);
    // construct the message
    Message msg = new MimeMessage(session);
    if (from != null)
    msg.setFrom(new InternetAddress(from));
    else
    msg.setFrom();
    msg.setRecipients(Message.RecipientType.TO,
    InternetAddress.parse(to, false));
    if (cc != null)
    msg.setRecipients(Message.RecipientType.CC,
    InternetAddress.parse(cc, false));
    if (bcc != null)
    msg.setRecipients(Message.RecipientType.BCC,
    InternetAddress.parse(bcc, false));
    msg.setSubject(subject);
    MimeMultipart mp = new MimeMultipart();
    mp.setSubType("related");
    MimeBodyPart mbp1= new MimeBodyPart();
    String html =
    "<html>"+
    "<head><title></title></head>"+
    "<body>"+
    "<b> see the following jpg : it is a car! !!!!!</b><br>"+
    "<a href=a.jsp>hello</a><br>"+
    "<img src=cid:123 >"+
    "<IMG SRC=cid:23 ><br>"+
    "<b> end of jpg</b>"+
    "<table><tr><td>"+
    "Every couple days for the next four weeks, we will send you new"+
    "can successfully sell your home.<br><br></td></tr>"+
    "<tr><td>"+
    "<p class=\"letter\">"+
         "saleMail Topics are: <br><br>"+
         "<ol class=\"letter\">"+
    "<li><b>Advertising Your Home: Part 2</b></li>"+
    "<li><b> Possibilities</b></li>"+
         "<li><b>Where Do You Go From Here?</b></li>"+
    "</ol>"+
    "<br><br></p></td></tr></table>"+
    "</body>"+
    "</html>";
    mbp1.setContent(html,"text/html");
    MimeBodyPart mbp2 = new MimeBodyPart();
    FileDataSource fds = new FileDataSource("/usr/local/images/dualsign.gif");
    mbp2.setFileName(fds.getName());
    mbp2.setText("This is a beautiful car !");
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setHeader("Content-ID","23");
    FileDataSource fds1 = new FileDataSource("/usr/local/images/logo.gif");
    mbp2.setFileName(fds1.getName());
    mbp2.setText("This is a beautiful car !");
    mbp2.setDataHandler(new DataHandler(fds1));
    mbp2.setHeader("Content-ID","123");
    mp.addBodyPart(mbp1);
    mp.addBodyPart(mbp2);
    msg.setContent(mp);
    msg.setSentDate(new Date());
    Transport.send(msg);
    System.out.println(mp.getCount());
    System.out.println("\nMail was sent successfully.");
    } catch (Exception e) {
    e.printStackTrace();

  • Error Service Component Container for Java Mailer is not running

    Hi,
    I installed Oracle Workflow 2.6.3 (Standalone) in Oracle Database 10g Release 1.
    Actually there was no problem during the installation.
    I have done the Setting Up from step 1 to 8.
    I'm going to do the step 9 (Implementing Notification Mailer).
    The problem is the Workflow Agent Listener WFALSNRSVC is not running
    and I cannot run it using the Oracle Workflow Manager.
    In the Oracle Workflow Manager there was 4 rows which related to the Container : WFALSNRSVC
    1. Workflow Deferred Agent Listener
    2. Workflow Deferred Notification Agent Listener
    3. Workflow Error Agent Listener
    4. Workflow Inbound Notification Agent Listener
    The status is : Stopped.
    I cannot run any of them.
    Although the Startup Mode is Automatic, but none of them is running.
    When I tried to push the Go button to Actions: Start, it showed this message
    An error has occured
    The Service Component Container is not running.
    And after I tried to configure the Workflow Notification Mailer using the wizard
    I didn't receive any e-mail after I push the Test Send Mail button.
    I read in another post in this forum.
    It states that when going to the Workflow Configuration Assistant (WFCA)
    we must give the right entry in the LDAP paramaters and Java Mailer parameters,
    otherwise those WFALSNRSVC and WFMLRSVC would never run eventhough we enter them in a later time.
    Actually I didn't provide the paramaters (both of them) since they are optional.
    My questions are:
    1. Is there another way to run those service (servlet)?
    I really need the Java Notification Mailer to send email.
    2. Should I uninstall and reinstall my Oracle Workflow and provide those paramaters?
    Do I have to uninstall and reinstall the Oracle Workflow Middle Tier too?
    3. Is it okay if I drop and cascade the OWF_MGR user (my Workflow Manager schema)
    and then I use the Workflow Configuration Assistant again and choose Install option
    to create the OWF_MGR schema?
    3. Are the LDAP and OID required before we use the Java Notification Mailer?
    Actually I didn't understand the use of LDAP and OID which required in the LDAP paramaters?
    Any help would be grateful.
    Thanks,
    Buntoro

    In the service components page click on any container, select stop all from the LOV and Go. Once all the containers Workflow Agent Listener Service,
    Workflow Document Web Services Service and Workflow Mailer Service are Deactivated then StartAll. After all the containers are started then check the components status.
    Still if they are running bounce the apache.

  • How to create help for java application

    Thanks very much for any suggestions how to create help file for java application

    how to set up the environment variable JAVAHELP_HOME

  • HELP FOR SOME MAIL app PROBLEMS IN MAVERICKS!

    As many of you, I was having great difficulty opening Apple's Mail app in Mavericks. The type of problem I was having is this:
    When trying to open Mail for the first time in Mavericks, I would get the message that the database needed to be upgraded; the process would start, but Mail would become unresponsive. The progress bar stopped in the middle and only a forced quit could close the application.
    I noticed the following:
    The actual files and folders in User/Library/Mail/V2, remained unchanged from the time before my attempt to open Mail, and for me no other changes were made.
    I took the opportunity to move a copy of the V2 Folder to my Desktop for safekeeping. Trying to open Mail without this folder just caused the app to ask me to designate my accounts anew, which I had no intention of doing.
    I then tried adding back items into the empty V2 folder.  Adding back all of the mail accounts and mailboxes except for the Mail Data folder had no effect, except that a new Mail Data folder was created, and the Mail app still asked me to designate my accounts anew.
    I then added back the first half of my old Mail Data folder contents and allowed the copy process to overwrite the files in the newMail Data folder; there was still a problem.
    Finally, I took the remaining files and one folder from my old Mail Data folder and added that to the new Mail Data folder. When I was asked to relpace matching folders and files I did that and whatever was left untouched by the file copy, I let stay there.
    The Yellow taged files were the first half I transferred back.
    As long as you have a protected copy of your Mail folder, you can try variations of the above. This is what worked for me, and I hope it is helpful to some or all of you.

    Finally I've figured out what happened for not syncing anymore what I did on the Mail.app mailbox of my Professional Exchange account.
    So, the problem was the MailTags plugin: http://www.indev.ca/MailTags.html
    I don't know if it was after the Trial Period that went rogue, or this has happen since the install, but when I've uninstalled it, it worked just fine.
    Hope this help someone with the same problem.

  • Exception in tomcat for java mail

    pls tell me wat kinds of exception occurs.
    i already set up all jar files in classpath .
    if some one know uri for the jakarta mail talglib.
    show me good idea
    cheers

    First link returned by Google for a search for "Jakarta Mail Taglib":
    http://jakarta.apache.org/taglibs/doc/mailer-doc/intro.html
    And don't waste your time setting a classpath for your application server.

  • Neccessary installation for java mail

    Hello Friends,
    I want to develop an java mail application then what is the neccesary installation we required.. i have jdk 1.6, Sun application server and i am working on netbeans, all protocol are enabled.... is it sufficient or not?

    The Sun application server (like all J2EE and Java EE
    application servers) includes JavaMail. No installation
    is required.
    Be sure to read the JavaMail FAQ.

  • Help needed for java mail services

    Hi All,
    I am new to JMS.Can u help me in getting some gud tutorial?
    Any help is appreciated.
    Thanx in advance....

    Hi Praveen,
    Go thru Google to get tuto.

  • Need help for sending mail

    Hi All,
    I am very new to java and javamail.i need to send an email for my application.I get null pointer exception in Transport.send(msg).package net.careertales.ejb.mdb;
    import javax.activation.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class EmailHelper {
         private static boolean      DEBUG            = true;
         private static Hashtable DEFAULT_SETTINGS = new Hashtable();
         static {
              DEFAULT_SETTINGS.put("mail.transport.protocol", "smtp");
              DEFAULT_SETTINGS.put("mail.smtp.host", "yourhostname");
              DEFAULT_SETTINGS.put("from", "[email protected]");
              DEFAULT_SETTINGS.put("body", "no body");
              DEFAULT_SETTINGS.put("subject", "no subject");
         public static void sendmail(Map mail) throws Exception {
              Properties props = new Properties();
              props.put( "mail.transport.protocol", EmailHelper.returnDefault(mail, "mail.transport.protocol") );
              props.put( "mail.smtp.host", EmailHelper.returnDefault(mail, "mail.smtp.host") );
              props.put("mail.smtp.auth", "true");
              Session session = Session.getDefaultInstance(props, null);
              if (DEBUG) {
                   session.setDebug(true);
                   Properties p = session.getProperties();
                   Enumeration e = p.propertyNames();
                   while (e.hasMoreElements()) {
                        String key = (String) e.nextElement();
                        System.out.println("Key: " + key);
                        System.out.println("Value: " + p.getProperty( key ));
              Message msg = new MimeMessage(session);
              msg.setFrom(new InternetAddress( EmailHelper.returnDefault(mail,"from") ) );
              msg.setRecipients(Message.RecipientType.TO, InternetAddress.parse(EmailHelper.returnDefault(mail,"to"), false));
              msg.setSubject(EmailHelper.returnDefault(mail,"subject"));
              msg.setSentDate(new Date());
              msg.setText(EmailHelper.returnDefault(mail,"body"));
              if( null != msg){
                   Transport transport = session.getTransport( "smtp" );
                   transport.connect( "hostname", "[email protected]", "password" );
                   Address addressList[] = msg.getAllRecipients();
                if (addressList != null && addressList.length > 0){
                                transport.sendMessage(msg, addressList);
                 else {
                     System.out.println("[NO_RECIPIENTS]");
         public static String returnDefault(Map map, String key) {
              String value = (String) map.get(key);
              String realValue = (String) ( (value == null) ? DEFAULT_SETTINGS.get(key) : value );
              return realValue;
         public static void main(String args[]) throws Exception {
              if (args.length == 0) {
                   System.exit(-1);
              Hashtable mail = new Hashtable();
              mail.put("to",      args[0]);
              if (args.length > 1) mail.put("from",    args[1]);
              if (args.length > 2) mail.put("subject", args[2]);
              if (args.length > 3) mail.put("body",    args[3]);
              EmailHelper.sendmail(mail);
    }I get the content of msg and addressList in transport.sendMessage(msg, addressList); getting printed in my console.Can any one help me to find what is wrong here.
    Thanks

    Hi,
    Thanks for your reply.I ckecked out the javamail.There is nothing related to my question.I have pasted the error code what i get in my console.[INFO][12-11-2007 10:47:20,784] [STDOUT] LoggerStream.java (152):235 Authentication successful
    [INFO][12-11-2007 10:47:20,787] [STDOUT] LoggerStream.java (152):messagejavax.mail.internet.MimeMessage@1f49f49
    *//This line prints my message part*
    [INFO][12-11-2007 10:47:20,787] [STDOUT] LoggerStream.java (152):subjectEmail Test
    *//This line prints my subject part*
    [INFO][12-11-2007 10:47:20,788] [STDOUT] LoggerStream.java (152):Recepients[Ljavax.mail.internet.InternetAddress;@da1622
    *//This line prints the recepients*
    [INFO][12-11-2007 10:47:20,789] [STDOUT] LoggerStream.java (152):From[Ljavax.mail.internet.InternetAddress;@1e343db
    *//This line prints the from part*
    [INFO][12-11-2007 10:47:20,789] [STDOUT] LoggerStream.java (152):address[Ljavax.mail.internet.InternetAddress;@17be5fc
    *//This line prints the Address part*
    [INFO][12-11-2007 10:47:20,790] [STDOUT] LoggerStream.java
    [ERROR][12-11-2007 10:47:20,838] [STDERR] LoggerStream.java (152):java.lang.NullPointerException *//This is the error i get in Tansport.send(msg) method*
    [ERROR][12-11-2007 10:47:20,839] [STDERR] LoggerStream.java (152):      at java.lang.String.concat(String.java:1827)
    [ERROR][12-11-2007 10:47:20,840] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.parseLine(MailcapFile.java:235)
    [ERROR][12-11-2007 10:47:20,841] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.parse(MailcapFile.java:197)
    [ERROR][12-11-2007 10:47:20,841] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.createMailcapHash(MailcapFile.java:157)
    [ERROR][12-11-2007 10:47:20,842] [STDERR] LoggerStream.java (152):      at com.sun.activation.registries.MailcapFile.<init>(MailcapFile.java:40)
    [ERROR][12-11-2007 10:47:20,843] [STDERR] LoggerStream.java (152):      at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:276)
    [ERROR][12-11-2007 10:47:20,843] [STDERR] LoggerStream.java (152):      at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
    [ERROR][12-11-2007 10:47:20,844] [STDERR] LoggerStream.java (152):      at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
    [ERROR][12-11-2007 10:47:20,845] [STDERR] LoggerStream.java (152):      at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
    [ERROR][12-11-2007 10:47:20,849] [STDERR] LoggerStream.java (152):      at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
    [ERROR][12-11-2007 10:47:20,850] [STDERR] LoggerStream.java (152):      at javax.activation.DataHandler.writeTo(DataHandler.java:294)
    [ERROR][12-11-2007 10:47:20,850] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeUtility.getEncoding(MimeUtility.java:230)
    [ERROR][12-11-2007 10:47:20,851] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1065)
    [ERROR][12-11-2007 10:47:20,851] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:1923)
    [ERROR][12-11-2007 10:47:20,852] [STDERR] LoggerStream.java (152):      at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1904)
    [ERROR][12-11-2007 10:47:20,852] [STDERR] LoggerStream.java (152):      at javax.mail.Transport.send(Transport.java:79)
    [ERROR][12-11-2007 10:47:20,853] [STDERR] LoggerStream.java (152):      at net.careertales.ejb.mdb.EmailHelper.sendmail(EmailHelper.java:115) *//This line is the Error.It Shows in Transport.send(msg)*
    [ERROR][12-11-2007 10:47:20,853] [STDERR] LoggerStream.java (152):      at net.careertales.ejb.mdb.MessageDrivenServiceBean.onMessage(MessageDrivenServiceBean.java:99)
    [ERROR][12-11-2007 10:47:20,854] [STDERR] LoggerStream.java (152):      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [ERROR][12-11-2007 10:47:20,854] [STDERR] LoggerStream.java (152):      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [ERROR][12-11-2007 10:47:20,855] [STDERR] LoggerStream.java (152):      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [ERROR][12-11-2007 10:47:20,855] [STDERR] LoggerStream.java (152):      at java.lang.reflect.Method.invoke(Method.java:585)
    [ERROR][12-11-2007 10:47:20,856] [STDERR] LoggerStream.java (152):      at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    [ERROR][12-11-2007 10:47:20,856] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:495)
    [ERROR][12-11-2007 10:47:20,857] [STDERR] LoggerStream.java (152):      at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)
    [ERROR][12-11-2007 10:47:20,857] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:116)
    [ERROR][12-11-2007 10:47:20,858] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    [ERROR][12-11-2007 10:47:20,858] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    [ERROR][12-11-2007 10:47:20,859] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
    [ERROR][12-11-2007 10:47:20,859] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    [ERROR][12-11-2007 10:47:20,860] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:109)
    [ERROR][12-11-2007 10:47:20,864] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    [ERROR][12-11-2007 10:47:20,864] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:136)
    [ERROR][12-11-2007 10:47:20,865] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:402)
    [ERROR][12-11-2007 10:47:20,865] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.Container.invoke(Container.java:954)
    [ERROR][12-11-2007 10:47:20,866] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:987)
    [ERROR][12-11-2007 10:47:20,866] [STDERR] LoggerStream.java (152):      at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1287)
    [ERROR][12-11-2007 10:47:20,867] [STDERR] LoggerStream.java (152):      at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:266)
    [ERROR][12-11-2007 10:47:20,867] [STDERR] LoggerStream.java (152):      at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:902)
    [ERROR][12-11-2007 10:47:20,868] [STDERR] LoggerStream.java (152):      at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:170)
    [ERROR][12-11-2007 10:47:20,868] [STDERR] LoggerStream.java (152):      at org.jboss.mq.SpySession.run(SpySession.java:323)
    [ERROR][12-11-2007 10:47:20,869] [STDERR] LoggerStream.java (152):      at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:194)
    [ERROR][12-11-2007 10:47:20,869] [STDERR] LoggerStream.java (152):      at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
    [ERROR][12-11-2007 10:47:20,870] [STDERR] LoggerStream.java (152):      at java.lang.Thread.run(Thread.java:595)
    [INFO][12-11-2007 10:47:20,870] [STDOUT] LoggerStream.java I dont know what is going on wrong here.Can you help me to find out the solution.Thanks in advance.

  • Devoloping project help for java projects

    hi
    we have done a project using java swings. now we need to provide project help documentation, and
    that help should be accessed from the menu.
    can u please give me any approch for this?
    thank u
    sarabh.

    You can start from this point.
    http://java.sun.com/developer/JDCTechTips/2002/tt0423.html

Maybe you are looking for