Client Certification unknown login exception: no root LoginException found

HI,
      Am triyng to configure Client Certicate authentication in Portal.
      Am using SAP Passport CA to test the scenario.
      I've configured SSL
      I've done the necessary configurations in VA. ANd also mapped the certifcate to a portal user ID through useradmin in portal.
      But when i tried to view a "certlogon" authentication iview, the portal logon screen appears and  throws the exception
       unknown login exception: no root LoginException found
Please help me on this...
Regards,
mcsekar

Hello mcsekar,
I know this message is for very long time ago, Please mybe you can help me, I get the same error, on SAP portal, I had not change any thing, after restart of portal i cannot logon.
Thanks

Similar Messages

  • Unknown host exception when weblogic is a https client to another server

    Hi,
    I have weblogic 6.1 sp2. My program connects as a client using https protocol.
    For this the classes provided by wls are used .
    The key , cert and ca files are of weblogic available in wlserver6.1\config\mydomain
    demokey.pem, democert.pem and ca.pem, installed during weblogic installation
    When this code is exceuted it gives a Unknown host exception at the point when
    trying to connect to the url.
    Are there any settings required in weblogic ?
    Regards
    Lata

    Hi,
    I have weblogic 6.1 sp2. My program connects as a client using https protocol.
    For this the classes provided by wls are used .
    The key , cert and ca files are of weblogic available in wlserver6.1\config\mydomain
    demokey.pem, democert.pem and ca.pem, installed during weblogic installation
    When this code is exceuted it gives a Unknown host exception at the point when
    trying to connect to the url.
    Are there any settings required in weblogic ?
    Regards
    Lata

  • SSMS.exe for SQL Server 2012 is getting Application Error: The exception unknown software exception (0xe0434352) occurred in the application at location 0x75c5c42d.

    SQL Server 2012 Management Studio attempting to log into a SQL Server 2012 instance on a remote server using SQL Authenticated login.
    What does this error mean and what can I do to fix it?
    Thanks in advance!

    Hi Nick,
    Have you seen any additionally information from Windows Event Viewer?
    Based on my research, exception code e0434352  is the exception code used internally by the CLR to represent most exceptions(*), it could mean anything. If you want to find out exactly what the real error is, please review this
    blog.
    In addition, in such case, Microsoft .Net Framework may need to be updated or repaired on your computer. For more details, you can refer to the following similar thread.
    http://answers.microsoft.com/en-us/windows/forum/windows8_1-performance/the-exception-unknown-software-exception/f1404ce4-cdbe-4758-aa19-bad55fcc099c
    Thanks,
    Lydia Zhang

  • Tunneling and problem with unknown host exception

    hello! i've got a problem with https. i use jdk 1.5.0, jboss-4.0.4.ga-patch1, soap.
    and i'm going crasy.. i've testet my client code at our network and it works fine. but if i want to get jobs from the server of our customer, my client throw an "unknown host exception: firm".
    i wonder why it hasn't the full host. the url may look like this: https://firm.sub.com:443/ and while the client connects to the server, i depugged it and the host is correct: firm.sub.
    but after the connection, when the client want to get something from the server (when it wants to communicate with the server over soap) it crashs.
    my client code looks like this:
    private ClientInterfaceEndpoint getClientInterface() throws ServiceException {
    QName serviceQName = new QName(DOCSERVER_NAMESPACE, CLIENT_INTERFACE_SERVICENAME);
    URL wsdlUrl = getClientInterfaceWsdlUrl();
    log.info("*******WSDLURL host: " + wsdlUrl.getHost()); // out: firm.sub
    log.info("*******WSDLURL port: " + wsdlUrl.getPort()); // out: 443
    URL mapping = getClass().getClassLoader().getResource("META-INF/DocumentServer_Mapping.xml");
    log.info("*******MappingURL path: " + mapping.getPath());
    if (wsdlUrl.toString().toLowerCase().contains("https")) {
    if (null == getConfig().getTruststore() || getConfig().getTruststore().equalsIgnoreCase("")) {
    throw new RuntimeException("No or incorrect TruststorePath in the docclient-config");
    File tmp = new File(getConfig().getTruststore());
    if (!tmp.isFile() || !tmp.canRead()) {
    throw new RuntimeException("The truststore at the 'TruststorePath' isn't a file or can't be read.");
    System.setProperty(SYS_PROPERTY_KEY_TRUST, getConfig().getTruststore());
    System.setProperty(SYS_PROPERTY_KEY_TRUST_PW, config.getTruststorePass());
    ServiceFactoryImpl factory = null;
    factory = (ServiceFactoryImpl) ServiceFactory.newInstance();
    Service clientInterfaceService = null;
    try {// create the service for the ClientInterface
    clientInterfaceService = factory.createService(wsdlUrl, serviceQName, mapping, new URL(config.getServerURL())); //, new URL(config.getServerURL())
    log.info("*******ClientInterFaceService WSDL URL Host: " + clientInterfaceService.getWSDLDocumentLocation().getHost()); // out:firm.sub
    log.info("*******ClientInterFaceService WSDL URL Port: " + clientInterfaceService.getWSDLDocumentLocation().getPort()); // out: 443
    } catch (ServiceException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (MalformedURLException e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    } catch (Exception e) {
    log.error(e.getMessage());
    throw new RuntimeException(e.getMessage());
    }// getting the ClientInterfaceEndpoint
    ClientInterfaceEndpoint clientInterface = (ClientInterfaceEndpoint) clientInterfaceService.getPort(ClientInterfaceEndpoint.class);
    return clientInterface;
    protected URL getClientInterfaceWsdlUrl() {
    URL url = null;
    String urlString = getConfig().getServerURL() + CLIENT_INTERFACE_URI + "?wsdl";
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty(SYS_PROPERTY_KEY_PKGS);
    if (handlers == null) {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS);
    else {
    properties.put(SYS_PROPERTY_KEY_PKGS, SYS_PROPERTY_VALUE_PKGS.concat("|").concat(handlers));
    try {
    url = new URL(urlString);
    log.info("*******URL host: " + url.getHost());
    log.info("*******URL port: " + url.getPort());
    log.info("*******URL path: " + url.getPath());
    } catch (MalformedURLException e) {
    log.fatal("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString);
    throw new RuntimeException("DocumentProvider SOAP configured incorrectly. DocServer URL malformed: " + urlString, e);
    System.setProperties(properties);
    return url;
    }if it's usefull: the customer use a apache server (not tomcat) where a the server is and the client at another system the jboss.
    The customer told me: if i want to connect the client via http i have to tunnel.. maybe i have to tunnel using https too?
    have i to generate the endpoint classes a second time, extra for https?
    or doesn't soap like host like "firm.sub"?
    can anyone help me please?!
    sorry, my english isn't very well...

    sorry, it's not the same error. The output is: Unable to connect to any host due to exception: java.net.socket.exception: java.net.socket.exception: Unregcognized windows socket error: 10106: create.

  • Problems deploying PSE 9 with SCCM - "unknown software exception"

    Hy!
    I've read the Silent Installations Instructions in the Knowlage Base (http://kb2.adobe.com/cps/861/cpsid_86149.html)  and tested it on a test computer with this commandline (install.bat):
    @echo off
    start /wait C:\PSE9\Setup.exe /UL1031 /V"SERIALNUMBER=1111-1111-1111-1111-1111-1111 COUNTRY=14"
    My "application.xml.override":
    <?xml version="1.0" encoding="utf-8"?>
    <Configuration>
    <Payload>
      <Data key="EULADelay">0</Data>
      <Data key="EULA">Suppress</Data>
      <Data key="Registration">Suppress</Data>
      <Data key="Updates">Suppress</Data>
    </Payload>
    </Configuration>
    My part of "setup.ini":
    [OEM]
    OEM=
    SERIALNUMBER=
    DISABLEEMSFEATURES=1
    DISABLEOLSFEATURES=1
    WATCHSERVICE=0
    MANUAL=
    REBOOT=
    On a local Installation the Installation works fine without any Error.
    Now, I'm trying to deploy PSE 9 on 10 test computers using SCCM. SCCM commandline was: Setup.exe /UL1031 /V"SERIALNUMBER=1111-1111-1111-1111-1111-1111 COUNTRY=14"
    SCCM shows that the Installation ends with an error.
    I'd looked on the testclients and every Client showed an "unknown software exception" on setup.exe:
    "Setup.exe - Error in application; The exception "unknown software exception" (0x000000d) happend in application in place of 0x004195cf.
    Here is a screenshot of this errormessage:
    After I logged into the Client there is the Desktop Icon of PSE. I'm not really sure if the installation is finished successfully when this error occur.
    Somebody knows a solution?
    Big Thanks for Help.
    Greetings

    After further try and error, using the following alternative method of setting a dataset works:
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRDataSet crDataset = CrystalDecisions.ReportAppServer.DataSetConversion.DataSetConverter.Convert(m_XmlInfo.CustomDataSet);
    report.ReportClientDocument.DatabaseController.SetDataSource(crDataset, string.Empty, string.Empty);

  • Crash de sapb18.8 Se produjo la excepcion unknown software exception (0xc00

    Buend dia chicos,
    Tengo un caso en el que al realizar cualquier operación de b1 de cualquier modulo y de manera aleatoria aparece un mensaje de error  "Se produjo la excepcion unknown software exception (0xc000000d) la ubicacion 0x71e4c". haga click para finalizar el programa" y b1 se cierra.  he buscado  en notas de sap pero no encuentro nada al respecto que me pueda orientar. En la red he encontrado que son problema de memoria dañanada etc. o de sistema operativo y bueno se muestra al ejecutar cualquier programa, en mi caso solo se presenta en cualquier actividad que se esté realizando dentro de SAP.
    Estoy trabajando en la version 8.8 pl 18
    -¿A alguien le ha pasado algo similar que me pueda orientar?.
    agradezco de antemano su apoyo.
    saludos.

    HOLA CHICOS,
    Les comento que si se hicieron actualizaciones automaticas de windows, el cliente estaba trabajando con la una maquina cliente win7 y un winserver 2003. Lo curioso es que 3 clientes reportaron el mismo caso por lo que 2 volvieron a restaurar la sesión  y otro cambió de plataforma a win 2008 y no volvió a ocurrir el error.
    Agradezco su apoyo saludos.
    NANCY.

  • Client Certification

    Hi,
    My application has to communicate with a Server using Server and Client Authentification. Using the default Trustmanager, I get an unknown certificate ValidatorException.
    When I use my custom Trustmanager to disable th server certification, I get an 403 Not authorized Error.
    So here are my questions:
    1-Is the server certification obligatory for the client certification. I mean if I disable the server check, is it possible to establish the communication?
    2-In the debug output I noticed the following:
    ###########BEGIN##########
    0B40: 41 20 44 65 75 74 73 63 68 6C 61 6E 64 20 30 33 A Deutschland 03
    *** ServerHelloDone
    [read] MD5 and SHA1 hashes: len = 4
    0000: 0E 00 00 00 ....
    *** Certificate chain
    *** <==== IS THIS WRONG? IS IT Normal that the certificate chain is not written ?
    JsseJce: Using cipher RSA/ECB/PKCS1Padding from provider BC
    *** ClientKeyExchange, RSA PreMasterSecret, TLSv1
    #############END############
    Is ist normal that the certificate chain is not shown, although it is listed at the beginning of the debug output:
    adding as trusted cert:
    Subject: CN=GRP: Auslpertal, ....
    Issuer: CN=CA TESTA .... Algorithm: RSA; ...
    Valid from Thu .....
    trigger seeding of SecureRandom
    done seeding SecureRandom
    %% No cached client session
    *** ClientHello, TLSv1
    What could be the reason of the error?
    I am using JDK 1.4.2(tried it with JDK1.4 too) and BouncyCastleProvider 119(tried it with SunJSSE too)
    Please help a.s.a.p
    thanx in advance
    aniss

    403 Not Authorized is an HTTP error code. It looks like maybe the SSL handshake completed successfully but for some reason the server is returning a 403 on the particular URL you are trying to retrieve.

  • Ctios exited with unknown exit/exception code 80

    I'm seeing random disconnects for CTIOS service on one of my PG's.
    From the CTIOS_nm:
     CTIOS1-nm Process ctios on ICM\xxxx\CTIOS1 went down for unknown reason. Exit code 0x80. It will be automatically restarted. 
    1 CTIOS1-nm Trace: main: noticed process ctios handle 188 exited with unknown exit/exception code 80
    MDS just shows this:
     Unexpected disconnect from client ctios1b.
      Last EMT Error [-519897069]: The remote process has exited.
     Client ctios1b registered with handle 166.
     Client ctios1b started. 
    Nothing telling in the windows app logs either.

    After further try and error, using the following alternative method of setting a dataset works:
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRDataSet crDataset = CrystalDecisions.ReportAppServer.DataSetConversion.DataSetConverter.Convert(m_XmlInfo.CustomDataSet);
    report.ReportClientDocument.DatabaseController.SetDataSource(crDataset, string.Empty, string.Empty);

  • JAX-WS Client throws NULL Pointer Exception in NW 7.1 SP3 and higher

    All,
    My JAX-WS client is throwing an exception when attempting to create a client to connect to the calculation service. The exception is coming out of the core JAX-WS classes that are part of NetWeaver. (see exception below)
    Caused by: java.lang.NullPointerException
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatchContextExistingPort(SAPServiceDelegate.java:440)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatchContext(SAPServiceDelegate.java:475)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatch(SAPServiceDelegate.java:492)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.SAPServiceDelegate.createDispatch(SAPServiceDelegate.java:484)
         at javax.xml.ws.Service.createDispatch(Service.java:166)
    I have done some research and it appears that as of NetWeaver 7.1 SP3 SAP stopped using the SUN JAX-WS runtime and implemented their own SAP JAX-WS runtime. I also took the time to decompile the jar file that contained the SAPServiceDelegate class which is throwing the null pointer exception. (see method from SAPServiceDelegate below)
        private ClientConfigurationContext createDispatchContextExistingPort(QName portName, JAXBContext jaxbContext)
            BindingData bindingData;
            InterfaceMapping interfaceMap;
            InterfaceData interfaceData;
            bindingData = clientServiceCtx.getServiceData().getBindingData(portName);
            if(bindingData == null)
                throw new WebServiceException((new StringBuilder()).append("Binding data '").append(portName.toString()).append("' is missing!").toString());
            QName bindingQName = new QName(bindingData.getBindingNamespace(), bindingData.getBindingName());
            interfaceMap = getInterfaceMapping(bindingQName, clientServiceCtx);
            interfaceData = getInterfaceData(interfaceMap.getPortType());
            ClientConfigurationContext result = DynamicServiceImpl.createClientConfiguration(bindingData, interfaceData, interfaceMap, null, jaxbContext, getClass().getClassLoader(), clientServiceCtx, new SOAPTransportBinding(), false, 1);
            return result;
            WebserviceClientException x;
            x;
            throw new WebServiceException(x);
    The exception is being throw on the line where the interfaceMap.getPortType() is being passed into the getInterfaceData method. I checked the getInterfaceMapping method which returns the interfaceMap (line above the line throwing the exception). This method returns NULL if an interface cannot be found. (see getInterfaceMapping method  below)
       public static InterfaceMapping getInterfaceMapping(QName bindingQName, ClientServiceContext context)
            InterfaceMapping interfaces[] = context.getMappingRules().getInterface();
            for(int i = 0; i < interfaces.length; i++)
                if(bindingQName.equals(interfaces<i>.getBindingQName()))
                    return interfaces<i>;
            return null;
    What appears to be happening is that the getInterfaceMapping method returns NULL then the next line in the createDispatchContextExistingPort method attempts to call the getPortType() method on a NULL and throws the Null Pointer Exception.
    I have included the code we use to create a client below. It works fine on all the platforms we support with the exception of NetWeaver 7.1 SP3 and higher (I already checked SP5 as well)
          //Create URL for service WSDL
          URL serviceURL = new URL(null, wsEndpointWSDL);
          //create service qname
          QName serviceQName = new QName(targetNamespace, "WSService");
          //create port qname
          QName portQName = new QName(targetNamespace, "WSPortName");
          //create service
          Service service = Service.create(serviceURL, serviceQName);
          //create dispatch on port
          serviceDispatch = service.createDispatch(portQName, Source.class, Service.Mode.PAYLOAD);
    What do I need to change in order to create a JAX-WS dispatch client on top of the SAP JAX-WS runtime?

    Hi Guys,
    I am getting the same error. Any resolution or updates on this.
    Were you able to fix this error.
    Thanks,
    Yomesh

  • Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.

    SP 2013 Server + Dec 2013 CU. Upgrading from SharePoint 2010.
    We have a web application that is distributed over 7-8 content databases from SharePoint 2010. All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.
    while running Test-SPContentDatabase or Mount-SPContentDatabase.
    EventViewer has the following reporting 5586 event Id:
    Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.
    After searching a bit, these links do not help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/fd020a41-51e6-4a89-9d16-38bff9201241/invalid-object-name-webs?forum=sharepointadmin
    we are trying PowerShell only.
    http://blog.thefullcircle.com/2013/06/mount-spcontentdatabase-and-test-spcontentdatabase-fail-with-either-invalid-object-name-sites-or-webs/
    In our case, these are content databases. This is validated from Central Admin.
    http://sharepointjotter.blogspot.com/2012/08/sharepoint-2010-exception-invalid.html
    Our's is SharePoint 2013
    http://zimmergren.net/technical/findbestcontentdatabaseforsitecreation-problem-after-upgrading-to-sharepoint-2013-solution
    Does not seem like the same exact problem.
    Any additional input?
    Thanks, Soumya | MCITP, SharePoint 2010

    Hi,
    “All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.”
    Did the sentence you mean only one database not upgrade to SharePoint 2013 and given the error?
    One or more of the following might be the cause:
    Insufficient SQL Server database permissions
    SQL Server database is full
    Incorrect MDAC version
    SQL Server database not found
    Incorrect version of SQL Server
    SQL Server collation is not supported
    Database is read-only
    To resolve the issue, you can refer to the following article which contains the causes and resolutions.
    http://technet.microsoft.com/en-us/library/ee513056(v=office.14).aspx
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • Encrypted Alert (21) - Windows 7 client web page login falure

    Hello community,
    I have a challenge for you.  This is a very odd issue I am having. 
    Let me outline my basic environment. I have a Windows 2003 Server which serves as the DHCP with a (2-day lease), Windows 7 Clients (fully patched) running IE 11 (fully patched), and a SonicWALL NSA 2400 firewall running the latest firmware 5.8.17xx (SSL
    controls are not enabled).
    Symptoms: From the Win7 client I open a specific secure web page https:// and after I enter my user name and password I get a server side message “cannot connect to our authentication server”. 
    I called the web site support and they said the message will display if the client trying to connect to the remote server for authentication does not use port 4000. 
    I can try to login over and over again but I always get the same message.
    I can see by using the NETSTAT command that port 4000 is being opened on the client but the connection always fails. 
    After running WireShark I discovered that just after the [Login] button is clicked the SSL3.1/TLSv1.2 TCP session is started with the Client and Server saying their respective Hello’s, key exchanges, and cipher change but just after that I get a transmission,
    from the server side, of “Encryption Alert” (21) and then a [FIN] packet which closes the session.
     This is when the “cannot connect to our authentication server” message pops since the session has a fatal error decrypting the packet.
    After hours of trial and error, plus reading online, I found I have the option to peer inside these encrypted packets to maybe see more information about the problem with the “bad” packet. 
    I’m not sure what key to use to put into the SSL preferences in WireShark.
      I have tried many things to find a workaround and have found only one way that works consistently.
     I have about 10 clients that login each day and the problem in intermittent. 
    Normally 1 or 2 clients will have the problem each day; it’s a crap shoot that it will happen to anyone. 
    Well, at least I have not found a pattern yet if there is one.
    Temporary Fix: After the client web page login fails, I can run the following commands. 
    I run the first command to set a static IP and then login to the web site and it suddenly works.
     I then log out of the web site and I run the second command to get the client back to a dynamic IP. 
    I login to the web page again the login works.  After a random number of days go by the problem comes back and I have to run this temporary fix again.
    (1)
    netsh int ip set address "Local Area Connection" static {ip address} {ip mask} {default gw}
    netsh int ip set address "Local Area Connection" dns {ip address}
    (2)
     netsh int ip set address "Local Area Connection" dhcp
    Just renewing the IP address from DHCP will not do the trick; I have to set it static first. 
    Any ideas on what may be happening during the Static IP setting that would fix this? 
    I know that Microsoft just recently patched the SCHANNEL file(s) in November. 
    I started seeing this issue on December 15<sup>th</sup>.
    I’m currently assuming that there is a defective packet because according to MSDN and RFC tables the “Encrypted Alert” 21 code means
    decryption_failed – “Decryption of a TLSCiphertext record is decrypted in an invalid way: either it was not an even multiple of the block length or its padding values, when checked, were not correct. This message is always fatal.”
    I really appreciate and insight any may have on how this process works and what may be happening.
    - Dr. Dig

    MeipoXu,
    Thanks for the reply and fantastic link to that detail.  I am seeing events on many workstations, and not just the ones with this problem.  The event ID is 36887 and the message is “The following fatal alert was received: 40”.  I did some
    research on this error and it appears that it is related to the MS kb-2992611 patch.  Apparently the patch, which we did deploy back in December, has caused a number of schannel problems, while trying to fix some.  Our issue started on 12/15/14. 
    There's an article on ZDnet (search for "Microsoft Warns of problems with Schannel security update") where it explains what is happening since the patch.
    I have done two things to fix it, without removing the MS-patch. 
    The one manual fix I mentioned in my first post and I can also uncheck the 3.0 SSL/1.2 TLS in my IE browser. 
    In fact I went back to SSL 2.0 / TLS 1.0 and have not had any problems for 6 days now. 
    I am going to set a PC back to the “problem” settings to confirm 1.2 TLS is my problem. I’ll report back my findings for others. 
    The one thing to note is that we login to multiple secure sites and only one has the issue. 
    I suspect the other side has done, or not done, something to make the issue happen with my settings.
    Dr_Dig

  • Reader XI - unknown software exception

    I have Acrobat Reader XI on a Windows XP SP3 PC.
    When I open a .pdf file by double clicking on it, before Reader XI runs I get the following error in a pop-up window:
    The exception unknown software exception (0xc0000409) occurred in the application at location 0x00411e0b. (The location address changes each time).
    From then on, I keep getting the same pop up appearing on top of other program windows even when I am not actively trying to access a .pdf file, but if a Windows Explorer window containing .pdfs is still open. It's even doing it as I try to type this....
    It seems random whether or not the box goes away if I click OK or Cancel.
    Bizarrely, every .pdf document I have tried has still opened in Reader XI fine after getting rid of the pop-up.
    I have uninstalled Reader XI completely (using the Windows "Add/Remove Programs dialogue) and reinstalled using a fresh download of the program from http://www.adobe.com/support/downloads/detail.jsp?ftpID=5507, but there is no improvement.
    I have found several previous mentions of this error on this forum (and it is all over Google) but have found no solution that works for me so far.
    Please assist if you can.

    As there have been no other suggestions, I tried uninstalling Reader XI and went back to Reader X.
    Now that comes up with an error message in a very similar way, except the message now reads:
    "Adobe Reader X- There was an error opening this document. This file cannot be found."
    It's infuriating when every .pdf I have tried DOES open and display fine, so these annoying error messages are actually wrong.
    But they still just keep popping up, even when I am simply working in another program, but just happen to have a Windows Explorer window open in the background showing the contents of a folder that includes one or more .pdf files.
    Surely someone from Adobe can advise????

  • HT203175 When I install itunes I received an error message like this:The exception unknown software exception (0Xc06007e) ocurred in the application at location 0x7c812afb

    When I install itunes I received an error message like this:The exception unknown software exception (0Xc06007e) ocurred in the application at location 0x7c812afb. After the installation the computer is showing the message every time.

    If you update your QuickTime Player, does that clear up the iTunes message?

  • Oracle 11g Client Certification Matrix

    hi all,
    Can someone point me to Oracle 11g client certification matrix? I was trying to install it on Windows Server 2008R2, but looks like this platform is unsupported. If I manually verify the options the installer thinks are unsafe, will I create an unsupported environment?
    Please advise.
    Thanks in advance,
    Alla

    Which version of 11g ? 11gR1 is not certified with Win2008
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32306/toc.htm#BABEHGHH
    For 11gR2, pl see MOS Doc 867040.1 (Statement of Direction: Oracle Database 11g Release 2 – Microsoft Windows 7 and Windows Server 2008 R2)
    HTH
    Srini

Maybe you are looking for

  • First time battery charge

    Hello, I just got myself a new 13-inch Macbook Pro retina display. I've been reading about the first battery charge and how to use it later on, but I have another question on the first charge: For the first charge, do I need to turn the Macbook off o

  • Can't Connect to Router Manager

    I want to review the Router Statistics but can't get connected. I have typed in the address,   http://192.168.1.1/ Also tried via the Router Icon &   http://voyager220v.home/  but get message "Can't Connect to Router" All other web sites are easy to

  • OBIEE 11g weblogic error.

    Hi All, When I restart my Bi weblogic server display the Bellow error. The policy reference URI "oracle/wss_username_token_service_policy" is not valid. i am unable to login answers.i follow this is URL http://hostilecoding.blogspot.com/2012/08/obiee

  • Adobe Reader XI doesn't print

    Hi everyone, my Reader doesn't print any PDF, even though the other programs do it regularly. I've tried to uninstall the program and clean the configurations file but nothing has changed. From another user account I can print with reader, so I think

  • Cfquery error

    Hi Folks, Having recently upgraded to CF 7, I'm getting loads of errors saying password and username undefined in the cfquery tag. Are these attributes necessary with cfquery in CF 7? Isnt there a security risk by not including them? Thankyou