When will come this error Could not connect to SMTP host: son1175, port: 25

Hi all
we configure SMTP server on Linux ES,my java application run on same server
from my application trying to send a mail i got this error
[0] EmailConnection.getConnection: Attempting connection...
DEBUG: setDebug: JavaMail version 1.3.1
DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
DEBUG SMTP: useEhlo true, useAuth false
DEBUG SMTP: trying to connect to host "son1175", port 25
[0] EmailConnection.getConnection: Cannot connect to server with configuration
smtp://padmanab:*@son1175/. Port = 25. Security: none.
Properties: {mail.port=25, mail.smtp.timeout=30000, mail.smtp.connectiontimeout=30000}
Could not connect to SMTP host: son1175, port: 25;
nested exception is:
java.net.ConnectException: Connection refused
2005-03-30 10:03:03,751 INFO [plt.userManagement] [PoolThread-9] "Password Reset" email could not be sent to vallish at the email address, "[email protected]".
but mail server is configured currectly
please tell cause of this error out java application or my SMTP server
regards
satya

Could not connect to SMTP host: son1175, port: 25;
nested exception is:
java.net.ConnectException: Connection refusedYou didn't notice that this question is asked every day here?
Your computer can't connect to a computer named "son1175", or if it can then that computer isn't running a server listening at port 25. Talk to your network people if your computer name is the right one and ask them why not. It is nothing to do with programming.

Similar Messages

  • Javax.mail.MessagingException: Could not connect to SMTP host:

    here is a part of my code
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class Mail {
    /** Creates a new instance of PostMail */
    public Mail() {
    public void postMail( String recipients[ ], String subject, String message , String from) throws MessagingException
    boolean debug = false;
    //Set the host smtp address
    Properties props = new Properties();
    props.put("mail.smtp.host", "smtp."_____".com");
    // create some properties and get the default Session
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(debug);
    // create a message
    Message msg = new MimeMessage(session);
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++)
    addressTo[i] = new InternetAddress(recipients);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Optional : You can also set your custom headers in the Email if you Want
    msg.addHeader("MyHeaderName", "myHeaderValue");
    // Setting the Subject and Content Type
    msg.setSubject(subject);
    msg.setContent(message, "text/plain");
    Transport.send(msg);
    Here is the exception i rec'vd
    javax.mail.MessagingException: Could not connect to SMTP host: smtp.google.com, port: 25;
    nested exception is:
    java.net.ConnectException: Connection refused: connect
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1282)
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:370)
    at javax.mail.Service.connect(Service.java:275)
    at javax.mail.Service.connect(Service.java:156)
    at javax.mail.Service.connect(Service.java:105)
    at javax.mail.Transport.send0(Transport.java:168)
    at javax.mail.Transport.send(Transport.java:98)
    at Mail.postMail(Mail.java:45)
    at ArchMain.<init>(ArchMain.java:30)
    at ArchMain$6.run(ArchMain.java:360)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:519)
    at java.net.Socket.connect(Socket.java:469)
    at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:232)
    at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:189)
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1250)
    ... 17 more

    package MailDao;
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    import java.io.*;
    import java.text.*;
    import java.text.DateFormat.* ;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.activation.*;
    import javax.mail.search.*;
    import java.util.Vector.*;
    import java.sql.*;
    public class SendMail {
    String SMTP_HOST_NAME = "smtp.techpepstechnology.com";//smtp.genuinepagesonline.com"; //techpepstechnology.com";
    String SMTP_AUTH_USER = "[email protected]"; //[email protected]"; //techpeps";
    String SMTP_AUTH_PWD = "demo"; //techpeps2007";
    public void postMail( String recipients[ ], String subject,
    String message , String from,String msgType) throws MessagingException {
    boolean debug = false;
    Properties props = System.getProperties();
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.smtp.host", SMTP_HOST_NAME);
    props.put("mail.smtp.auth", "true");
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getInstance(props, auth);
    session.setDebug(debug);
    // create a message
    MimeMessage msg = new MimeMessage(session);
    // MimeMessage mimemessage = new MimeMessage(simplemailuser.getSession());
    // set the from and to address
    InternetAddress addressFrom = new InternetAddress(from);
    msg.setFrom(addressFrom);
    InternetAddress[] addressTo = new InternetAddress[recipients.length];
    for (int i = 0; i < recipients.length; i++) {
    addressTo[i] = new InternetAddress(recipients);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    // Setting the Subject and Content Type
    msg.setSubject(subject);
    if(msgType.equalsIgnoreCase("")) {
    //mimemessage.setText(s4);
    msg.setContent(message, "text/plain");
    else {
    MimeBodyPart textBodyPart = new MimeBodyPart();
    textBodyPart.setText(message);
    MimeBodyPart fileBodyPart = new MimeBodyPart();
    FileDataSource fds = new FileDataSource(msgType);
    fileBodyPart.setDataHandler(new DataHandler(fds));
    fileBodyPart.setFileName(fds.getName());
    //step:5 create the multipart/container to hold the part
    Multipart container = new MimeMultipart();
    container.addBodyPart(textBodyPart);
    container.addBodyPart(fileBodyPart);
    //step:6 add the multipart to the actual message
    msg.setContent(container);
    try{
    Transport transport=session.getTransport("smtp");
    transport.connect();
    transport.send(msg);
    transport.close();
    }catch(Exception e) {
    e.printStackTrace();
    private class SMTPAuthenticator extends javax.mail.Authenticator {
    public PasswordAuthentication getPasswordAuthentication() {
    String username = SMTP_AUTH_USER;
    String password = SMTP_AUTH_PWD;
    return new PasswordAuthentication(username, password);
    public static void main(String arg[]) {
    SendMail sm = new SendMail();
    String[] s ={"[email protected]"};
    try{
    sm.postMail(s,"hello","This is testing of mail","[email protected]","");
    catch(Exception e)
    e.printStackTrace();
    //sm.sendMsg("demo", "demo");
    System.out.println("Mail Sent");
    i also got the follwing error this code work fine in jcreator but i used this in netbeans it throws a exception
    plz.....help
    javax.mail.MessagingException: Could not connect to SMTP host: smtp.techpepstechnology.com, port: 25;
    nested exception is:
    java.net.ConnectException: Connection refused: connect
    at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:867)
    Mail Sent
    at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:156)
    at javax.mail.Service.connect(Service.java:256)
    at javax.mail.Service.connect(Service.java:135)
    at javax.mail.Service.connect(Service.java:87)
    at com.sun.mail.smtp.SMTPTransport.connect(SMTPTransport.java:93)
    at MailDao.SendMail.postMail(SendMail.java:86)
    at MailDao.SendMail.main(SendMail.java:110)

  • PHP Soap error Could Not connect to host

    Hi all, this is my first time on this forum so I hope I am not doing anything stupid.
    I have a wsdl file in my local server, when I try to access the code I get error could not connect to the host each time. I thought this was my programming mistake until I tested it on my ubuntu and windows server, It seems to be working fine on them. Is there something that I should enable some module or port ( I already have my soap extension loaded in php). Please help me out with this.
    Last edited by rohankoid (2012-04-16 05:05:22)

    Hi,
    Welcome to the    Discussions
    At one time Google(Talk) only offered the service to Google Mail accounts with either @gmail.com or @googlemail.com endings.
    Nowadays they also offer Google IDs that can then be made to work as GoogleTalk IDs.
    These are the iChat 3 instructions http://www.google.com/support/talk/bin/answer.py?answer=24076 with pics.
    In iChat 3 there was no GoogleTalk option and was added as Jabber ID and then you had to change the Server name (it presumed that it was either gmail.com as Defcom shows or googlemail.com) by taking the end of your Google Mail ID and puling it though to the Server Name box.
    In iChat 4 and 5 there is a Google ID option and this will set the Server as talk.google.com as you list.
    Google allows Port 443 to be used and the gmail.com as server name
    My Current Settings
    NOTES.
    Based on the Google Instructions your Name in iChat must match the ID you see when you login in to the Google Mail page (Or web site).
    The Mail App seems to cope with either and grab your mail for download but iChat prefers that you use the one as Listed.
    Also on your Google Account have you enabled TALK ?
    You need to do this first.
    8:24 PM Tuesday; March 16, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • ERROR: Could not connect to WhatsApp service. Please try again later.

    Hi,
    Today there was a connection error with WhatsApp. I needed to send something, so decided to delete and then reinstall the app to try and attempt to fix the connection problem. I am using the iPhone 5C.
    Once I redownloaded the app, I opened it and the app asked me for my phone number. I typed it in.
    But to my surprise, I got this error:
    Could not connect to WhatsApp service. Please try again later.
    After several attempts of writing my phone number (100% in the correct format) I had found no luck or success.
    Anyone else having this error, or is it just me? Please provide some steps on how to fix this if so!
    Thank you

    Thank you for the heads up. It seems like it's working now.
    For everyone with this problem please thank AlbertoRuperto and follow these steps:
    1. Restart your iPhone.
    2. Open WhatsApp.
    3. Enter your phone number.
    4. Enter verification code (if you're a new member) or just click 'Next' if you're a returning user.
    5. Done! All your contacts should be there and your chats (as long as you backed them up).
    P.S. This only applies to people who redownloaded and are stuck on phone verification page.

  • Javamail could not connect to SMTP Server

    Hi, I was bored and decided to create a small email application.
    I tryed to connect to my ISP's SMTP Server but I get the following MessagingException
    I don't know but I think my problem lies within my Authenticator class.
    Please tell me if I am correct and how I would fix it.
    create email -      true
    send   email -      false
    javax.mail.MessagingException: Could not connect to SMTP host: smtp.telkomsa.net, port: 25, response: -1
            at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1379)
            at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412)
            at javax.mail.Service.connect(Service.java:288)
            at javax.mail.Service.connect(Service.java:169)
            at javax.mail.Service.connect(Service.java:118)
            at javax.mail.Transport.send0(Transport.java:188)
            at javax.mail.Transport.send(Transport.java:118)
            at EMAIL.Email.send(Email.java:101)
            at ENTRY.Start.main(Start.java:15)here is part of my code:
        public boolean createEmail(){
            try{
                props.setProperty( "mail.smtp.host", AddressBook.getHost() );
                session = Session.getDefaultInstance( props,(Authenticator)new MyAuthenticator());
                message = new MimeMessage( session );
                message.setText( text );
                message.setSubject( subject );
                if( AddressBook.containsEntry( from ) ){
                    message.setFrom( new InternetAddress( AddressBook.getAddress( from ) ) );
                } else {
                    if( AddressBook.isValidEmailAddress( from ) ){
                        message.setFrom( new InternetAddress( from ) );
                    } else {
                        throw new Exception( "\"From\" address not valid" );
                for( String recipient : to ){
                    message.addRecipient( Message.RecipientType.TO, new InternetAddress( recipient ) );
                for( String recipient : cc ){
                    message.addRecipient( Message.RecipientType.CC, new InternetAddress( recipient ) );
                for( String recipient : bcc ){
                    message.addRecipient( Message.RecipientType.BCC, new InternetAddress( recipient ) );
                return true;
            }catch( Exception ex ){
                ex.printStackTrace();
                return false;
            return true;
        public boolean send(){
            try{
                Transport.send( message );
                return true;
            }catch( Exception e ){
                e.printStackTrace();
                return false;
        }Authenticator class
    import javax.mail.Authenticator;
    public class MyAuthenticator extends Authenticator{
        @Override
        protected PasswordAuthentication getPasswordAuthentication(){
            return new PasswordAuthentication( "[email protected]", "xxxxxxxx" );
    }

    I have muiltiple for gmail, telkom (My ISP) and work.
    When I try it through gmail it worx but my ISP's smtp host still bounces the message:
    Email recieved from [email protected]
    [email protected] to me
    show details 10:31 PM (10 minutes ago) Reply
    Hi. This is the qmail-send program at telkomsa.net.
    I'm afraid I wasn't able to deliver your message to the following addresses.
    This is a permanent error; I've given up. Sorry it didn't work out.
    Your message was bounced by our server.
           If you have any other queries please contact our support:
    TelkomInternet Support Desk Number: 10215
    TelkomInternet Support Desk Mail: [email protected]
    <[email protected]>:
    Warning: undefined mail delivery mode: normal (ignored).
    The users mailfolder is over the allowed quota (size). (#5.2.2)
    --- Below this line is a copy of the message.
    Return-Path: <[email protected]>
    Received: (qmail 18884 invoked from network); 23 Nov 2008 20:31:06 -0000
    Received: from unknown (HELO ironport1.telkomsa.net) ([xxx.xx.xxx.xxx])
             (envelope-sender <[email protected]>)
             by O (qmail-ldap-1.03) with SMTP
             for <[email protected]>; 23 Nov 2008 20:31:06 -0000
    X-IronPort-Anti-Spam-Filtered: true
    X-IronPort-Anti-Spam-Result: ArwAANpLKUlIDszicWdsb2JhbACSSlQ+AQwKCQkPBa47gQKJfAEDAQOCeQ
    Received: from qb-out-0506.google.com ([72.14.204.226])
    by ironport1.telkomsa.net with ESMTP; 23 Nov 2008 22:31:01 +0200
    Received: by qb-out-0506.google.com with SMTP id f29so1924750qba.33
           for <[email protected]>; Sun, 23 Nov 2008 12:30:59 -0800 (PST)
    DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
           d=gmail.com; s=gamma;
           h=domainkey-signature:received:received:cc:message-id:subject
            :mime-version:content-type:content-transfer-encoding:from:date;
           bh=ip5PW6igBRoELerpvPl2DF77VNe5JC4vopdDoV6lpjY=;
           b=TU+Y61W432FfMIYvEmhD2r6eBDdrure+Ax+U4FIi7El3vHt2AES+mb3I2qsvvhyiAy
            CJhqO7FzQakkIkRGIWJOf4ghjrk6e6K1XIBvprPRSABVF/TvqpyFKaVc3tXJ7isW13Nh
            9Ad0Zn6/2dYjM+awXmEnzeDut5l9JB7kOApDw=
    DomainKey-Signature: a=rsa-sha1; c=nofws;
           d=gmail.com; s=gamma;
           h=cc:message-id:subject:mime-version:content-type
            :content-transfer-encoding:from:date;
           b=S8/unLzvAR7/+c1KB3PGimhO4StOsIE0r2S39oEaYLZI8jCP5F/vJg5wc/LfK2gsi3
            KypsThXRKgcjREtjmQPltOdqZhgwf+QJXW/Tg6zFaMRswgJFqig8aeY+uFddCaYTrxoc
            EtYglspCmhfJfUleh7ioCoW2w8G71rcLcN1qA=
    Received: by 10.64.184.18 with SMTP id h18mr2648302qbf.27.1227472259580;
           Sun, 23 Nov 2008 12:30:59 -0800 (PST)
    Return-Path: <[email protected]>
    Received: from 5200am2x64bit ([41.246.118.18])
           by mx.google.com with ESMTPS id p27sm3343039qbp.16.2008.11.23.12.30.57
           (version=SSLv3 cipher=RC4-MD5);
           Sun, 23 Nov 2008 12:30:58 -0800 (PST)
    Cc: [email protected]
    Message-ID: <8694729.0.1227472251250.JavaMail.NEIL@5200am2x64bit>
    Subject: My First Email
    MIME-Version: 1.0
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    From: [email protected]
    Date: Sun, 23 Nov 2008 12:30:58 -0800 (PST)
    - Show quoted text -
    Hello this is a email

  • JavaMail MessagingException: could not connect to SMTP

    Hello, I am getting this exception when i run my program.
    Exception in thread "main" javax.mail.MessagingException: Could not connect to SMTP host: mail.smart.com.ph, port: 25, response: -1
         at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1379)
         at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:412)
         at javax.mail.Service.connect(Service.java:310)
         at javax.mail.Service.connect(Service.java:169)
         at javax.mail.Service.connect(Service.java:118)
         at javax.mail.Transport.send0(Transport.java:188)
         at javax.mail.Transport.send(Transport.java:118)
         at sendEmail.postMail(sendEmail.java:136)
         at sendEmail.main(sendEmail.java:99)
    I dont know what response: -1 means. Does anyone know what this means? Thanks in advance. By the way, is port 25 the default port that all SMTps listen to?

    Additional info, I've tried another SMTP and port, but I think the program just hangs.
    The SMTP that I'm using is from my Outlook.. From the Mail Setup > Microsoft Exchange Server. And I got the port by running the command prompt > netstat.

  • I've got a problems with my Iphone 4, I've recently upgraded to the new software (5.1), since then the iTunes doesn't recognize my iphone, as the error comes up:' iTunes could not connect to this iPhone because an unknown error (ex8000022)

    I've recently upgraded to the new software (5.1), since then the iTunes doesn't recognize my iphone, as the error comes up:' iTunes could not connect to this iPhone because an unknown error (ex8000022).
    Are you guys facing the same problem?
    Let me know your opinions, solutions and even problems.
    Thank You !

    http://support.apple.com/kb/HT4137
    How to restore as new.
    and this for itunes message
    http://support.apple.com/kb/HT1808

  • I Have a iPhone 4s and I keep getting this error "Could not activate cellular data network" I have sprint and to use any internet om my iphone i have to connect to wifi. What do i do to fix my celluar connection. I took my sim card and put it back in.

    I Have a iPhone 4s and I keep getting this error "Could not activate cellular data network" I have sprint and to use any internet om my iphone i have to connect to wifi. What do i do to fix my celluar connection. I took my sim card and put it back in and it still didnt work.

    Davidb24 wrote:
    Ok but im not the one who pays tge sprint bill
    Apparently, no one pays it... That's why they shut off your service.

  • EAS server error: Could not connect to administration Server

    Hi,
    I have installed Hyperion suite in Windows server 2008 R2. It was working fine but now when i tried to login in to the EAS console, I am getting the following error:
    "Server Error: Could not connect to administration server".
    I tried accessing the same through the web URL and I found "404 error - file or directory not found".
    I verified all my services are up and running fine. I am able to connect to the essbase sever through Excel as well as planning.
    The log retireved from the HyS9eas-sysout.log file is below:
    <Sep 11, 2013 7:06:56 AM JST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Sep 11, 2013 7:06:57 AM JST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Sep 11, 2013 7:06:58 AM JST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.0.2-11-135406-1.6.0_20-20100624-2119-windows-x86_64 from Oracle Corporation>
    <Sep 11, 2013 7:07:04 AM JST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.4.0  Fri Dec 17 20:47:33 PST 2010 1384255 >
    <Sep 11, 2013 7:07:15 AM JST> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://localhost:7001.>
    <Sep 11, 2013 7:07:15 AM JST> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>
    <Sep 11, 2013 7:07:15 AM JST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Sep 11, 2013 7:07:15 AM JST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Sep 11, 2013 7:07:16 AM JST> <Notice> <LoggingService> <BEA-320400> <The log file E:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Sep 11, 2013 7:07:16 AM JST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to E:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log00410. Log messages will continue to be logged in E:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log.>
    <Sep 11, 2013 7:07:16 AM JST> <Notice> <Log Management> <BEA-170019> <The server log file E:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log is opened. All server side log events will be written to this file.>
    <Sep 11, 2013 7:07:48 AM JST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Sep 11, 2013 7:07:56 AM JST> <Warning> <JTA> <BEA-110503> <The migrator(the AdminServer for manual JTA migration policy, or the Singleton Master for automatic JTA migration policy) is not available. Will skip JTA TRS failback because isStrictOwnershipCheck is [false]. This may lead to potencial TLOG corruption if TRS of EssbaseAdminServices0 has been migrated to backup server and the backup server is accessing the TLOG of EssbaseAdminServices0. More safety can be achieved by setting isStrictOwnershipCheck to [true].>
    <Sep 11, 2013 7:08:35 AM JST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Sep 11, 2013 7:08:35 AM JST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
    Calling getDomainConfiguration()
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
    Calling getRuntimeService()
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
      return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
      return com.bea:Name=EPMSystem,Type=Domain
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
    Domain location is 'E:\Oracle\Middleware\user_projects\domains\EPMSystem'
    Calling getRuntimeService()
      return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@9830ac
    Checking E:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\registry_update.xml file
    EPM_ORACLE_HOME: E:\Oracle\Middleware\EPMSystem11R1
    Template for EAS#11.1.2.0: E:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_eas_11.1.2.1.jar
    Dependencies for E:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_eas_11.1.2.1.jar: [Oracle EPM Common, Oracle EPM Calcmgr, Oracle EPM Planning libraries, Oracle EPM EAS libraries, Oracle EPM Misc libraries, Oracle EPM Xerces libraries]
    BPMUI shared webapp not referenced from EAS#11.1.2.0
    Application name: EAS#11.1.2.0
    Application source: eas.ear
    Server name: EssbaseAdminServices0
    Server port: 10080
    Server SSL port: 10083
    Application context: eas
    Registry product type: ESSBASE_PRODUCT
    Registry physical web application type: ADMIN_SERVICES_WEB_APP
    weblogic.Name property is 'EssbaseAdminServices0', seems to be WebLogic mode
    registry.isRegistryDatabaseCreated()true
    Registry was initialized sucessfully
    Executing pre custom update for EAS#11.1.2.0
    EPM_ORACLE_INSTANCE: E:\Oracle\Middleware\user_projects\epmsystem1
    <Sep 11, 2013 7:09:06 AM JST> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'EAS [Version=11.1.2.0]' due to error java.lang.NullPointerException.
    java.lang.NullPointerException
    at java.io.File.<init>(File.java:222)
    at com.hyperion.hit.tool.deploy.update.util.RegistryHelper.createPhysicalWebApp(RegistryHelper.java:168)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:36)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdateListener.preStart(RegistryUpdateListener.java:91)
    at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.NullPointerException
    at java.io.File.<init>(File.java:222)
    at com.hyperion.hit.tool.deploy.update.util.RegistryHelper.createPhysicalWebApp(RegistryHelper.java:168)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:36)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdateListener.preStart(RegistryUpdateListener.java:91)
    at weblogic.application.internal.flow.BaseLifecycleFlow$PreStartAction.run(BaseLifecycleFlow.java:282)
    Truncated. see log file for complete stacktrace
    >
    <Sep 11, 2013 7:09:06 AM JST> <Emergency> <Deployer> <BEA-149259> <Server 'EssbaseAdminServices0' in cluster 'EssbaseAdminServices' is being brought up in administration state due to failed deployments.>
    <Sep 11, 2013 7:09:17 AM JST> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <Sep 11, 2013 7:09:17 AM JST> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of EssbaseAdminServices.>
    <Sep 11, 2013 7:09:22 AM JST> <Warning> <Log Management> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file E:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file E:\Oracle\Middleware\jrockit_160_20\jre\lib\security\cacerts.>
    <Sep 11, 2013 7:09:48 AM JST> <Alert> <Security> <BEA-090152> <Demo trusted CA certificate is being used in production mode: [
      Version: V3
      Subject: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
      Key:  Sun RSA public key, 512 bits
      modulus: 9550192877869244258838480703390456015046425375252278279190673063544122510925482179963329236052146047356415957587628011282484772458983977898996276815440753
      public exponent: 65537
      Validity: [From: Fri Mar 22 05:12:27 JST 2002,
                   To: Wed Mar 23 05:12:27 JST 2022]
      Issuer: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      SerialNumber: [    33f10648 fcde0deb 4199921f d64537f4]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
      Key_CertSign
      Algorithm: [MD5withRSA]
      Signature:
    0000: 9D 26 4C 29 C8 91 C3 A7   06 C3 24 6F AE B4 F8 82  .&L)......$o....
    0010: 80 4D AA CB 7C 79 46 84   81 C4 66 95 F4 1E D8 C4  .M...yF...f.....
    0020: E9 B7 D9 7C E2 23 33 A4   B7 21 E0 AA 54 2B 4A FF  .....#3..!..T+J.
    0030: CB 21 20 88 81 21 DB AC   90 54 D8 7D 79 63 23 3C  .! ..!...T..yc#<
    ] The system is vulnerable to security attacks, since it trusts certificates signed by the demo trusted CA.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default[6]" is now listening on 127.0.0.1:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[6]" is now listening on 127.0.0.1:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default[7]" is now listening on 0:0:0:0:0:0:0:1:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[7]" is now listening on 0:0:0:0:0:0:0:1:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on fe80:0:0:0:0:5efe:a0e:daee:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 10.14.126.11:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[5]" is now listening on fe80:0:0:0:0:5efe:a0e:224b:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[3]" is now listening on fe80:0:0:0:0:5efe:a0e:daee:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on 10.14.126.11:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default[5]" is now listening on fe80:0:0:0:0:5efe:a0e:224b:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 10.14.34.75:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[4]" is now listening on fe80:0:0:0:0:5efe:a0e:7e0b:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 10.14.218.238:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.14.218.238:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[2]" is now listening on 10.14.34.75:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <Server> <BEA-002613> <Channel "Default[4]" is now listening on fe80:0:0:0:0:5efe:a0e:7e0b:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Sep 11, 2013 7:09:48 AM JST> <Notice> <WebLogicServer> <BEA-000358> <Started WebLogic Independent Managed Server "EssbaseAdminServices0" for domain "EPMSystem" running in Production Mode>
    <Sep 11, 2013 7:09:48 AM JST> <Warning> <JMX> <BEA-149510> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:null>.>
    <Sep 11, 2013 7:09:48 AM JST> <Warning> <Server> <BEA-002611> <Hostname "SJ015040", maps to multiple IP addresses: 10.14.126.11, 10.14.34.75, 10.14.218.238, 0:0:0:0:0:0:0:1>
    <Sep 11, 2013 7:09:53 AM JST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Sep 11, 2013 7:09:53 AM JST> <Notice> <WebLogicServer> <BEA-000360> <Server started in ADMIN mode>
    HyS9eas-syserr.log is empty and I dont find anyother details from the other log files.
    Kindly help me out in solving this issue.
    Thanks in advance.
    Regards,
    Balaji P

    Hi John,
    Sorry for replying late.
    I ran the EPM diagnostic and found EAS & APS application are failed. So as you mentioned, i tried re-deployment through EPM configurator.
    But Re-configuration fails with error "An unexpected error occurred and the application will have to shut down" .
    When i looked in to the Config tool.log,I got the following messages.
    [2013-09-17T18:17:04.635+09:00] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle.EPMCFG] [tid: 17] [ecid: 0000K4fDMY^0zkgpxC^AyW1IE1pJ000003,0:325] [SRC_CLASS: com.hyperion.hit.tool.deploy.utils.UIPortUtil] trace: Parsing server FinancialReporting0 on port 8200 from registry
    [2013-09-17T18:17:04.827+09:00] [EPMINS] [ERROR] [EPMINS-00001] [oracle.EPMINS] [tid: 17] [ecid: 0000K4fDMY^0zkgpxC^AyW1IE1pJ000003,0:325] [SRC_CLASS: com.hyperion.hit.wizard.Wizard] trace: Unexpected error:[[
    java.lang.NullPointerException
    at com.hyperion.hit.tool.deploy.utils.UIPortUtil.<init>(UIPortUtil.java:83)
    at com.hyperion.hit.tool.deploy.utils.UIPortUtil.getInstance(UIPortUtil.java:53)
    at com.hyperion.config.wizard.DeploymentField.getAppServerDeploymentData(DeploymentField.java:235)
    at com.hyperion.config.wizard.DeploymentField.<init>(DeploymentField.java:56)
    at com.hyperion.config.wizard.impl.DeploymentForm.<init>(DeploymentForm.java:57)
    at com.hyperion.config.wizard.impl.DeploymentState.initializeBeforeShowOnNext(DeploymentState.java:56)
    at com.hyperion.hit.wizard.Wizard$NextClass.run(Wizard.java:522)
    at java.lang.Thread.run(Thread.java:619)
    Since it is similare to the Oracle konwledge base article - (Doc ID 1570293.1), I tried adding the shared service domain to the Windows host file. But i am still recieveing the same error message as above.
    Appreciates your help.
    Thanks & Regards,
    Balaji P

  • I can't connect to the router in my home.  Things were working fine as usual - I attended school and connected to their WiFi network as usual.  When I returned home I could not connect to my own home router.  The Ipad seeks the network but nothing happens

    I can't connect to the router in my home.  The Ipad seeks the network but nothing happens.  I went to school and connected to their WiFi network as usual with no problems.  When I returned home I could not connect to my home router.  The Ipad seeks the router number but nothing happens.  I rebooted the Ipad a few times in the school.  The numbers identifying the router, etc. on my Ipad no longer appear there. 
    TThe Ipad guide says to connect to the WiFi use setup but I can't find the setup program in the Ipad.
    I reset the network settings to the factory defaults but this doesn't fix the problem.
    What can I do to reconnect to my home router?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • EAS - Error: "Could not connect Administration Server

    hello All,
    i am very new to EPM
    i have installed EPM 11.1.2.2 with web application deployed to single manage server
    OS : windows server 2008
    database : sql server
    when i try to connect EAS console it gives me error
    Could not connect Administration Server
    any idea?

    If it has been deployed to a single managed server on the default port then you will need to add the server in EAS console as servername:9000
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error "could not connect....0xE8000001  UGH!

    Hey gang. Please help.
    Advanced user here, been reading posts and all Mac Docs for a week straight now. Here is my specific issue
    I can reinstall iTunes and connect to iPod touch just fine. I can unplug ipod a few times, reconnect and iTunes still recognizes it.
    As soon as I eject for the 3rd or 4th time OR restart iTunes, I get the message that it could not connect because of an unkown error 0xE8000001.
    Then I have to reinstall itunes again. it works for 3 or 4 cycles, then bam, same error comes back.
    So I can fix the error and connect, but how can I get rid of it for good? I have done every suggestion and proceedure from Apple written on this site:
    1. reinstall itunes
    2. restart apple device service
    3. clean up install files
    4. repair registry
    5. delete temp files folder
    6. tried every mother board USB 2.0 ports
    7. disabled all "start up services" with msconfig
    8. Restored ipod twice
    9. plus all other printed help here discussed over the past 4 months.
    Nothing works ALL the time. I can just get it to resync 3 times then it comes back????
    Thanks!
    Z

    Copy the tnsname.ora file from Oracle Database serve onto the client PC.
    Path: %Oracle_home%\net80\admin\
    Send me a mail if there is any other issues
    Regards
    Oluseyi Funmi Oduberu
    Oracle Consultant
    Email:[email protected]
    Hi,
    I am a tech at a failing company. Unfortuneatly some users still need ADI installed and working with very limited resources to troubleshoot oracle. I am getting the error - ( Could not connect to the database - ora-12545: tns:name lookup failure )when the user tries to log on to ADI. Any suggestions? I would really appreciate it. We are on Windows NT on an NT network. Oracle 8.05 client installed and ADI 6.0.
    Thanks, Mary

  • Error " Could not connect to SAP R/3 system"

    HI:
    We have been having some problems with our portal lately and most recently the error that we get is "Could not Connect to SAP R/3 "
    The system landscape settings have not been changed.
    Thanks for your responses.
    Rachel

    When I log into the portal and launch the MSS iviews I get the error ( Could not Connect to SAP R/3).
    Similarly when I launch ESS I get the following error:
    I see that it is lost connection with our SAP R/3 HR system.  And system parameters that are available now
    are just SAP BW, SEM and CRM..
    So looks like we need to re-establish the connection..(?)
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    System 'pcd:portal_content/wwy.KeyStone/com.nrx.pct.vip.systems.sapr3' alias 'SAP_R3_HumanResources' not found. Please check the system object and the alias..
    See the details for the exception ID in the log file
    com.sap.portal.appintegrator.sap.IAC::IAC/SSOLayer
    Parameter Dump
    ApplicationParameter  
    ClassName  com.sapportals.portal.appintegrator.layer.SingleSignOnLayer
    CodeLink  com.sap.portal.appintegrator.sap.bwc.IAC
    DebugMode  false
    DebugMode.default  false
    DebugMode.type  select[false,true]
    ExportParameters  Authentication, LogonUser, RequestMethod
    ForcedRequestLanguage  
    IAC  PP_MY_Profilematchup
    MandatoryParameters  System, IAC
    NavPathUpdate  false
    NextLayer  IAC/ConnectionLayer
    OptionalParameters  ApplicationParameter, DebugMode
    SSO2Template  
    System  SAP_R3_HumanResources
    System.type  lookup:com.sapportals.portal.appintegrator.lookup.SystemLookup
    TopLayer  IAC/SSOLayer
    UserMappingTemplate  login=<MappedUser>&password=<MappedPassword>&~mysapcomusesso2cookie=0
    Wizard.MandatoryParameters  System, IAC
    Wizard.OptionalParameters  ApplicationParameter
    X509Template  
    buildTree  false
    com.sap.portal.reserved.iview.IsolationMode  URL
    com.sap.portal.reserved.iview.WizardURL  pcd:portal_content/com.sap.pct/admin.templates/iviews/editors/com.sap.portal.defaultIViewWizard
    com.sap.portal.appintegrator.sap.IAC::IAC/SSOLayer
    MandatoryParameters
    System   SAP_BW SAP_BW_Q22 SAP_BW_SAND SAP_CRM SAP_CRM_SAND SAP_SEM 
    Internet Application Component (IAC)   
    OptionalParameters
    Application Parameters  
    DebugMode  No Yes

  • SFTP receiver error: putFile: Could not connect to remote host; Reason: Unable to open Sftp client. SshReasonCode: CHANNEL_FAILURE

    Hi,
    When we try to send file over seeburger SFTP (receiver) we are getting the error as below.
    Message processing failed. Cause: javax.resource.ResourceException: Fatal exception: javax.resource.ResourceException: >> Description: SFTP transaction error occured.>> Details: putFile: Could not connect to remote host; Reason: Unable to open Sftp client. SshReasonCode: CHANNEL_FAILURE>>SendingStatus: NOT_TRANSMITTED>>FaultCategory: COMMUNICATION_ERROR>>Retryable: true>>Fatal: true, >> Description: SFTP transaction error occured.>> Details: putFile: Could not connect to remote host; Reason: Unable to open Sftp client. SshReasonCode: CHANNEL_FAILURE>>SendingStatus: NOT_TRANSMITTED>>FaultCategory: COMMUNICATION_ERROR>>Retryable: true>>Fatal: true
    But we are able to connect through filezilla . we are able to create and delete file using the same username and password which is being used in SFTP adapter.
    we have imported the both dsa and rsa keys in SFTP partner folder in NWA. Even though we are getting same error.
    Thanks,
    Vinayak

    Hi Ram,
    we checked with network team and port 22 is open and they are able to ping to the target system.
    we checked the seeburger logs and we see EOF received from remote site error:
    Caused by: com.maverick.ssh.SshException: EOF received from remote side [Unknown cause]
    #at com.maverick.ssh2.TransportProtocol.b(Unknown Source)
    #at com.maverick.ssh2.TransportProtocol.i(Unknown Source)
    #at com.maverick.ssh2.TransportProtocol.nextMessage(Unknown Source)
    #at com.maverick.ssh.message.SshMessageRouter.d(Unknown Source)
    #at com.maverick.ssh.message.SshMessageRouter.access$000(Unknown Source)
    #at com.maverick.ssh.message.SshMessageRouter$_b.run(Unknown Source) 
    Thanks,
    Vinayak.

  • Tns error could not connect to database but can tnsping and sqlplus

    The new install OBIEE 10.1.3.4.1, with two Linux RH/64 Bit servers set up and running, but can't get to 11g database when running reports.
    Error: nqsError 17001 Oracle Error Code 12154, message ORA-12154: TNS could not resolve the connect identifier specified at OCI call OCIServerAttach. nQSError 17014 could not connect to Oracle database
    Server 1 BI Server
    BI server is running.
    oc4j is running.
    jdk is installed
    /setup/user.sh variables and libs set
    .bash_profile variables and libs set
    oracle client installed with lib32
    can tnsping the database from here using SID
    can sqplus login to the database from here
    changed connection pool offiline and uploaded new .rpd
    this script does not work /setup . sa-cli.sh to test client, nothing happens, also unable to connect to BI Server in online mode from Windows client 32bit.
    Server 2 Presentation Server
    saw server is running
    set odbc AnalyticsWeb DSN to point to BI Server 1
    Since I can ping and connect with tns, why is presentation server throwing errors?
    Thanks for the help

    Copy the tnsname.ora file from Oracle Database serve onto the client PC.
    Path: %Oracle_home%\net80\admin\
    Send me a mail if there is any other issues
    Regards
    Oluseyi Funmi Oduberu
    Oracle Consultant
    Email:[email protected]
    Hi,
    I am a tech at a failing company. Unfortuneatly some users still need ADI installed and working with very limited resources to troubleshoot oracle. I am getting the error - ( Could not connect to the database - ora-12545: tns:name lookup failure )when the user tries to log on to ADI. Any suggestions? I would really appreciate it. We are on Windows NT on an NT network. Oracle 8.05 client installed and ADI 6.0.
    Thanks, Mary

Maybe you are looking for

  • How to create a matrix report

    Hi all, i want to create a matrix report manually by writing the query how can i create it in reports builder 10g please give me the details steps or any documentations for this so can i easily create the matrix report and also design for the matrix

  • How to save plain text attachments

    I often get email with plain text attachments (e.g., source code). Mail tries to be smart and displays the attachments in the body of the mail. But I wold like to save them as usual. I can't even control-click on them Does anyone have an idea what I

  • Extractor for Table BKPF

    Hi ,   I wanted to know the extractor for table BKPF . Where can i know or which is the extratcor Regards Ankit Vaish

  • Exchange rate should pick as per document date of GRN in MIGO

    Dear all, As per my client requirement while doing Material GRN in MIGO, system should fetch exchange rate as per Document date of the GRN. As per standard now it is picking from posting date. we already implemented Note number 574583. After implemen

  • Change resolution of image

    I'm using CS3 and I'm putting together a small magazine. The printer who will be doing the printing insists that all images are 300 dpi, however, some of the images people have sent me to insert in the magazine are only 120 dpi. If I manually change