Why I can Send Mail Here -- Plz Help

Hi All,
I m trying to send Mails to multiple users with the MailerBackp.java. But it is trowing some exception in parsing the InternetAddress
import java.util.*;
import java.util.concurrent.*;
public class MailerBackup {
     private final FileCollection to;
     private static ArrayList<String> emails ;
     public MailerBackup(String addressFile){
          to = new FileCollection(addressFile);
          emails = new ArrayList<String>();
          //No of remaining emails.
          int remaining = to.size();
          System.out.println("Remaining is: "+remaining);
          int noOfmailAtATime = 500;
          int counter = remaining/noOfmailAtATime;
          System.out.println("Counter is == "+counter + "   no of Mails at a time =="+noOfmailAtATime);          
          String email= "";     
          int start = 0;
          int end  = 0;
          if(to.size()> noOfmailAtATime){
               end = noOfmailAtATime;
          }else{
               end = to.size();
          if(counter>=1){               
               for(int i=0; i<counter; i++) {     
                    System.out.println("i is : "+i);
                    System.out.println("Start is "+start+" and end is "+end);
                    for(int j=start; j<end; j++ ){
                         email = email + "," +to.get(j);     
                    start = end;                    
                    email = email.substring(1);
                    emails.add(email);
                    email = "";
                    if(i< counter-1){
                         end = end + noOfmailAtATime;     
          System.out.println("End is :"+end);          
          if(end < to.size()){
               int count = 0;
               System.out.println("Inside if");
               for(int i= end; i<to.size(); i++){
                    System.out.println();
                    email = email + "," +to.get(i);
                    count = i;     
               email = email.substring(1);               
               emails.add(email);
               email="";
               System.out.println("End is =="+count+" and to size is "+to.size());
    public static void main(String[] args) {
        try{
             BlockingQueue<Runnable> queue = new ArrayBlockingQueue<Runnable>(200);
             ThreadPoolExecutor executor = new ThreadPoolExecutor(50, 50, 1, TimeUnit.SECONDS, queue);
                if (args.length != 1) {
                     System.err.println("Usage: java ExecutorExample address_file" );
                     System.exit(1);
              MailerBackup mailer = new MailerBackup(args[0]);
              MailBean bean = null ;
              MailSender sender = null;
             long time = -System.currentTimeMillis();
             time += System.currentTimeMillis();              
//Here Emails is an ArrayCollection<String>, where each String consist of
//multiple comma seperated emails .
             for(int i = 0; i < emails.size(); i++){
                  bean = new MailBean();
                   bean.setSubject("Mail Bean Test");
                   bean.setMessage("Hi This is a Test Message, Please Ignore this Message");
                   System.out.println(emails.get(i));
                     bean.setTo(emails.get(i));
                     executor.execute(new MailSender(bean));
             System.out.println(time + "ms");
              System.out.println("Finished");          
        }catch(Exception ex){
             ex.printStackTrace();
}For sending Mails, My MailBeans send method is :
public Message createMessage(){
         try{              
              Message msg = new MimeMessage(session);
               msg.setFrom(InternetAddress.parse(FROM, false)[0]);
               msg.setHeader("X-Mailer", "VMailer");
               msg.setSentDate(new Date());
               if(getTo() != null || getTo() !="")
               msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(getTo(), false));
               if(getCc() != null || getCc() !="")
                    msg.setRecipients(Message.RecipientType.CC,InternetAddress.parse(getCc(), false));
               if(getBcc() != null || getBcc() !="")
                    msg.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(getBcc(), false));
               msg.setSubject(getSubject());
               msg.setText(getMessage());
               return msg;                        
         }catch(Exception ex){
              ex.printStackTrace();
         return null;          
    public void sendMessage(){
         try{
              Message msg = createMessage();
              transport.send(msg, msg.getAllRecipients());
         }catch(Exception ex){
              ex.printStackTrace();
    }Error is while parsing the Mails.
java.lang.NullPointerException
        at javax.mail.internet.InternetAddress.parse(InternetAddress.java:595)
        at javax.mail.internet.InternetAddress.parse(InternetAddress.java:555)
        at MailBean.createMessage(MailBean.java:123)
        at MailBean.sendMessage(MailBean.java:138)
        at MailSender.run(MailSender.java:11)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)DEBUG: setDebug: JavaMail version 1.4ea
DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
DEBUG SMTP: useEhlo true, useAuth true
DEBUG SMTP: trying to connect to host "email.vsginc.com", port 25, isSSL false
        at java.lang.Thread.run(Unknown Source)
java.lang.NullPointerException
        at MailBean.sendMessage(MailBean.java:139)
        at MailSender.run(MailSender.java:11)
        at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
        at java.lang.Thread.run(Unknown Source)
220 email.vsginc.com Microsoft ESMTP MAIL Service, Version: 6.0.3790.1830 ready at  Fri, 7 Sep 2007 09:19:00 -0400
DEBUG SMTP: connected to host "email.vsginc.com", port: 25

So what's in FROM?

Similar Messages

  • JSP Send Mail Application, plz help

    Hi,
    I have written a jsp send mail application, but it is giving error that NoSuchProviderException. What to do? Plz help. I m sending the code as below:
    <%@ page import="java.util.*, javax.mail.*,javax.mail.internet.*" %>
    <html>
    <head>
    <title>E-Mail Us</title>
    </head>
    <body bgcolor="white" text="#003399" >
    <%
    if(request.getMethod().equals("POST") )
    boolean status = true;
    String mailServer ="SMTP_HOST";
    String fnm = request.getParameter("fnm");
    String lnm = request.getParameter("lnm");
    String facility = request.getParameter("facility");
    String subject = request.getParameter("select");
    String fromEmail = "[email protected]";
    String toEmail = "[email protected]";
    String bccEmail = "[email protected]";
    String contact =request.getParameter("select2");
    String way =request.getParameter("way");
    String messageEnter = request.getParameter("message");
    try
    Properties props = new Properties();
         props.put("mail.smtp.host", mailServer);
    props.put("mail.smtp.auth", "true");
    Session s = Session.getInstance(props,null);
    MimeMessage message = new MimeMessage(s);
    InternetAddress from = new InternetAddress(fromEmail);
    message.setFrom(from);
    InternetAddress to = new InternetAddress(toEmail);
         InternetAddress bcc = new InternetAddress(bccEmail);
         message.addRecipient(Message.RecipientType.TO, to);
    message.addRecipient(Message.RecipientType.BCC, bcc);
    message.setSubject(subject);
         message.setSentDate(new Date());
    message.setText(messageEnter);
         message.setText(way);
         message.setText(contact);
         message.setText(facility);
         message.setText(fnm);
         message.setText(lnm);
         Transport transport = s.getTransport(mailServer);
    transport.connect(mailServer, "USER", "PASSWORD");
    transport.sendMessage(message, message.getAllRecipients());
    transport.close();
    catch(NullPointerException n)
    System.out.println(n.getMessage() );
         out.println(n.getMessage());
    out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");//you need to enter a message"+"</b></center>");
         out.println("<br><br><center><b>"+"You need to Enter a message"+"</b></center>");
    status = false;
    catch (Exception e)
    System.out.println(e.getMessage() );
         out.println("<br><br><br><br><center><b>"+"ERROR!!!"+"</b></center>");
    out.println("<br><br><center><b>"+"Your Message to " + toEmail +" and "+ bccEmail+ " failed, reason is: " + e);
    status = false;
    if (status == true)
    out.println("<br><br><center><b>"+"Your message to " + toEmail +" and "+ bccEmail+ " was sent successfully!"+"</b></center>");
    else
    %>
    <center>
    <h1>Contact Us</h1>
    <form method="post" name="mail" action="mail.jsp">
    <table border="0">
    <tr>
    <td><b>First Name :</b></td>
    <td><input type="text" name="fnm" size=24></td>
    </tr>
    <tr>
    <td><b>Last Name :</b></td>
    <td><input type="text" name="lnm" size=24></td>
    </tr>
    <tr>
    <td><b>Facility :</b></td>
    <td><input type="text" name="facility" size=24></td>
    </tr>
    <tr>
    <td><b>Subject :</b></td>
    <td> <select name="select">
              <option>-------------------------------</option>
    <option>Missing File</option>
    <option>Correction Issue</option>
    <option>Refer Us</option>
    <option>Miscellaneous</option>
    </select></td>
    </tr>
    <p>
    <tr>
    <td><b>Comments :</b></td>
    <td><textarea name="message" rows = "10" cols="50"></textarea></td>
    </tr>
    <tr>
    <td><b>Best way to contact :</b></td>
    <td>
    <select name="select2">
              <option>--------------</option>
              <option>Phone</option>
    <option>Email</option>
    <option>Fax</option>
    </select>
    <input type="text" name="way" size=24></td>
    </tr>
    </table>
    <p>
    <font face="Helvetica"><input type="submit"
    value="Submit" name="Command">
    </font>
    </form></center>
    <%
    %>
    </body>
    </html>

    Ur messaging server will not be up..
    regards
    shanu

  • JSP send mail exception,plz help

    Hi,
    I have written code for mail program in jsp but it gives "javax.mail.MessagingException: Exception reading response; nested exception is: java.net.SocketException: Connection reset "
    what will be the reason for this plz help.
    thanks

    restart your machine then it s will be corrected...i mean socketexception
    i have found my problem...its a problem about delaying emails like spam protection...ur mail server and and script must run on the same ip...and so my problem solved...
    maybe there is a trick for delaying emails even they dont run under the same ip but i dont know..!

  • Problem sending mail. Plz help me

    i need to send mails to the registered users.
    the mail server details are given as a part of it. i dont know how to use the given username/password for the mail server. using mail server name without the username and password resulted in the following exception.
    javax.mail.SendFailedException: Sending failed; nested exception is: javax.mail.MessagingException: Could not connect to SMTP host: mail.symphonicringtones.com, port: 25; nested exception is: java.net.ConnectException: Connection timed out: connect
    so how can i use the given username and password.
    regards,
    uresh

    First of all, this error is not an authentication error, it's a network error.
    The exception is telling you that java can't open a TCP socket to the given host on the given port. This is most likely due to one of two reasons:
    1. There is no process listening on that port on that host
    2. There is a firewall somewhere in between blocking tcp traffic
    First resolve the connection issue. To test if you are able to connect, just try to telnet in on port 25:
    telnet mail.symphonicringtones.com 25
    I just did this and got:
    220 helena.eroute.net ESMTP Sendmail 8.12.10/8.12.10; Thu, 18 Nov 2004 03:47:36 +1300
    So this means either it wasn't up when you tried, or your firewall is blocking it.
    Once you have solved this, then tackle your authentication issues. In order to authenticate you need to create a javax.mail.Authenticator instance, then use this when you create the javamail session.
    See:
    http://java.sun.com/products/javamail/javadocs/javax/mail/Authenticator.html
    and
    http://java.sun.com/products/javamail/javadocs/javax/mail/Session.html#getInstance(java.util.Properties,%20javax.mail.Authenticator)

  • TS4605 why cant i receive mail on my ipad from icloud, but I can send mails?

    Why can't I recieve mails on my ipad from icloud?  I can send mails no problems there.  This has only recently happened before it was working fine.  When I go to check for new mails I get the following message: Cannot Get Mail  The connection to the server failed.  Please help, this is very fustrating.

    I can hear that frustration for sure. I deal with it every day.
    I would continue to push the landline provider over and over and over. They provide you with the landline service. They cannot complete the call to your cell phone. Everyone else can. Therefore it is their responsibility to make it work or at least give you a reasonable detailed explanation as to why it doesn't work so you could at least take the next appropriate steps. Do you have a trouble ticket number with the landline provider? Make sure they give you a trouble ticket number if you don't. Without a trouble ticket number you will have to continually repeat yourself every time you call them. With a ticket number every time you call you could tell the technician to reference that ticket number.
    Like I said when you're talking with someone in a managerial position request that they do call traces while you are making the call from the landline in real time. They should be able to see what happens to the call as it comes into and leaves their network. If they give you any call clearing or failure codes please document them and repeat them here.
    I would also ask the Rep to also make a test call to your cell phone and see what happens. If they can and you can't then it is clearly a problem with a switch on their network.
    Good luck.
    P.s. I typed this whole message using dictation on my iPhone five so hopefully it all came out right if not I apologize if it sounds confusing.

  • I have 2 email addresses set up on my iphone 5, 1 can send mail and the other can't... have tried deleting and adding the account, no luck, have tried all suggestions... anyone help?

    I have recently purchased the iphone 5S and have two AOL email accounts set up on it. They could both receive and send mail on the first day, but from the second day only 1 can send mail (both still receive). I get an message saying "Unable to send mail. A copy has been placed in your Outbox. Sending the message content to the server failed." This has been the response now for 3 days and suddenly this morning, I was able to send an email from this account, but only the one and now it's back to that same message. I have deleted and added the account again, using various methods. I even reset my phone and set it all up again from beginning with no luck. It is very frustrating and I am unsure why I can't send from both accounts, especially being that they are the same provider. I have read forums and it appears many have this same problem and I wondered if anyone has had it recently on this phone and how they fixed it. Someone said just use the AOL app to send from this account, yes that can be done, but it's inconvenient having to sign in all the time when i have a mail app that should work automatically. Any suggestions would be welcomed!!

    I am not sure if this issue is going to help you but lets give it a try.
    I know that where im from, which is the Netherlands, I am not able to sent e-mails from my iPhone or any other mobile device by using 3G or a random WIFI acces point. The provider only allowes you to sent e-mails when you are connected to a network of there own. Which means if you have provider "101" and your email settings are set up for this provider in your iPhone but your using the network of a friend of yours which is provider "202" you cannot sent emails from his network. Though you can receive them you may not sent.
    As I said, I am not aware if this issue is the same for you totaly depents on the country and provider your using.

  • I own osx mountain lion with messages.When i go to create a new message i dont undrestand why you can send it to their email.also is it possible to send a message from my mac to another mac that has mountain lion. MacBook, OS X Mountain Lion, help me

    I own osx mountain lion with messages.When i go to create a new message i dont undrestand why you can send it to their email.also is it possible to send a message from my mac to another mac that has mountain lion.
    MacBook, OS X Mountain Lion, help me

    The recipient needs to have Messages set up with the e-mail. Check the image below:
    Hope it heps.
    JP

  • TS3276 I am no longer receiving my mail.  All my settings are the same and I can send mail.  The connection doctor says I am connected, but I am no longer receiving anything.  If you can help, I would appreciate it. Keep it simple, please.

    I am no longer receiving my mail.  All my settings are the same and I can send mail.  The connection doctor says I am connected, but I am no longer receiving anything.  If you can help, I would appreciate it. Keep it simple, please.

  • Cant retrieve e-mail, password wont authorise even though I can send mail.

    I have set up all settings, gone through all I can think of and I still cant get my mail either through Outlook express in classic or Mail. I get the message"the pop server "pop.tiscali.co.uk" rejected the password for user. I dont understand why I'm not the user and why I can send but not get mail...cos I'm still the user whether I send or receive. I have a pc which I am using to get my mail at the moment, which is on the same address and settings, but it just wont work with the Mac...any suggestions other than temper tantrums!! help me Please...

    You may have some password confusion going on here.
    You will have a password and username for your broadband connection. You would have entered this in the netgear router at some time to connect onto tiscali.
    The netgear router is the bit that contacts tiscali and makes the broadband connection with tiscali, not the mac.
    Your mac makes a connection with the netgear router with whatever password you might have given the router the router then allows the mac to route through to tiscali. This is where the 'purple ball with a yellow lightening pattern in the middle' come in - Internet Connect - it is one of the ways for establishing a connection with the outside world - in this case the netgear router. As long as you are able to access web pages with safari or whatever then you are logged onto your router and that is logged onto tiscali and its email server. (As long as the internet is working you could quit Internet Connect and ignore it)
    You may have a separate password and username for your email account at tiscali - this you should have entered in the mail preferences for you account details. Although tiscali allow you to have the same password and username for both the broadband connection and the email account.
    Anyway you originally said that you can send emails but not receive them.
    1. You are connected to tiscali broadband otherwise you would not be able to send emails.
    2. The problem lies with the settings on the mail setup. If you are able to receive emails on you pc then have a look at the settings on Outlook Express?? and see if they are the same as the settings on mac mail.
    3 Consider whether you are entering the correct password/username. You could check by going to the tiscali web page and logging into your email on the web.

  • Can't get mail or close mail program- can send mail

    Mail program shows spinny thing next to "inbox" forever but receives no new mail. Can't quit either- program hangs and must be force quit. Erased app and replaced with copy from other HD, same problem. Can send mail no problem. Can retrieve new email via web, not mail app. ISP says everything is cool their end. Can't reinstall because installed version is higher than system disc version. Help!

    Erased app and replaced with copy from other HD
    Bad idea.
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all filesystem issues, if any, move Mail from /Applications/ to the Trash, and reinstall it as described here:
    Custom installs in Mac OS X 10.4
    If the version of the system software on your installation disks is earlier than what you’re using now (and only in that case), then you must also reinstall the Combo Update for the type of computer and the version of Mac OS X you’re using, to bring Mail back in sync with the rest of the system:
    About the Mac OS X 10.4.8 Combo Update
    Mac OS X 10.4.8 Combo Update for PPC
    Mac OS X 10.4.8 Combo Update for Intel
    You may also want to read the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk before installing the update, no applications should be running while installing it, and you may experience unexpected results if you have third-party system software modifications (not normal applications) installed.
    The above won’t solve the problem, but will allow us to at least troubleshoot it properly. Post back with your observations when done. What type of account is this (POP, IMAP, .Mac)?

  • I can send mail but cannot receive it on my iMac since upgrading to Yosemite

    I can send Mail but I cannot receive it on my iMac Mail account, have checked all account information and it is correct.

    Hey phillipfrompaupack,
    I see that you are having issues with your mail in Yosemite. Here is an article for you that will help you troubleshoot these issues:
    OS X Mail: Troubleshooting sending and receiving email messages - Apple Support
    http://support.apple.com/en-us/ts3276
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Entourage prob:  I can send mail but checking for received mail crashes app

    This just started this afternoon and I have no idea how to fix it.
    I can send mail in Entourage without a problem. But once the autocheck goes or I click "Send & Receive", Entourage crashes with "The application Microsoft Entourage has unexpectedly quit."
    I've rebooted a few times, and it's not helping whatsoever.
    I don't know if it's a virus, or if my Entourage file is corrupt, or what.
    Any ideas? Thanks.
    iMac 1 GHz PowerPC G4   Mac OS X (10.3.9)   Entourage 10.1.0

    I have just tried changing my incoming server name to pop3.virginmedia.com and, hey presto, it's working. Heaven knows why it simply just stopped in the first place... thank you for looking, though!!

  • I can send mail...?

    I have an 10.7.4 server here at home.
    I am trying to setup mail. Mostly for iCal. Since the famialy is sharing a calender.
    So far I have a correct DNS setup, an MX record for my no-ip-domain.
    From the webmail I can send mail with the calender invite user.
    But I cannot receive mail. And thus the iCal invite thingie isnt working either.
    The worst part is that when I send a email from my @me.com adress it goes away and no error message what so ever.
    Nothing in the logs either. So I am stranded here... no idea what to do.
    Any help is appriciated.

    Strontium9:Of course.
    Camelot:
    I know that. Yesterday I finally got an error mail back from @me when I tried to send to my server.
    I got some leads in there, the main one being that this:
    the mail adress is:
    [email protected]
    And when I take reply on an message it try to send to:
    @zapto.org
    Explains alot!
    Now I am gonna go deep into Server Admin to see what is wrong here.
    Since all hte prefs are set to:
    myname.zapto.org

  • TS3899 Cannot send email from iPhone. Outgoing settings are correct. Checked against iPad setting which are OK and can send mail OK.

    Cannot send email from iPhone. Outgoing settings are correct. Checked them against iPad settings which are OK and can send mail. What can I do?

    For IOS7.02
    The user name and password are in two places. Make  sure they are correct in both locations.
    Settings>>Mail, Contacts, Calendars>>your email>>
    First spot is here under INCOMING MAIL SERVER
    Below this is OUTGOING MAIL SERVER
    Select: SMTP smtp.comcast.net>> PRIMARY SERVER :smtp.comcast.net>>second location of user name and password
    Here is the second place that the user name and password must be checked.
    I had changed my password in the first spot, but not the second spot. I had been receiving the same error message. This fixed my problem.

  • How can send mails using hotmail/rediffmail domain name?

    I have used the below code to send a mail using javamail API?Even when I am sending my application does not have notified any of error/exceptions,But the message is not reached to I have given receipient's address in the to field.
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class Sendmail1 extends HttpServlet {
    private String smtpHost;
    // Initialize the servlet with the hostname of the SMTP server
    // we'll be using the send the messages
    public void init(ServletConfig config)
    throws ServletException {
    super.init(config);
    smtpHost = config.getInitParameter("smtpHost");
    //smtpHost = "sbm5501";
    smtpHost = "www.rediffmail.com";
    public void doGet(HttpServletRequest request,HttpServletResponse response)
    throws ServletException, java.io.IOException {
    String from = request.getParameter("from");
    String to "[email protected]";
    String cc = "[email protected]";
    String bcc ="[email protected]";
    String smtp ="www.rediffmail.com";
    String subject = "hai";
    String text = "Hai how r u";
    PrintWriter writer = response.getWriter();
    if (subject == null)
    subject = "Null";
    if (text == null)
    text = "No message";
    String status;
    try {
    // Create the JavaMail session
    java.util.Properties properties = System.getProperties();
    if (smtp == null)
    smtp = "www.rediffmail.com";
    properties.put("mail.smtp.host", smtp);
    Session session = Session.getInstance(properties, null);
    //to connect
    //Transport transport =session.getTransport("smtp");
    //transport.connect(smtpHost,user,password);
    // Construct the message
    MimeMessage message = new MimeMessage(session);
    // Set the from address
    Address fromAddress = new InternetAddress(from);
    message.setFrom(fromAddress);
    // Parse and set the recipient addresses
    Address[] toAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.TO,toAddresses);
    Address[] ccAddresses = InternetAddress.parse(cc);
    message.setRecipients(Message.RecipientType.CC,ccAddresses);
    Address[] bccAddresses = InternetAddress.parse(to);
    message.setRecipients(Message.RecipientType.BCC,bccAddresses);
    // Set the subject and text
    message.setSubject(subject);
    message.setText(text);
    Transport.send(message);
    //status = "<h1>Congratulations,</h1><h2>Your message was sent.</h2>";
    } catch (AddressException e)
    status = "There was an error parsing the addresses. " + e;
    } catch (SendFailedException e)
    status = "<h1>Sorry,</h1><h2>There was an error sending the message.</h2>" + e;
    } catch (MessagingException e)
    status = "There was an unexpected error. " + e;
    // Output a status message
    response.setContentType("text/html");
    writer.println("<title>sendForm</title><body bgcolor= ><b><h3><font color=green><CENTER>CALIBERINFO.COM</CENTER></h3>Your message was sent to recepient(s).<br><font color=red>"+"\n"+to);
    writer.println("<br><br><a href=e:/mail/javamail/mail.html>back to compose</a>");
    writer.close();
    Please any one help me out from this probs.
    Awaiting for yours reply,
    or give me a reply to: [email protected]
    Regards,
    @maheshkumar.k

    Hi,
    how can send mails using hotmail/rediffmail domain name?In your java application,you specified www.rediffmail.com as your
    smtp server.But that is the address of that website.Try will a smtp
    server instead.For a list of free smtp servers,please visit http://www.thebestfree.net/free/freesmtp.htm
    Hope this helps.
    Good Luck.
    Gayam.Srinivasa Reddy
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support/

Maybe you are looking for

  • RDP no longer working

    We have a few people in the office running SP3 and this morning they were no longer able to RDP into remote systems. They would get the following error; "The Pre-release version of Remote Desktop Connection has expired. To download the full version o

  • Edit Chart of Account

    Hi Experts, I want to shift one GL account from assets to liabilities. The account which I want to transfer is a control accunt & also used in GL account determination, during implementation this account was wrongly placed in liabilities however this

  • Printing content in SpryTabbedPanels

    Does anyone have any idea how to disable the Spry script functions so that the content will linearize when using a print style sheet if one uses the SpryTabbedPanels widget? I need the tabs and panels to show on the screen, but the tabs to disappear

  • 11g: How to populate LOV from button click

    Hi, I want to populate a LOV when the user clicks a button (no af:inputlistofvalues is used) How to do this? regards Peter

  • A problem about ABAP Runtime Error

    Now i am responsible for writing a program, including an internal table, which will store 3 million Datensätze. But when ich ran this program, an error happened: Runtime Error: TSV_TNEW_PAGE_ALLOC_FAILED Short Text: No more storage space available fo