Problems Connecting to Discoverer App Server

I have Discoverer3i and Oracle8i co-existing on one NT 4.0 sp3 machine with IIS as the Web Server.
All parts of the installation went well. I can connect to the database from both instances using sql*plus and the DB Alias. I can connect to the EUL using Discoverer User edition on the server itself.
When I try connecting from a remote client using a Web Browser, the applet responds with an erro message "Unable to connect to the Oracle Discoverer Application server oracle/discoverer/corba/_st_DCILocator please contact your oracle discoverer Administrator". The OracleDiscovererService is running, so is the OADUTIL and the Locator. I even cleaned up the CLASSPATH and removed PATH references to the Oracle 8i installation of JRE to ensure no conflicts but still get this error. Any Ideas anyone?
Thanks.
Owiso.

I have Discoverer3i and Oracle8i co-existing on one NT 4.0 sp3 machine with IIS as the Web Server.
All parts of the installation went well. I can connect to the database from both instances using sql*plus and the DB Alias. I can connect to the EUL using Discoverer User edition on the server itself.
When I try connecting from a remote client using a Web Browser, the applet responds with an erro message "Unable to connect to the Oracle Discoverer Application server oracle/discoverer/corba/_st_DCILocator please contact your oracle discoverer Administrator". The OracleDiscovererService is running, so is the OADUTIL and the Locator. I even cleaned up the CLASSPATH and removed PATH references to the Oracle 8i installation of JRE to ensure no conflicts but still get this error. Any Ideas anyone?
Thanks.
Owiso.

Similar Messages

  • Problem connecting to Web Services server

    Hello,
    I've had my printer running perfectly since I installed it 3 days ago but today I am nolonger able to use eprint. I can still scan and print from my home PC and laptop but I am unable to send emails directly to the printer now. This was working fine and I used the feature fairly often without error but today no emails arrived. When I logged on to the eprint web site using my google account {Personal Information Removed} the status of the printer said disconnected. I've tried deleting the printer and re-attaching it (which had no effect) and I've now tried disabling web services on the printer then re-enabling it. When I try this I now receive the following error: Problem connecting to Web Services server.
    The printer model is a HP Photosmart Premium C310a with the lastest software update. The printer is connected to my network via Wifi and is reachable and usable from all my PC's.
    It seems to me that there is something wrong with the software configuration on the printer, the reason I think this is because the screen interface slows down to a crawl after some use and when this happens it is not possible to switch the printer off via the power button. The only solution is to pull the power cable! This is something new and didn't happen before, is there a way to reset to factory default, the option in the menu doesn't seem to reset everything?
    Please advise ASAP.
    Thanks in advance,
    Stuart {Personal Information Removed}

    Greetings,
    The ePrint Service has been having some issues after the upgrade. The server team has found and fixed a bug in the latest release that affected connectivity. If you're having problems, please unregister your product (from the Web Services menu, select "Remove Web Services"), then register again (from the Web Services menu, select "Enable Web Services).
    After reregistering, I have been very successful using both ePrint and the Print Apps using my HP LaserJet CM1415. It has been staying connected, and promptly printing jobs I send to it. It has also been reconnecting after I powercycle. I sincerely hope you have the same experience. We had an ePrintCenter outage a few minutes ago that may have affected connectivity, but I am able to use ePrint and the Print Apps again as of 5:15 Mountain Time.

  • How to configure database connectivity in OC4J App server.

    Hi,
    I am working on Oracle ESB flows. I have the flow inserting rows into database table using database connection that I have defined. I havent set up connection settings in OC4J EM console.
    I dont wonder when JDeveloper is inserting rows into tables, as connection is explicitely defined in JDeveloper.
    Now I login to EM enviroment and click on Home, click on Web Services tab, and when I use this flow as a Web Service end point and feed values through the form that it provided, it also works. But since I havent defined any connection properties in App Server explicitely, I wonder where is it getting connection properties(JNDI name) from.
    I want to configure some settings in Testing Environment and am kind of stuck at this point.
    Thanks,

    Hi.
    When you don't have JNDI configured, OC4J uses the design time connection defined in the Adapter's WSDL. Look for the following description in your Adapter WSDL:
    <!-- Your runtime connection is declared in
    J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml
    These 'mcf' properties here are from your design time connection and
    save you from having to edit that file and restart the application server
    if your JNDI is missing.
    These 'mcf' properties are safe to remove.
    -->
    Now, for JNDI configuration, you can use the SOA Suite tutorial as a reference:
    http://download.oracle.com/docs/cd/B31017_01/core.1013/b28937/setting_up.htm#CIHBHEFC
    There you can find the steps to create a connection pool, data source, etc.
    Denis

  • HELP - Can't connect to Sun App Server

    Hi,
    I'm confused. The Sun App Server documentation states that the protocol to use in the JNDI context lookup is jms or tcpjms, and that the service runs on port 7676:
    javax.naming.ConfigurationException: Invalid URL: jms://localhost:7676 [Root exception is java.net.MalformedURLException: unknown protocol: jms]
    When I use the other (commented-out) line: iiop://localhost:3700, I get a different error (and I don't think this is the protocol I want to use anyway).
    JNDI API lookup failed: javax.naming.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
    javax.naming.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
    So which is it?? Here is my code...thanks in advance for your help!
    package com.tpc.jms.simpleProducer;
    import javax.jms.*;
    import javax.naming.*;
    import java.util.Hashtable;
    import java.util.Properties;
    public class SimpleJMSTest {
    // public static final String PROVIDER_URL = "iiop://localhost:3700";
    public static final String PROVIDER_URL = "jms://localhost:7676";
    public static final String CONTEXT_FAC = "com.sun.jndi.cosnaming.CNCtxFactory";
    public static void main (String argv[]) {
    try {
    Properties properties = new Properties();
    properties.put(Context.PROVIDER_URL, PROVIDER_URL);
    properties.put(Context.INITIAL_CONTEXT_FACTORY, CONTEXT_FAC);
    properties.put(Context.SECURITY_PRINCIPAL, "guest");
    properties.put(Context.SECURITY_CREDENTIALS, "guest");
    InitialContext initialCtx = new InitialContext(properties);
    System.out.println("Good!");
    //TopicConnectionFactory topicConnFactory = (TopicConnectionFactory) initialCtx.lookup (fac);
    //Topic nasdaqTopic = (Topic)initialCtx.lookup(topic);
    /* System.out.println("Creating topic connection");
    TopicConnection topicConnection = topicConnFactory.createTopicConnection();
    topicConnection.start ();
    System.out.println("Creating topic session: not transacted, auto ack");
    TopicSession topicSession = topicConnection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
    System.out.println("Creating topic, subscriber");
    TopicSubscriber nasdaqTopicSubscriber = topicSession.createSubscriber (nasdaqTopic);
    System.out.println ("Ready to subscribe for messages :");
    nasdaqTopicSubscriber.setMessageListener(new SubscriberListener());*/
    catch (Exception e) {
    e.printStackTrace ();
    }

    Hi,
    First of all, you don't use iiop in JMS.
    And also for your problem, did you by any chance forget to create your connectionfactory in the application server?

  • Trouble connecting to the app server

    Facts:
    Discoverer installed on NT4, connecting to Oracle8i on Solaris via odbc. Able to connect through sqlplus, etc from the nt4.
    Receiving the following error message:
    Unable to connect to the Oracle Discoverer Application Server: oracle/discoverer/corba/_st_DCILocator
    Please contact your Oracle Discoverer Administrator.
    That is me. I am not sure if I installed this thing incorrectly or what.
    Thanks,
    Young

    So I got past the last problem that i posted. I was able to connect after realizing that there were a set of net8 applications (including the discoverer) that uses a different tnsnames.ora than is found in <ora home>\network\admin. I found that you need to also have a tnsnames.ora located in <ora home>\net80\admin and <ora home>\net80\tnsapi.
    This problem killed me!
    I now have that up and running. I got the administrator application up and configured everything wonderfully. I am now stuck on trying to get the 3i client running. I am running into more connectivity issues (says cannot connect to the application server). I am certain that it is another problem with my setup.
    If anyone can help that would be great. if i find the answer i will post.

  • An HTTPS problem...Sun App Server issue?

    When I access my app using https, I get a certificate message asking me to accept the certificate (which must have been automatically generated since I did not puchase one).
    Anyway, after I accept the certificate, I get a message that says "The page contains both secure and nonsecure items". I then click yes and continue, but this message keeps coming back time and again for each page (even ones that have been visited before).
    Now I know this message can be caused by things like me grabbing images from non-secure sites, but all of my images are local, and all calls to servlets that read images from the database are made using https.
    So......what in the world do I need to do to stop this?
    Thanks.

    This is getting worse.
    I just tried getting to the site using HTTPS from two different Windows 2003 boxes. Both of those machines were unable to see the images coming from the servlet, but could see the default images.
    I looked at the app server log and saw this reported:
    [#|2005-06-22T12:50:42.807-0500|SEVERE|sun-appserver-pe8.0.0_01|org.apache.tomcat.util.net.PoolTcpEndpoint|_ThreadID=16;|Handshake failed
    javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
         at com.sun.net.ssl.internal.ssl.InputRecord.b(DashoA12275)
         at com.sun.net.ssl.internal.ssl.InputRecord.read(DashoA12275)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA12275)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(DashoA12275)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(DashoA12275)
         at org.apache.tomcat.util.net.jsse.JSSESocketFactory.handshake(JSSESocketFactory.java:118)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:647)
         at java.lang.Thread.run(Thread.java:534)
    |#]Why would this die for Windows 2003 and work (although you still have to click the box each time that talks about secure and nonsecure items)?
    I could really use some help here! I know that it is JavaOne time, but running on HTTPS is vital and I need to know how to solve these issues.
    THANKS!

  • Unnable to connect oracle Discover app server.

    Hai Friends...
    Tried installing 9iAS 1.0.2.1.0 on NT.
    When i am starting the Oracle Discover plus
    it is saying that unable to connect to thr oracle discoverer application server, Discover has detected a conflict loading class oracle/discoverer/corba/_st_DCILocator.class.
    Any help wouid be most appreciated.
    Cheers
    Gopi
    null

    Murali,
    Great suggestion. I found that after adding a host one has to run AutoConfig on Database Server and bounce the TNS Listener. I will read manuals to find out how to do that, but it will be great if someone can point me to where I can find that information quickly. Better still, if someone has instructions on how to do both, that will save a lot of time.
    Thank you.
    Rahul

  • Connecting to 9i Apps Server

    Hello,
    I have both application server and Jdeveloper on same PC(sandalone). I cannot connect to 9i application server.
    When I installed application server I did not give any
    username and password. BY default username it's taking admin and i left password blank,URL- ormi "localhost/". I didn't give port number. However connection is refused.
    How can succesfully connect to Apps server.
    Please help me with this.
    Ponic

    hi , the following link may be of help to u http://www.awprofessional.com/articles/article.asp?p=26560&seqNum=7&rl=1

  • Problem connecting to lotus notes server.

    Hey Everyone
    I am using:
    Windows XP, service pack 2
    PC suite 6.85.14.1
    Bluetooth connection
    Phone Nokia E65
    I am trying to connect my laptop to the office lotus notes server. But it seems PC sync can’t locate my id file or the notes server. The fields under sync setup are simply empty.
    My Notes client didn’t have any problems connecting to the server.
    There are about 10 other people in the office all using the same setup (Nokia E65 and a the same type laptop) without problems.
    I have tried the solution in this topic but it didn’t help: /discussions/board/message?board.id=pcsuite&message.id=24092&query.id=149864#M24092.
    Any idea what the problem might be?
    Thx in advance
    \Andreas

    open regedit
    go to HKEY_CURRENT_USER\Software\Nokia\PCSync\Settings
    open => NotesIni
    instead of for exemple => C:\Application_Data\notes\
    type the entire path => C:\Application_Data\notes\Notes.ini
    it should work

  • Problem with SUN Iplanet App server 6.0

    The iPlanet server hangs suddenly with one of the KJS engines being halted. Following is the error message we see in logs.
    The only thing we do is to restart the server, to bring it to normal state again. We also tried increasing the JVM size to 256mb from 128mb . But still having this problem.
    Can any one help us on this issue?
    Thanks,
    Srini.
    [09/Nov/2004 17:25:24:1] error: Exception: SERVLET-execution_failed: Error in ex
    ecuting servlet StaticServlet: java.lang.NullPointerException
    Exception Stack Trace:
    java.lang.NullPointerException
    at com.netscape.server.deployment.AppCompGDSUtil.getDescriptorFromGDSByK
    ey(Compiled Code)
    at com.netscape.server.deployment.WebAppCompGDSUtil.getDescriptorFromGDS
    ByKey(Compiled Code)
    at com.netscape.server.deployment.AppComponentDescriptorUtil.createWebAp
    pComponentDescriptorCore(Compiled Code)
    at com.netscape.server.deployment.DescriptorManager.getWebAppDescriptorF
    romCache(Compiled Code)
    at com.netscape.server.servlet.servletrunner.StaticServlet.service(Compi
    led Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at com.netscape.server.servlet.servletrunner.ServletInfo.service(Compile
    d Code)
    at com.netscape.server.servlet.servletrunner.ServletRunner.execute(Compi
    led Code)
    at com.kivasoft.applogic.AppLogic.execute(Compiled Code)
    at com.kivasoft.applogic.AppLogic.execute(Compiled Code)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at com.kivasoft.thread.ThreadBasic.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    [09/Nov/2004 17:25:24:2] info: REQ-012: thread add

    Hi Friends,
    I have installed SUN Iplanet App server 6.0. I want to save some file in the system using Iplanet server and want to access that file using Iplanet.
    could anyboby help me?
    Thanks,
    Sunil Jain

  • Problems connecting to the Admin Server

    My browser can't connect to the Admin Server. Why not?
    <P>
    If you cannot connect to the Admin Server, ensure that the masks of
    Hosts and Addresses entries in /admin-serv/config/ns-admin.conf
    include the host and address you are connecting from. After changing
    these parameters, stop and start the Admin Server by running the shell
    scripts /stop-admin and
    /start-admin.

    Thanx for the reply Shane.
    i had just stumbled upon the imap log before seeing your answer. i've found and fixed the problem.
    the imap log showed the following message
    Access to imap service for user@domain denied from client address (*mailAllowedServiceAccess)while the http log showed the following message
    Access to smime service for user@domain denied from client address (mailAllowedServiceAccess)after some digging, i understood that th mailAllowedServiceAccess is a user profile property.
    For my non-admin user, it was set to +imaps:ALL$+pops:ALL$+smtp:ALL$+http:ALL i modified it to include simple imap and the problem was solved.
    ps: some threads that pointed me in the right direction
    [http://forums.sun.com/thread.jspa?threadID=5361414]
    [http://forums.sun.com/thread.jspa?forumID=708&threadID=5099841]
    [http://forums.sun.com/thread.jspa?forumID=708&threadID=5401855]
    Thank you very much for your help
    Pier

  • Anyone else having problems connecting to the App Store after the ios6 update?

    After installing ios6 I cannot connect to the App Store. I know that I am connected to the internet.  Any suggestions?

    I have this problem too. The genius,purchased and update tabs work, the other two come up blank. My iphone 3gs connects just fine, so not a connection problem. Have already tried signing out if itunes and powering down. Now what, reset network? What will I lose if I do?

  • SAP Lumira Connection to Protected App Server

    Hi All,
    Report in lumira on top of a universe, requires connection to BI application server (CMS Name, User ID & Password).
    But in our production server we have siteminder integration and business users are not allowed to connect to application server directly, in this case can we use URL instead of CMS name OR is it possible to connect to application server without port opening to use Lumira ?
    Please suggest.
    Thanks and Regards,
    Ankit Sharma

    Hi,
    according to the help guide http://help.sap.com/businessobject/product_guides/vi01/en/lum_117_user_en.pdf
    section 5.9.1 Connecting to a universe datasource
    ->  Enter the name or IP address of the server hosting your Central Management Server (CMS).
    I feel this would be a very strong topic for consideration and future inclusion. Please could you submit your enhancement to the Lumira Ideas Place?    (over here: SAP Lumira: Home )
    I seem to remember someone asking for the ability to connect to an @Clustername  but can't find it alas..
    regards,
    H

  • Problem while installing iPlanet App server 6.5

    when trying to install iplanet app server 6.5 on solaris 2.8, downloaded from the net, the installation hangs when displaying the progress bar. We have iplanet web server 6.0 sp2 installed in the machine. We also installed all the solaris patches it required. we tried 3,4 times,it is not giving any error message,just the installation screen hangs....
    Thanks in advance,
    [email protected]

    Hi,
    I haven't come across such an issue before but I would like to help. This could be probably because, the downloaded file may be corrupted due to come reasons. I would recomend you to give a try after downloading it once again. Please let me know your thoughts on the same.
    Regards
    Ganesh .R
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support

  • Problem connecting to godaddy exchange server via outlook client

    I am pretty much having a very similar problem here:
    https://social.technet.microsoft.com/Forums/exchange/en-US/437c5f8d-3a42-4689-90b4-13fd2749373f/go-daddy-ucc-certificate-exrca-can-only-validate-the-certificate-chain-using-the-root-certificate?forum=exchangesvr3rdpartyappslegacy
    When I set up in outlook, I have noticed this in advanced connection settings:
    the URL is required
    mail.ex4.secureserver.net
    Then check connect SSL only
    Only connect to proxy servers with this principal name
    msstd:mail.ex4.secureserver.net
    When I use the connect principal, it works fine, but otherwise if it is not checked, it won't connect to the server.
    http://www.experts-exchange.com/Software/Server_Software/Email_Servers/Exchange/Q_26423254.html
    However, when I restart outlook, because I have multiple exchange accounts, they keep becoming "unchecked".
    Everything worked fine about 48 hours ago, and now... all these problems.
    Here is my log from the testing site:
    Connectivity Test Failed
    Test Details
        Testing Outlook connectivity.
         The Outlook connectivity test failed.
        Additional Details
    Elapsed Time: 3897 ms.
        Test Steps
        Testing RPC over HTTP connectivity to server mail.ex4.secureserver.net
         RPC over HTTP connectivity failed.
        Additional Details
    HTTP Response Headers:
    Content-Type: text/html
    Server: Microsoft-IIS/7.5
    WWW-Authenticate: Negotiate,NTLM
    X-Powered-By: ASP.NET
    Date: Fri, 13 Feb 2015 01:07:27 GMT
    Content-Length: 58
    Elapsed Time: 3897 ms.
        Test Steps
        Attempting to resolve the host name mail.ex4.secureserver.net in DNS.
         The host name resolved successfully.
        Additional Details
    IP addresses returned: 72.167.83.115
    Elapsed Time: 95 ms.
        Testing TCP port 443 on host mail.ex4.secureserver.net to ensure it's listening and open.
         The port was opened successfully.
        Additional Details
    Elapsed Time: 110 ms.
        Testing the SSL certificate to make sure it's valid.
         The certificate passed all validation requirements.
        Additional Details
    Elapsed Time: 461 ms.
        Test Steps
        The Microsoft Connectivity Analyzer is attempting to obtain the SSL certificate from remote server mail.ex4.secureserver.net on port 443.
         The Microsoft Connectivity Analyzer successfully obtained the remote SSL certificate.
        Additional Details
    Remote Certificate Subject: CN=mail.ex4.secureserver.net, O="Starfield Technologies, LLC.", L=Scottsdale, S=AZ, C=US, Issuer: SERIALNUMBER=10688435, CN=Starfield Secure Certification Authority, OU=http://certificates.starfieldtech.com/repository,
    O="Starfield Technologies, Inc.", L=Scottsdale, S=Arizona, C=US.
    Elapsed Time: 356 ms.
        Validating the certificate name.
         The certificate name was validated successfully.
        Additional Details
    Host name mail.ex4.secureserver.net was found in the Certificate Subject Common name.
    Elapsed Time: 0 ms.
        Certificate trust is being validated.
         The certificate is trusted and all certificates are present in the chain.
        Test Steps
        The Microsoft Connectivity Analyzer is attempting to build certificate chains for certificate CN=mail.ex4.secureserver.net, O="Starfield Technologies, LLC.", L=Scottsdale, S=AZ, C=US.
         One or more certificate chains were constructed successfully.
        Additional Details
    A total of 1 chains were built. The highest quality chain ends in root certificate OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US.
    Elapsed Time: 39 ms.
        Analyzing the certificate chains for compatibility problems with versions of Windows.
         Potential compatibility problems were identified with some versions of Windows.
        Additional Details
    The Microsoft Connectivity Analyzer can only validate the certificate chain using the Root Certificate Update functionality from Windows Update. Your certificate may not be trusted on Windows if the "Update Root Certificates" feature isn't enabled.
    Elapsed Time: 5 ms.
        Testing the certificate date to confirm the certificate is valid.
         Date validation passed. The certificate hasn't expired.
        Additional Details
    The certificate is valid. NotBefore = 11/29/2012 8:39:18 PM, NotAfter = 11/29/2015 8:39:18 PM
    Elapsed Time: 0 ms.
        Checking the IIS configuration for client certificate authentication.
         Client certificate authentication wasn't detected.
        Additional Details
    Accept/Require Client Certificates isn't configured.
    Elapsed Time: 232 ms.
        Testing HTTP Authentication Methods for URL https://mail.ex4.secureserver.net/rpc/rpcproxy.dll?mail.ex4.secureserver.net:6002.
         The HTTP authentication methods are correct.
        Additional Details
    The Microsoft Connectivity Analyzer found all expected authentication methods and no disallowed methods. Methods found: Negotiate, NTLM
    HTTP Response Headers:
    Content-Type: text/html
    Server: Microsoft-IIS/7.5
    WWW-Authenticate: Negotiate,NTLM
    X-Powered-By: ASP.NET
    Date: Fri, 13 Feb 2015 01:07:27 GMT
    Content-Length: 58
    Elapsed Time: 146 ms.
        Attempting to ping RPC proxy mail.ex4.secureserver.net.
         RPC Proxy was pinged successfully.
        Additional Details
    Elapsed Time: 224 ms.
        Attempting to ping the MAPI Mail Store endpoint with identity: mail.ex4.secureserver.net:6001.
         The attempt to ping the endpoint failed.
          Tell me more about this issue and how to resolve it
        Additional Details
    The RPC_S_SERVER_UNAVAILABLE error (0x6ba) was thrown by the RPC Runtime process.
    Elapsed Time: 2626 ms.

    Here is another test from the autodiscover:
        The Microsoft Connectivity Analyzer is attempting to test Autodiscover for [email protected].
         Autodiscover was tested successfully.
        Additional Details
    Elapsed Time: 1745 ms.
        Test Steps
        Attempting each method of contacting the Autodiscover service.
         The Autodiscover service was tested successfully.
        Additional Details
    Elapsed Time: 1745 ms.
        Test Steps
        Attempting to test potential Autodiscover URL https://MYDOMAIN.com:443/Autodiscover/Autodiscover.xml
         Testing of the Autodiscover URL was successful.
        Additional Details
    Elapsed Time: 1745 ms.
        Test Steps
        Attempting to resolve the host name MYDOMAIN.com in DNS.
         The host name resolved successfully.
        Additional Details
    IP addresses returned: xx.168.xx.74
    Elapsed Time: 59 ms.
        Testing TCP port 443 on host MYDOMAIN.com to ensure it's listening and open.
         The port was opened successfully.
        Additional Details
    Elapsed Time: 60 ms.
        Testing the SSL certificate to make sure it's valid.
         The certificate passed all validation requirements.
        Additional Details
    Elapsed Time: 197 ms.
        Test Steps
        The Microsoft Connectivity Analyzer is attempting to obtain the SSL certificate from remote server MYDOMAIN.com on port 443.
         The Microsoft Connectivity Analyzer successfully obtained the remote SSL certificate.
        Additional Details
    Remote Certificate Subject: CN=MYDOMAIN.com, OU=Domain Control Validated, Issuer: CN=Starfield Secure Certificate Authority - G2, OU=http://certs.starfieldtech.com/repository/, O="Starfield Technologies, Inc.", L=Scottsdale, S=Arizona, C=US.
    Elapsed Time: 132 ms.
        Validating the certificate name.
         The certificate name was validated successfully.
        Additional Details
    Host name MYDOMAIN.com was found in the Certificate Subject Common name.
    Elapsed Time: 0 ms.
        Certificate trust is being validated.
         The certificate is trusted and all certificates are present in the chain.
        Test Steps
        The Microsoft Connectivity Analyzer is attempting to build certificate chains for certificate CN=MYDOMAIN.com, OU=Domain Control Validated.
         One or more certificate chains were constructed successfully.
        Additional Details
    A total of 2 chains were built. The highest quality chain ends in root certificate OU=Starfield Class 2 Certification Authority, O="Starfield Technologies, Inc.", C=US.
    Elapsed Time: 27 ms.
        Analyzing the certificate chains for compatibility problems with versions of Windows.
         Potential compatibility problems were identified with some versions of Windows.
        Additional Details
    The Microsoft Connectivity Analyzer can only validate the certificate chain using the Root Certificate Update functionality from Windows Update. Your certificate may not be trusted on Windows if the "Update Root Certificates" feature isn't enabled.
    Elapsed Time: 4 ms.
        Testing the certificate date to confirm the certificate is valid.
         Date validation passed. The certificate hasn't expired.
        Additional Details
    The certificate is valid. NotBefore = 7/2/2014 2:30:01 AM, NotAfter = 7/2/2015 2:30:01 AM
    Elapsed Time: 0 ms.
        Checking the IIS configuration for client certificate authentication.
         Client certificate authentication wasn't detected.
        Additional Details
    Accept/Require Client Certificates isn't configured.
    Elapsed Time: 673 ms.
        Attempting to send an Autodiscover POST request to potential Autodiscover URLs.
         The Microsoft Connectivity Analyzer successfully retrieved Autodiscover settings by sending an Autodiscover POST.
        Additional Details
    Elapsed Time: 754 ms.
        Test Steps
        The Microsoft Connectivity Analyzer is attempting to retrieve an XML Autodiscover response from URL https://MYDOMAIN.com:443/Autodiscover/Autodiscover.xml for user [email protected].
         The Autodiscover XML response was successfully retrieved.
        Additional Details
    Autodiscover Account Settings
    XML response:
    <?xml version="1.0"?>
    <Autodiscover xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
    <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/outlook/responseschema/2006a">
    <User>
    <DisplayName>[email protected]</DisplayName>
    </User>
    <Account>
    <AccountType>email</AccountType>
    <Action>settings</Action>
    <Protocol>
    <Type>IMAP</Type>
    <Server>MYDOMAIN.com</Server>
    <Port>993</Port>
    <DirectoryPort>0</DirectoryPort>
    <ReferralPort>0</ReferralPort>
    <SSL>on</SSL>
    <DomainRequired>off</DomainRequired>
    <SPA>off</SPA>
    <AuthRequired>on</AuthRequired>
    <LoginName>[email protected]</LoginName>
    </Protocol>
    <Protocol>
    <Type>SMTP</Type>
    <Server>MYDOMAIN.com</Server>
    <Port>465</Port>
    <DirectoryPort>0</DirectoryPort>
    <ReferralPort>0</ReferralPort>
    <SSL>on</SSL>
    <DomainRequired>off</DomainRequired>
    <SPA>off</SPA>
    <AuthRequired>on</AuthRequired>
    <LoginName>[email protected]</LoginName>
    </Protocol>
    </Account>
    </Response>
    </Autodiscover>
    HTTP Response Headers:
    Keep-Alive: timeout=15, max=256
    Connection: Keep-Alive
    Content-Length: 1227
    Content-Type: application/xml; charset="UTF-8"
    Date: Fri, 13 Feb 2015 01:14:56 GMT
    Server: Apache/2.2.27 (Unix) mod_ssl/2.2.27 OpenSSL/1.0.1e-fips DAV/2 mod_bwlimited/1.4 mod_fcgid/2.3.9
    Elapsed Time: 754 ms.

Maybe you are looking for