failed to connect to the SMTP server

I can't send mail in ThunderBird sometimes. I use 31.5.0 version but I was wrong this problem in older versions either.

It is said:
"The message could not be sent because the server name of the SMTP server connection failed. The server is may be unavailable or refuses the SMTP connections. Please check that your SMTP server is correct and try again, or else contact your network administrator. "

Sometimes, every time. But really bad situation for me. It happens with hotmail, gmail and with my own email accounts. For the time being. It sends to all accounts except for Hotmail. I tried not in http://kb.mozillazine.org/Connection_errors_-_SMTP , but there is no change.

Could you help me please abou this problem?

Is - this smtp.live.com which does not send?
Try this:

SMTP.live.com / 587 / TLS

Authentication the same as POP3 (username and password)

Tags: Thunderbird

Similar Questions

  • Fails to connect to the Proxy Server

    My internet works but are used.  He says he "fails to connect to the Proxy Server" is due to firewall settings?  and how to change them.

    Your message is in the forum for people needing help with the anti-malware program from Microsoft Security Essentials (MSE).

    Suggest you contact support OBJECTIVE to: http://help.aol.com/help/product/aim/

  • Acer Iconia A-810 fails to connect to the Google Server

    I just this tablet and everything so far is ok, but it fails to connect to the Google server. He has no problem connecting to other servers however. Both laptops and another my Tablet connect to the Google server perfectly. I use ATT broadband. So I guess that something in the Acer Iconia tablet is the origin of the problem. Any suggestion?

    Thanks in advance,

    Marina

    1. go to setting-> Applications-> shop game Google-> erase-> empty the Cache.
    2. go in setting-> Applications-> Service Google Play-> erase-> empty the Cache.
    3. Enter your Google username and password after opening Google Play Store again.

    I hope this works.

  • Impossible to connect to the smtp server and send an email using javamail.

    Hi all

    I am struggling with sending e-mail with javamail api.

    I've visited a few forums but not be able to solve the problem then post here.

    Details of the situation are:

    1 SMTP - to which we are able to connect with telnet and able to send emails that work even between the firewall.

    2 tried to disable IPV6 from my windows machine 7 after reading something - java tries to connect to smtp with IPV6 and it should be disabled so that javamail work.

    3 has tried to run the same code to a linux environment. in this environment, we are also able to connect to the smtp with telnet server and send mail

    the code I have tried is below.

    import java.util.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    
    public class SendEmail
    {
    public static void main(String [] args){
    String to = "[email protected]";//change accordingly
    String from = "[email protected]";//change accordingly
    String host = "smtp.somthing.com";//or IP address
    
    //Get the session object
    Properties properties = System.getProperties();
    properties.setProperty("mail.debug", "true");
    properties.setProperty("mail.smtp.host", host);
    properties.put("mail.smtp.starttls.enable", "false");
    //properties.put("mail.smtp.port", "25"); //commented as its by default takes 25
    Session session = Session.getDefaultInstance(properties);
    
    ////compose the message
    try{
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
    message.setSubject("Ping");
    message.setText("Hello, this is example of sending email  ");
    
    // Send message
    Transport.send(message);
    System.out.println("message sent successfully....");
    
    }catch (MessagingException mex) {mex.printStackTrace();}
    }
    }
    

    I get the errors are

    DEBUG: JavaMail version 1.4.7
    DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
    DEBUG: Tables of loaded providers
    DEBUG: Providers Listed By Class Name: {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle]}
    DEBUG: Providers Listed By Protocol: {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]}
    DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle]
    DEBUG SMTP: useEhlo true, useAuth false
    DEBUG SMTP: trying to connect to host "smtp.something.com", port 25, isSSL false
    Exception in thread "main" java.lang.RuntimeException: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at emailer.SendMail.main(SendMail.java:64)
    Caused by: javax.mail.MessagingException: Could not connect to SMTP host: smtp.something.com, port: 25;
      nested exception is:
        java.net.ConnectException: Connection timed out: connect
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1961)
        at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:654)
        at javax.mail.Service.connect(Service.java:295)
        at javax.mail.Service.connect(Service.java:176)
        at emailer.SendMail.main(SendMail.java:58)
    Caused by: java.net.ConnectException: Connection timed out: connect
        at java.net.DualStackPlainSocketImpl.connect0(Native Method)
        at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
        at java.net.PlainSocketImpl.connect(Unknown Source)
        at java.net.SocksSocketImpl.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at com.sun.mail.util.SocketFetcher.createSocket(SocketFetcher.java:321)
        at com.sun.mail.util.SocketFetcher.getSocket(SocketFetcher.java:237)
        at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1927)
        ... 4 more
    

    someone had a problem like this?

    suggestions are welcome...

    The server I used was not accessible from the telnet command or java code.
    However when I telnet to the server it was implicitly redirected to another server that I failed to notice.

    My sincere apologies to all
    I'll take more precautions before posting and check the facts in more detail.

  • could not connect to the smtp server

    Hi all

    I'm on a 21.5-inch iMac using OS 10.11.3 at the end of 2012. Yesterday (and today...) Mail would not send anything and gives me a status 'offline' for sending. I use Gmail IMAP with 2 accounts. The same problem happened to my wife on his computer with the shared e-mail account. My iPhone (4) will send the mail from the same account. If I log in to Gmail directly I can send emails. I deleted the account and re-written information. I quit Mail and restarted the computer. I looked at several solutions in the forums and have tried what appear to be common ones (that I could find), but nothing seems to work. After restart of the account Gmail sent me an email saying I had been blocked for using a "precarious" app, and I checked my Gmail settings so that I can use less secure (as the devil which means?) apps. The problem persists...

    Mail connection doctor says that it is connected to the internet and my 2 IMAP accounts work, but 2 SMTP accounts (I guess for the sending of?) say "not able to connect to this SMTP server.

    It all started yesterday without changing all the settings or preferences that I know.

    Any ideas?

    Michael

    Have you checked the SMTP settings for the latest recommendations googles? Changed something on their end recently?

    You run a 3rd party cleaning apps (clean my mac, mac guardian, etc.) or AN Anti Virus on your Mac? If so, remove them.

    have you installed anything between mail works and does not?

    If so, remove it.

  • Acrobat failed to connect to the DDE server - cannot open

    I tried to open Adobe and get the error after about 5 min or more:

    Acrobat failed to connect to a DDE server.

    I'm unable to open the files.

    I read the other posts on this and I tried to open it with and it does not.

    No idea how fix?

    Just set this myselk. Please visit http://forums.adobe.com/thread/1029593. Works well as you turn off and then restart and reactivate your product, simple as. Hope this helps

  • Failed to connect to the SQL Server integrated with foglight

    Hi all

    I try to connect with MS SQL Server embedded foglight Management Server and failed to do so due to the error below. Could someone help me on this ASAP:

    org.springframework.beans.factory.BeanCreationException: error creating bean with name "foglight-core-services" defined in the URL [jar:file:/E:/Quest_Software/Foglight/server/default/tmp/deploy/tmp7024790750014228181foglight.sar!/com/quest/nitro/service/core-beanref.0.ctx.xml]: instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: could not instantiate bean class [org.springframework.context.support.ClassPathXmlApplicationContext]: constructor threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: error creating bean with name 'exporting' defined in the [com/quest/nitro/service/common.ctx.xml] class path resource: calling the init method failed; nested exception is org.springframework.beans.factory.BeanCreationException: error creating bean with name "com.quest.nitro:service = Licensing" defined in the [com/quest/nitro/service/core-services.0.ctx.xml] class path resource: calling the init method failed; nested exception is org.hibernate.exception.DataException: could not execute the query

    at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:254)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:925)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:835)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440)

    to org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$ 1.run(AbstractAutowireCapableBeanFactory.java:409)

    at java.security.AccessController.doPrivileged (Native Method)

    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)

    to org.springframework.beans.factory.support.AbstractBeanFactory$ 1.getObject(AbstractBeanFactory.java:264)

    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:221)

    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)

    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)

    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)

    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)

    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:729)

    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:381)

    at org.springframework.context.access.ContextSingletonBeanFactoryLocator.initializeDefinition(ContextSingletonBeanFactoryLocator.java:141)

    at org.springframework.beans.factory.access.SingletonBeanFactoryLocator.useBeanFactory(SingletonBeanFactoryLocator.java:384)

    ... more than 165

    Caused by: org.springframework.beans.BeanInstantiationException: could not instantiate bean class [org.springframework.context.support.ClassPathXmlApplicationContext]: constructor threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: error creating bean with name 'exporting' defined in the [com/quest/nitro/service/common.ctx.xml] class path resource: calling the init method failed; nested exception is org.springframework.beans.factory.BeanCreationException: error creating bean with name "com.quest.nitro:service = Licensing" defined in the [com/quest/nitro/service/core-services.0.ctx.xml] class path resource: calling the init method failed; nested exception is org.hibernate.exception.DataException: could not execute the query

    at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115)

    to

    Kind regards

    Shiva

    Hello

    It is probably part of a larger battery error (if you can download the zipped file of complete log we can see if something is visible).

    This is a new installation or and upgrade or displacement of FMS? What version do you use?

    Have you tried to stop the foglight server, make sure that the DB is down too and then restart?

    There are articles describing errors as part of a larger pile of errors.

    This article KB https://support.quest.com/SolutionDetail.aspx?id=SOL64412 talks to ip in the hosts file is not wrong

    Other articles describing similar problems:

    There is an article describing a bug that has been fixed at https://support.quest.com/SolutionDetail.aspx?id=SOL63134

    Another speaks of a problem with the Storage Manager service https://support.quest.com/SolutionDetail.aspx?id=SOL73892

    With the attached log file we can see more information, I recommend also the opening of a case of pension because they can help solve the problem in a more interactive way.

    I hope this helps.

    Golan

  • Failed to connect to the ESSBASE server & opmn was able to start

    Dear all,

    I couldn't connect to Essbase server and a service to opmn works not as well. Hard at this issue not accessible planning application, kindly help us this is very urgent and very crucial for us.

    Here are the controls and exit (Please find logs attached):

    The message is EASconsole below:

    ========================

    Error: 103: unexpected error Essbase 1030818

    Error: 1042006: error network [10061]: unable to connect to [XXXXXXXXXX.

    1. DS.
    2. XXXXXXXXXX.

    [local: 1423]

    Error: 1030818: failed to connect. Please check if the server and port are correct. If you receive timeout or handshake failure, please check if you have tried to connect to secure the port without keyword secure or disable the port with the secure key word.

    Of MAXL:

    ========

    Essbase MaxL Shell 64 bit - version 11.1.2 (ESB11.1.2.4.000B193)

    Copyright (c) 2000, 2015, Oracle and/or its affiliates.

    All rights reserved.

    MAXL > connection;

    Enter the user name > admin

    Enter the password > *.

    Enter the host > XXXXXXXXXX

    ""

    ERROR - 103 - Essbase unexpected error 1030818.

    Error - 1042006 - network [10061]: unable to connect to [XXXXXXXXXX.d

    1. s.XXXXXXXXXX.local:1423].

    ERROR - 1030818 - login failed. Please check if the server and port are correct.

    If you receive timeout or handshake failure, please check if you have tried a bitch

    CT to secure without keyword secure or clear with the keyword secure port...

    MAXL >

    Cmd prompt try everything to start opmn below is the message:

    ======================================

    Microsoft Windows [Version 6.1.7601]

    Copyright (c) 2009 Microsoft Corporation. All rights reserved.

    C:\Users\hyptstadmingdc > cd C:\Oracle\Middleware\user_projects\epmsystem1\bin

    C:\Oracle\Middleware\user_projects\epmsystem1\bin > opmnctl status

    opmnctl status: opmn is not running.

    C:\Oracle\Middleware\user_projects\epmsystem1\bin > opmnctl startall

    opmnctl startall: from opmn and managed all process...

    opmnctl startall: opmn was able to start.

    C:\Oracle\Middleware\user_projects\epmsystem1\bin >

    Hi all

    Problem was solved after reinstall & reconfig (without uninstalling) box-2, after that I could use planning an application as usual without error.

    Kind regards

  • Failed to connect to the DB Server App-ORA-1017

    Oracle Enterprise Manager 10g Application Server Control 10.1.2.0.2
    DB server1 - Has two DB instances SID=X, SID=Y
    DB server2 - Has two DB instances SID=Y, SID=Z
    The application server file Tnsnames.ora had entered for X and Y.
    Y =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST =DB server1)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = Y.WORLD)
        )
      )
    After installation of the Y, Z in tnsnames.ora to server2 (without moving there DB DB server1) DB to modify as follows
    Y =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST =DB server1)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = Y.WORLD)
        )
      )
    TO
    Y =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST =DB server2)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = Y.WORLD)
        )
      )
    Now applications Forms deployed to the application server, we can connect to Z, but we can not connect to Y. We can connect to DB via SQL * Plus application server.

    Need friendly suggestions.

    Best regards
    Franck

    Hi Frank,.

    Check this setting

    SQL> SHOW PARAMETER SEC_CASE_SENSITIVE_LOGON
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    sec_case_sensitive_logon             boolean     TRUE
    

    If the value is True set it False.

    SQL> ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;
    
    System altered.
    

    Try this hope it works.

    Concerning
    Santosh mandin

    Published by: SanOra13 on March 15, 2012 23:59

  • Acrobat failed to connect to the DDE server.

    I have Windows 7.  When I try to download a file, it rises and then freezes.  I uninstalled and reinstalled adobe reader software and it still does not work.  It worked fine until about a week ago.  What has caused this happens and how to fix it?

    Using Adobe Acrobat or Adobe Reader? If only the PDF reader, it has always been problematic. I suggest you only replace it with this lightweight and reliable PDF reader.
     
     
     

     
     
  • Adobe is unable to connect to the dde Server

    I have just updated to windows 7 and most things work very well - but I tried to open a PDF with acrobat 9 and reader (9) and I get the error adobe message failed to connect to the dde Server
    I tried searching online but can't find an answer
    Help much appreciated
    VIX

    Hello

    Welcome to Microsoft Windows 7 answers Forum!

    You can try the steps below and check if the problem is resolved.

    Note: DDE is dynamic data exchange and Explorer uses DDE to open Office documents (to assume that you open the document in the browser).

    DDE share is a tool for managing how the programs to communicate and share data over a network.

    If you want to disable this prompt, then you can follow the steps below.

    Here, this problem may occur if you have installed a safety program on your computer, you can get this error message.

    Try disabling the analysis of access for application control strategy in your safety program and control for the issue.

    For this you will need to communicate with your security program support team.

    For more information on this you can visit the links below.

    http://forums.Adobe.com/thread/392875?TSTART=0

    http://forums.Adobe.com/message/1877300#1877300

    If you still experience the problem so that you can perform a cleanboot on your computer to identify the conflicting program.

    Clean clean boot.

    1. click on start, type msconfig in the search box and press ENTER.

    The user account control permission.

    If you are prompted for an administrator password or confirmation, type

    password, or click on continue.

    2. in the general tab, click Selective startup.

    3. under Selective startup, clear the check box load starting points.

    4. click on the Services tab, select the hide all Microsoft Services check box, and then click Disable all.

    5. click on OK.

    6. When you are prompted, click on restart.

    7. after the computer starts, check if the problem is resolved.

    If the problem is resolved, make sure what third-party program is at the origin of the problem, referring to the link given below:

    http://support.Microsoft.com/kb/929135

    Reset the computer to start as usual.

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    Click Start, type msconfig.exe in the start search box and press ENTER.

    If you are prompted for an administrator password or for confirmation, type your password, or click on continue. On the general tab, click the Normal startup option, and then click OK.

    When you are prompted to restart the computer, click on restart.

    Thank you, and in what concerns:

    Suresh Kumar-Microsoft Support.

    Visit our Microsoft answers feedback Forumand let us know what you think.

  • Unable to connect with the DNS server

    Recently, I went away for the weekend and came back to find that I had no internet, on all devices... So I don't know exactly how long he was out. I'm a computer and a network engineering student and I've tried everything I can think of to make it work again. Here's what I did:

    First off troubleshooting generates an error message: "failed to connect to the DNS server.

    Of course, I did reboot of the habit of my router and my devices.

    I can't connect to WiFi or direct connection via Ethernet. I tried flushing DNS via the command-line ("ipconfig/flushdns") as well as the command "netsh int ip reset", "ipconfig/release" and "ipconfig / renew." I tried to go into the settings of the network adapter and the two affecting the IPv4 and IPv6 DNS google DNS settings. I even traded my router for a new with my ISP (of Roger (Canada)). I have connected to my router through my web browser and tried to change some of the DNS settings there (everything went well). Nothing worked so I have everything set to default. I tried ping around my own network, I ping my own card NETWORK, but also the entry door, so I know that's not my PC, I have also excluded because all my devices do not work. I spoke with Rogers (my ISP) twice now and they were no help at all, they were more concerned by the flashing lights on the router as the real problem. I'll have a technician to the course to watch tomorrow, but I doubt they'll be any help at all. I wouldn't say I'm a computer genius, but I have a pretty good understanding of how things work and I can not understand what the problem is here, I can have forgotten something or forgot to mention something I tried. But if anyone has any ideas, or similar cases they decided that I would be VERY grateful for the help.

    Hello

    Thanks for posting the query on the Microsoft Community Forums. You have reached the right place. Let us work together to find the cause of this problem and try to solve.

    There could be various reasons for which you will not be able to connect to the Internet. And I'm glad to know you have try more troubleshooting steps to solve problems.

    1. which antivirus program is installed on your computer?
    2. don't you make changes to the computer before the show?

    I suggest you try the steps from the following link and see if that helps.

    Why can't I connect to the Internet?
    http://Windows.Microsoft.com/en-us/Windows/cant-connect-Internet#1TC=Windows-8

    Wireless and wired network problems
    http://Windows.Microsoft.com/en-us/Windows/network-connection-problem-help#network-problems=Windows-81&V1H=win81tab1&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    Let us know the update after trying the steps above.

  • Window popup message: the SMTP server requires a secure connection...

    Hi This is my first attempt to help in this way. my asset is not only the best please understen. About a week or two ago, I started to get a wjndow pop up on my desk which read "the smtp server requires a secure connection or the Chief client was not authenticated. the response from the server was 5.5.1 that required authentication. Learn more,". Microsoft won't say that Live Mail only on line help. If anyone can help, I would be greatfull. Tanks

    Hi Firedog, thanks for your effect. You're really nice. There was a misunderstanding from the very beginning because a technician of Optus suggested Live Mail. Here is a link to the screen shot of the message (thanks to a tip on how to do this). https://SkyDrive.live.com/redir?RESID=5EBCF026C069D223! 112 & authkey =! AEbfWyyrYKtIH3g by the way the problem has been resolved by a kind person in Switzerland with whom I am in regular correspondence. Here's what we did. I downloaded a track from "Trojan Remover" version, run it and it removed a Trojan horse embedded in a file named skillfully as one of the windows updates. Unfortunately the file has been deleted by Trojan Remover without register the full name. He was placed in users /my name /folder AppData. If the problem is solved but a big thank you to all who helped. I have a program of security installed on my PC, but it does not take this Infection, time to consider my safety. Greetings and thanks a lot again.

  • Failed to connect to the user when it connects to SQL Server 2008 R2 gateway

    Hi - This is my first post!

    I have problems to connect to a SQL Server 2008 R2 to Oracle database 11 g R2 database, use the product of the gateway.

    Previously, he has worked, but we moved the database SQL 2005 to 2008 (R2).

    We receive this error while trying to query through the link (Select * FROM DUAL@ADSRD)

    ORA-01017: name of user and password invalid. connection refused

    [Oracle] [ODBC SQL Server driver] [SQL Server] Failed to connect to the user 'SQLUSER '. {NativeErr 28000, = 18456} [Oracle] [ODBC SQL Server driver] Invalid connection string attribute {01 S 00}

    ORA-02063: preceding 2 lines of ADSRD

    01017 00000 - "invalid username/password; connection refused '.

    * Cause:

    * Action:

    Error on line: 1 column: 35

    The DG4MSQL configuration is here:

    HS_FDS_CONNECT_INFO = //SSU_PRD_APP/IntegrationStagingDb [BSYS-sql2]

    HS_FDS_TRACE_LEVEL = OFF

    HD_TRANSACTION_MODEL = READ_ONLY

    #HS_FDS_DELAYED_OPEN = FALSE

    HS_FDS_FETCH_ROWS = 100

    HS_OPEN_CURSORS = 50


    The database is hosted in its own instance on the sql2-BSYS Server

    Then... on the SQL Server event logs returns this:

    Failed to connect to the user 'SQLUSER '. Reason: Failed to try to connect using SQL authentication. Server is configured for Windows authentication only. [CLIENT: 192.168.10.179]

    However, the SQL Instance IS configured to enable mixed mode authentication.

    I can't work on what I missed, and I can confirm if I'm actually to a compatibility issue between the gateway and the version of SQL server, that we are now trying to connect.

    Help please!

    Is the user name in your SQL Server database in the capital, mixed mode letters or small letters?

    Currently, you have created a database link that tries to authenticate on the server SQL using SQLUSER in capital letters. If you use mixed or small letters, so be sure to write the user name (and password) as it is in the create database link statement and surround it with double quotes.

    If you have created the link of database correctly, try an ODBC connection for example from your client and add the user name and password. Does it work?

    -Klaus

  • Failed to open the first Pro CC 2015.Windows are unable to connect to the Adobe server... This application failed to start properly 0xc000001d... Click ok to close the application

    Failed to open the first Pro CC 2015.Windows are unable to connect to the Adobe server... This application failed to start properly 0xc000001d... Click ok to close the application

    Hi qksdjhfb,

    For a fix, update for first Pro CC 2015 (9.2).

    Thank you

    Kevin

Maybe you are looking for