Providing a common Connection from 1_WIRE_LO_REF

I am testing the continuity of several cables with DMM 4060 and SCXI 1127 in 1 wire mode. Since i can't connect the wires in the cable at the other end, i'm trying to use a saline solution and insert the cables in it with it's electrode connected to 1_WIRE_LO_REF. But unfortunately i'm getting a very high value of the resistances and it keeps increasing. Why is it so? Has anybody used a saline solution for providing conductivity and measuring with DMM 4060 or SCXI 1127?
Is there any other alternative ? How can i provide a common connection from 1_WIRE_LO_REF without making actaul connections?

Hi Mihye,
The SCB-68 numbers the screw terminals in such a way that they correspond with the pin numbers in the device pinout for hardware with a 68-pin connection.  Checking the pinout on page 5 of the 2503 specifications, it looks like pin 22 is the 1_WIRE_LO_REF line, so you should connect the reference signal to the screw terminal labeled 22.
Kyle B  |  Product Support Engineer  |  ni.com/support

Similar Messages

  • New server and/or CA certificate for connection from custom authentication

    We are running Access Manager version 72005Q4 in the Sun ONE Web Server 6.1SP5 B06/23/2005 container with java build 1.5.0_07-b03. I run a custom authentication module which checks sessions against our university single sign on system which is CAS (from Yale/Jasig). The checks are essentially https calls. All this has been working well for us for the last couple of years.
    I would like to migrate the certificate used on the university CAS system from a Verisign certificate to a wildcard certificate issued by the IPS CA in spain -- these are in most browsers but are not in the standard batch of cacerts CA's -- and are free for .edu domains.
    My other java based authentication plugins (Blackboard, custom apps etc) have worked fine once I import the certificate into the cacerts for the java container, but I'm missing something (obvious probably) about importing this certificate so that my amserver custom authentication module can connect to the CAS server once the CAS server is using the new certificate.
    Could anyone provide guidance on where I need to import this server certificate (or preferably the IPS CA) in order to allow the custom authentication module to work properly? I assume this same problem has been solved by people wishing to connect from the amserver to services with self signed certificates. For some reason I'm finding the debugging unexpectedly difficult, I'll outline some of those details below.
    Relevant things I've tried so far:
    Import both the server cert and the IPS CA into the cacerts of the java container identified in the web server server.xml /usr/jdk/entsys-j2se.
    Import the IPS CA into the web server cert8 style db via the web admin server.
    The debugging has surprised me a bit, as I'm not getting an error that is explicitly SSL related error. It almost seems like the URLConnection object ends up using a HttpURLConnection rather than an HttpsURLConnection and never gives me a cert error, rather a connection refused since there is no non SSL service running on CAS. The same code pointed to the server running the verisign cert works as expected.
    Part of the stack:
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: java.net.ConnectException: Connection refused
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at java.net.PlainSocketImpl.socketConnect(Native Method)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at java.net.Socket.connect(Socket.java:516)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at java.net.Socket.connect(Socket.java:466)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.http.HttpClient.openServer(HttpClient.java:365)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.http.HttpClient.openServer(HttpClient.java:477)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.http.HttpClient.<init>(HttpClient.java:214)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.http.HttpClient.New(HttpClient.java:287)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.http.HttpClient.New(HttpClient.java:311)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.protocol.http.HttpURLConnection.setNewClient(HttpURLConnection.java:489)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.protocol.http.HttpURLConnection.setNewClient(HttpURLConnection.java:477)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.protocol.http.HttpURLConnection.writeRequests(HttpURLConnection.java:422)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:937)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at edu.yale.its.tp.cas.util.SecureURL.retrieve(Unknown Source)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at edu.yale.its.tp.cas.client.ServiceTicketValidator.validate(Unknown Source)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at edu.fsu.ucs.authentication.providers.CASAMLoginModule.process(CASAMLoginModule.java:86)
    [28/Mar/2008:17:21:54] warning (25335): CORE3283: stderr: at com.sun.identity.authentication.spi.AMLoginModule.wrapProcess(AMLoginModule.java:729)
    The relevent bit of code from the SecureURL.retrieve looks as follows:
    URL u = new URL(url);
    if (!u.getProtocol().equals("https"))
    throw new IOException("only 'https' URLs are valid for this method");
    URLConnection uc = u.openConnection();
    uc.setRequestProperty("Connection", "close");
    r = new BufferedReader(new InputStreamReader(uc.getInputStream()));
    String line;
    StringBuffer buf = new StringBuffer();
    while ((line = r.readLine()) != null)
    buf.append(line + "\n");
    return buf.toString();
    } finally { ...
    The fact that this same code in other authentication modules running outside the amserver (in other web containers as well, tomcat and resin for example) running java 1.5 works fine with the new CA, as well as with self signed certs that I've imported into the appropriate cacerts file leads me to believe that I'm either importing the certificate into the wrong store, or that there is some additional step needed for the amserver in the Sun Web container.
    Thank you very much for any insights and help,
    Ethan

    I thought since this has had a fair number of views I would give an update.
    I have been able to confirm that the custom authentication module is using the cert8 db defined in the AMConfig property com.iplanet.am.admin.cli.certdb.dir as documented. I do seem to have a problem using the certificate to make outgoing connections, even though the certificate verifies correctly for use as a server certificate. This is likely a question for a different forum, but just to show what I'm looking at:
    root@jbc1 providers#/usr/sfw/bin/certutil -V -n "FSU Wildcard Certificate" -d /opt/SUNWwbsvr/alias -P https-jbc1.ucs.fsu.edu-jbc1- -u V
    certutil: certificate is valid
    root@jbc1 providers#/usr/sfw/bin/certutil -V -n "FSU Wildcard Certificate" -d /opt/SUNWwbsvr/alias -P https-jbc1.ucs.fsu.edu-jbc1- -u C
    certutil: certificate is invalid: Certificate type not approved for application.
    root@jbc1 providers#/usr/sfw/bin/certutil -M -n "FSU Wildcard Certificate" -d /opt/SUNWwbsvr/alias -P https-jbc1.ucs.fsu.edu-jbc1- -t uP,uP,uP
    root@jbc1 providers#/usr/sfw/bin/certutil -V -l -n "FSU Wildcard Certificate" -d /opt/SUNWwbsvr/alias -P https-jbc1.ucs.fsu.edu-jbc1- -u C
    FSU Wildcard Certificate : Certificate type not approved for application.
    So it could be that I don't understand how to use the certutiil to get the permissions I want, or it could be that using the same certificate for both server and client functions is not supported -- though you can see why this would be a common case with wildcard certificates.
    BTW for those interested, it did seem to be the case that when the certificate failure occurred that the attempt was then made by the URLConnection to bind to port 80 in cleartext even though the URL was clearly https. I'm sure this was just an attempt to help out misformed URL, but it seemed that the URLConnection implementation in the amserver would swapped traffic over cleartext if that port had been open on the server I was making the https connection to; that seems dangerous to me, I would not have wanted it to quietly work that way exposing sensitive information to the network.
    This was why I was getting back a connection refused instead of a certificate exception. The URLConnection implementation used by the amserver is defined by java.protocol.handler.pkgs=com.iplanet.services.comm argument passwd to the JVM, and I imagine this is done because the amserver pre-dates the inclusion of the sun.net.www.protocol handlers, but I don't know, there maybe reasons why the amserver wants it own handler. I only noticed that this is what was going on when I as casting the httpsURLConnection objects to other types trying to diagnose the certificate problem. I would be interested in hearing if anyone knows if there is a reason not to use sun.net.www.protocol with the amserver.
    After switching to the sun.net.www.protocol handler I was able to get my certificate errors rather than the "Connection Refused" which is what lead me to the above questions about certutil.

  • SSH and media wiki not connecting from outside of my LAN

    I cant seem to connect to ssh or my mediawiki server from outside of my LAN. Ive forwarded all the needed ports and been going over my config all night. I also made sure my router wasn't blocking anything.
    -ssh tells me connection denied
    -when i go to my http server i can list directorys but as soon as i try to load media wiki i get a 502 error
    *these problems do not happen if im connecting from another machine in my local LAN
    This is my sshd_config
    # $OpenBSD: ssh_config,v 1.25 2009/02/17 01:28:32 djm Exp $
    # This is the ssh client system-wide configuration file. See
    # ssh_config(5) for more information. This file provides defaults for
    # users, and the values can be changed in per-user configuration files
    # or on the command line.
    # Configuration data is parsed as follows:
    # 1. command line options
    # 2. user-specific file
    # 3. system-wide file
    # Any configuration value is only changed the first time it is set.
    # Thus, host-specific definitions should be at the beginning of the
    # configuration file, and defaults at the end.
    # Site-wide defaults for some commonly used options. For a comprehensive
    # list of available options, their meanings and defaults, please see the
    # ssh_config(5) man page.
    #Host *
    # ForwardAgent no
    # ForwardX11 yes
    # RhostsRSAAuthentication no
    # RSAAuthentication yes
    # PasswordAuthentication yes
    #HostbasedAuthentication yes
    # GSSAPIAuthentication no
    # GSSAPIDelegateCredentials no
    # BatchMode no
    # CheckHostIP yes
    #AddressFamily any
    # ConnectTimeout 0
    # StrictHostKeyChecking ask
    # IdentityFile ~/.ssh/identity
    # IdentityFile ~/.ssh/id_rsa
    # IdentityFile ~/.ssh/id_dsa
    #Port 22
    Protocol 2
    # Cipher 3des
    # Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
    # MACs hmac-md5,hmac-sha1,[email protected],hmac-ripemd160
    # EscapeChar ~
    # Tunnel yes
    # TunnelDevice any:any
    # PermitLocalCommand no
    # VisualHostKey no
    #RSAAuthentication yes
    #PubkeyAuthentication yes
    #HostbasedAuthentication no
    #PasswordAuthentication no
    #HashKnownHosts yes
    #StrictHostKeyChecking ask
    #LoginGraceTime 120
    #PermitRootLogin no # (put yes here if you want root login)
    hosts.deny
    # /etc/hosts.allow
    sshd: ALL
    mysqld: ALL
    # End of file
    # /etc/hosts.deny
    ALL: ALL: DENY
    # End of file
    hosts.allow
    # /etc/hosts.allow
    sshd: ALL
    mysqld: ALL
    # End of file
    I feel like its a security policy or something im not catching.
    Ive been searching and working to fix this all night to no avail.
    Thanks ahead of time for any help.

    djszapi wrote:
    Hello ahronzombi!
    Do you try it with apache web server ? If yes, is there any related information in the apache.log when someone try to connect from out. What's in your http server related config files, vhosts, etc?
    Ill try that today. i tried something similar with sshd and looked at the verbose output of the program when trying to connect remotely. it was never touched, like no one tried to connect. i feel like its a network security issue since i can connect locally. but ill check these logs as well

  • "The EXCH provider section is missing from the Autodiscover response." On single mailbox

    We have a single mailbox with this issue, the RCA tool returns the message:
     The EXCH provider section is missing from the Autodiscover response.
    No other mailboxes have issues with Outlook anywhere but this one user is unable to use their mailbox from Outlook. I tried creating a fresh mailbox for this user and completely deleted the old one but this didn't seem to work. anyone have any ideas on how
    I can resolve this?
    This is Exchange 2010, SP1 with all update rollups applied.

    This workstation's network connectivity is okay. And a test with any other user account information from the same station is successful. I've tried this from both a domain and non-domain station with the same results. But this test was from a domain machine.
    Also note that our internal and external URIs are identical as the CAS server is the same for both.
    Here is the full RCA output.
    Testing RPC/HTTP connectivity.
     The RPC/HTTP test failed.
     Test Steps
     ExRCA is attempting to test Autodiscover for
    [email protected].
     Autodiscover was tested successfully.
     Test Steps
     Attempting each method of contacting the Autodiscover service.
     The Autodiscover service was tested successfully.
     Test Steps
     Attempting to test potential Autodiscover URL
    https://research.osu.edu/AutoDiscover/AutoDiscover.xml
     Testing of this potential Autodiscover URL failed.
     Test Steps
     Attempting to resolve the host name research.osu.edu in DNS.
     The host name resolved successfully.
     Additional Details
     IP addresses returned: 140.254.87.75
    Testing TCP port 443 on host research.osu.edu to ensure it's listening and open.
     The specified port is either blocked, not listening, or not producing the expected response.
      Tell me more about this issue and how to resolve it
     Additional Details
     A network error occurred while communicating with the remote host.
    Attempting to test potential Autodiscover URL
    https://autodiscover.research.osu.edu/AutoDiscover/AutoDiscover.xml
     Testing of this potential Autodiscover URL failed.
     Test Steps
     Attempting to resolve the host name autodiscover.research.osu.edu in DNS.
     The host name couldn't be resolved.
      Tell me more about this issue and how to resolve it
     Additional Details
     Host autodiscover.research.osu.edu couldn't be resolved in DNS InfoDomainNonexistent.
    Attempting to contact the Autodiscover service using the HTTP redirect method.
     The attempt to contact Autodiscover using the HTTP Redirect method failed.
     Test Steps
     Attempting to resolve the host name autodiscover.research.osu.edu in DNS.
     The host name couldn't be resolved.
      Tell me more about this issue and how to resolve it
     Additional Details
     Host autodiscover.research.osu.edu couldn't be resolved in DNS InfoDomainNonexistent.
    Attempting to contact the Autodiscover service using the DNS SRV redirect method.
     ExRCA successfully contacted the Autodiscover service using the DNS SRV redirect method.
     Test Steps
     Attempting to locate SRV record _autodiscover._tcp.research.osu.edu in DNS.
     The Autodiscover SRV record was successfully retrieved from DNS.
     Additional Details
     The Service Location (SRV) record lookup returned host mail.research.osu.edu.
    Attempting to test potential Autodiscover URL
    https://mail.research.osu.edu/Autodiscover/Autodiscover.xml
     Testing of the Autodiscover URL was successful.
     Test Steps
     Attempting to resolve the host name mail.research.osu.edu in DNS.
     The host name resolved successfully.
     Additional Details
     IP addresses returned: 131.187.90.221
    Testing TCP port 443 on host mail.research.osu.edu to ensure it's listening and open.
     The port was opened successfully.
    Testing the SSL certificate to make sure it's valid.
     The certificate passed all validation requirements.
     Test Steps
     ExRCA is attempting to obtain the SSL certificate from remote server mail.research.osu.edu on port 443.
     ExRCA successfully obtained the remote SSL certificate.
     Additional Details
     Remote Certificate Subject: CN=mail.research.osu.edu, OU=Office of Research, O=The Ohio State University, STREET=154 W 12th Avenue, L=Columbus, S=OH, PostalCode=43210, C=US, Issuer: CN=InCommon Server CA, OU=InCommon, O=Internet2, C=US.
    Validating the certificate name.
     The certificate name was validated successfully.
     Additional Details
     Host name mail.research.osu.edu was found in the Certificate Subject Common name.
    Certificate trust is being validated.
     The certificate is trusted and all certificates are present in the chain.
     Test Steps
     ExRCA is attempting to build certificate chains for certificate CN=mail.research.osu.edu, OU=Office of Research, O=The Ohio State University, STREET=154 W 12th Avenue, L=Columbus, S=OH, PostalCode=43210, 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 CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE.
    Analyzing the certificate chains for compatibility problems with versions of Windows.
     Potential compatibility problems were identified with some versions of Windows.
     Additional Details
     ExRCA 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.
    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 = 6/23/2011 12:00:00 AM, NotAfter = 6/22/2012 11:59:59 PM
    Checking the IIS configuration for client certificate authentication.
     Client certificate authentication wasn't detected.
     Additional Details
     Accept/Require Client Certificates isn't configured.
    Attempting to send an Autodiscover POST request to potential Autodiscover URLs.
     ExRCA successfully retrieved Autodiscover settings by sending an Autodiscover POST.
     Test Steps
     ExRCA is attempting to retrieve an XML Autodiscover response from URL
    https://mail.research.osu.edu/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>Alba, Andrea</DisplayName>
    <LegacyDN>/o=Research Foundation/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Alba, Andrea</LegacyDN>
    <DeploymentId>75b2e554-1712-4be1-94e6-ed12513f8395</DeploymentId>
    </User>
    <Account>
    <AccountType>email</AccountType>
    <Action>settings</Action>
    <Protocol>
    <Type>WEB</Type>
    <Port>0</Port>
    <DirectoryPort>0</DirectoryPort>
    <ReferralPort>0</ReferralPort>
    <Internal>
    <OWAUrl AuthenticationMethod="Basic, Fba">https://mail.research.osu.edu/owa/</OWAUrl>
    </Internal>
    <External>
    <OWAUrl AuthenticationMethod="Fba">https://mail.research.osu.edu/owa/</OWAUrl>
    </External>
    </Protocol>
    </Account>
    </Response>
    </Autodiscover>
    Autodiscover settings for Outlook Anywhere are being validated.
     ExRCA wasn't able to validate Outlook Anywhere Autodiscover settings.
     Additional Details
     The EXCH provider section is missing from the Autodiscover response.
    And then a test with a different user:
    Testing RPC/HTTP connectivity.
     The RPC/HTTP test completed successfully.
     Test Steps
     ExRCA is attempting to test Autodiscover for
    [email protected].
     Autodiscover was tested successfully.
     Test Steps
     Attempting each method of contacting the Autodiscover service.
     The Autodiscover service was tested successfully.
     Test Steps
     Attempting to test potential Autodiscover URL
    https://research.osu.edu/AutoDiscover/AutoDiscover.xml
     Testing of this potential Autodiscover URL failed.
     Test Steps
     Attempting to resolve the host name research.osu.edu in DNS.
     The host name resolved successfully.
     Additional Details
     IP addresses returned: 140.254.87.75
    Testing TCP port 443 on host research.osu.edu to ensure it's listening and open.
     The specified port is either blocked, not listening, or not producing the expected response.
      Tell me more about this issue and how to resolve it
     Additional Details
     A network error occurred while communicating with the remote host.
    Attempting to test potential Autodiscover URL
    https://autodiscover.research.osu.edu/AutoDiscover/AutoDiscover.xml
     Testing of this potential Autodiscover URL failed.
     Test Steps
     Attempting to resolve the host name autodiscover.research.osu.edu in DNS.
     The host name couldn't be resolved.
      Tell me more about this issue and how to resolve it
     Additional Details
     Host autodiscover.research.osu.edu couldn't be resolved in DNS InfoDomainNonexistent.
    Attempting to contact the Autodiscover service using the HTTP redirect method.
     The attempt to contact Autodiscover using the HTTP Redirect method failed.
     Test Steps
     Attempting to resolve the host name autodiscover.research.osu.edu in DNS.
     The host name couldn't be resolved.
      Tell me more about this issue and how to resolve it
     Additional Details
     Host autodiscover.research.osu.edu couldn't be resolved in DNS InfoDomainNonexistent.
    Attempting to contact the Autodiscover service using the DNS SRV redirect method.
     ExRCA successfully contacted the Autodiscover service using the DNS SRV redirect method.
     Test Steps
     Attempting to locate SRV record _autodiscover._tcp.research.osu.edu in DNS.
     The Autodiscover SRV record was successfully retrieved from DNS.
     Additional Details
     The Service Location (SRV) record lookup returned host mail.research.osu.edu.
    Attempting to test potential Autodiscover URL
    https://mail.research.osu.edu/Autodiscover/Autodiscover.xml
     Testing of the Autodiscover URL was successful.
     Test Steps
     Attempting to resolve the host name mail.research.osu.edu in DNS.
     The host name resolved successfully.
     Additional Details
     IP addresses returned: 131.187.90.221
    Testing TCP port 443 on host mail.research.osu.edu to ensure it's listening and open.
     The port was opened successfully.
    Testing the SSL certificate to make sure it's valid.
     The certificate passed all validation requirements.
     Test Steps
     ExRCA is attempting to obtain the SSL certificate from remote server mail.research.osu.edu on port 443.
     ExRCA successfully obtained the remote SSL certificate.
     Additional Details
     Remote Certificate Subject: CN=mail.research.osu.edu, OU=Office of Research, O=The Ohio State University, STREET=154 W 12th Avenue, L=Columbus, S=OH, PostalCode=43210, C=US, Issuer: CN=InCommon Server CA, OU=InCommon, O=Internet2, C=US.
    Validating the certificate name.
     The certificate name was validated successfully.
     Additional Details
     Host name mail.research.osu.edu was found in the Certificate Subject Common name.
    Certificate trust is being validated.
     The certificate is trusted and all certificates are present in the chain.
     Test Steps
     ExRCA is attempting to build certificate chains for certificate CN=mail.research.osu.edu, OU=Office of Research, O=The Ohio State University, STREET=154 W 12th Avenue, L=Columbus, S=OH, PostalCode=43210, 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 CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE.
    Analyzing the certificate chains for compatibility problems with versions of Windows.
     Potential compatibility problems were identified with some versions of Windows.
     Additional Details
     ExRCA 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.
    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 = 6/23/2011 12:00:00 AM, NotAfter = 6/22/2012 11:59:59 PM
    Checking the IIS configuration for client certificate authentication.
     Client certificate authentication wasn't detected.
     Additional Details
     Accept/Require Client Certificates isn't configured.
    Attempting to send an Autodiscover POST request to potential Autodiscover URLs.
     ExRCA successfully retrieved Autodiscover settings by sending an Autodiscover POST.
     Test Steps
     ExRCA is attempting to retrieve an XML Autodiscover response from URL
    https://mail.research.osu.edu/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>Bossley, Peter A</DisplayName>
    <LegacyDN>/o=Research Foundation/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Bossley, Peter A</LegacyDN>
    <DeploymentId>75b2e554-1712-4be1-94e6-ed12513f8395</DeploymentId>
    </User>
    <Account>
    <AccountType>email</AccountType>
    <Action>settings</Action>
    <Protocol>
    <Type>EXCH</Type>
    <Server>MAIL.rf.ohio-state.edu</Server>
    <ServerDN>/o=Research Foundation/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=MAIL</ServerDN>
    <ServerVersion>738180DA</ServerVersion>
    <MdbDN>/o=Research Foundation/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=MAIL/cn=Microsoft Private MDB</MdbDN>
    <ASUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</ASUrl>
    <OOFUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</OOFUrl>
    <OABUrl>https://mail.research.osu.edu/OAB/e5ee959b-e4f0-4bd3-b254-bc2f822455f6/</OABUrl>
    <UMUrl>https://mail.research.osu.edu/EWS/UM2007Legacy.asmx</UMUrl>
    <Port>0</Port>
    <DirectoryPort>0</DirectoryPort>
    <ReferralPort>0</ReferralPort>
    <PublicFolderServer>MAIL.rf.ohio-state.edu</PublicFolderServer>
    <AD>DC3.rf.ohio-state.edu</AD>
    <EwsUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</EwsUrl>
    <EcpUrl>https://mail.research.osu.edu/ecp/</EcpUrl>
    <EcpUrl-um>?p=customize/voicemail.aspx&amp;exsvurl=1</EcpUrl-um>
    <EcpUrl-aggr>?p=personalsettings/EmailSubscriptions.slab&amp;exsvurl=1</EcpUrl-aggr>
    <EcpUrl-mt>PersonalSettings/DeliveryReport.aspx?exsvurl=1&amp;IsOWA=&lt;IsOWA&gt;&amp;MsgID=&lt;MsgID&gt;&amp;Mbx=&lt;Mbx&gt;</EcpUrl-mt>
    <EcpUrl-ret>?p=organize/retentionpolicytags.slab&amp;exsvurl=1</EcpUrl-ret>
    <EcpUrl-sms>?p=sms/textmessaging.slab&amp;exsvurl=1</EcpUrl-sms>
    </Protocol>
    <Protocol>
    <Type>EXPR</Type>
    <Server>mail.research.osu.edu</Server>
    <ASUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</ASUrl>
    <OOFUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</OOFUrl>
    <OABUrl>https://mail.research.osu.edu/OAB/e5ee959b-e4f0-4bd3-b254-bc2f822455f6/</OABUrl>
    <UMUrl>https://mail.research.osu.edu/EWS/UM2007Legacy.asmx</UMUrl>
    <Port>0</Port>
    <DirectoryPort>0</DirectoryPort>
    <ReferralPort>0</ReferralPort>
    <SSL>On</SSL>
    <AuthPackage>Ntlm</AuthPackage>
    <EwsUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</EwsUrl>
    <EcpUrl>https://mail.research.osu.edu/ecp/</EcpUrl>
    <EcpUrl-um>?p=customize/voicemail.aspx&amp;exsvurl=1</EcpUrl-um>
    <EcpUrl-aggr>?p=personalsettings/EmailSubscriptions.slab&amp;exsvurl=1</EcpUrl-aggr>
    <EcpUrl-mt>PersonalSettings/DeliveryReport.aspx?exsvurl=1&amp;IsOWA=&lt;IsOWA&gt;&amp;MsgID=&lt;MsgID&gt;&amp;Mbx=&lt;Mbx&gt;</EcpUrl-mt>
    <EcpUrl-ret>?p=organize/retentionpolicytags.slab&amp;exsvurl=1</EcpUrl-ret>
    <EcpUrl-sms>?p=sms/textmessaging.slab&amp;exsvurl=1</EcpUrl-sms>
    </Protocol>
    <Protocol>
    <Type>WEB</Type>
    <Port>0</Port>
    <DirectoryPort>0</DirectoryPort>
    <ReferralPort>0</ReferralPort>
    <Internal>
    <OWAUrl AuthenticationMethod="Basic, Fba">https://mail.research.osu.edu/owa/</OWAUrl>
    <Protocol>
    <Type>EXCH</Type>
    <ASUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</ASUrl>
    </Protocol>
    </Internal>
    <External>
    <OWAUrl AuthenticationMethod="Fba">https://mail.research.osu.edu/owa/</OWAUrl>
    <Protocol>
    <Type>EXPR</Type>
    <ASUrl>https://mail.research.osu.edu/EWS/Exchange.asmx</ASUrl>
    </Protocol>
    </External>
    </Protocol>
    </Account>
    </Response>
    </Autodiscover>
    Autodiscover settings for Outlook Anywhere are being validated.
     ExRCA validated the Outlook Anywhere Autodiscover settings.
    Attempting to resolve the host name mail.research.osu.edu in DNS.
     The host name resolved successfully.
     Additional Details
     IP addresses returned: 131.187.90.221
    Testing TCP port 443 on host mail.research.osu.edu to ensure it's listening and open.
     The port was opened successfully.
    Testing the SSL certificate to make sure it's valid.
     The certificate passed all validation requirements.
     Test Steps
     ExRCA is attempting to obtain the SSL certificate from remote server mail.research.osu.edu on port 443.
     ExRCA successfully obtained the remote SSL certificate.
     Additional Details
     Remote Certificate Subject: CN=mail.research.osu.edu, OU=Office of Research, O=The Ohio State University, STREET=154 W 12th Avenue, L=Columbus, S=OH, PostalCode=43210, C=US, Issuer: CN=InCommon Server CA, OU=InCommon, O=Internet2, C=US.
    Validating the certificate name.
     The certificate name was validated successfully.
     Additional Details
     Host name mail.research.osu.edu was found in the Certificate Subject Common name.
    Certificate trust is being validated.
     The certificate is trusted and all certificates are present in the chain.
     Test Steps
     ExRCA is attempting to build certificate chains for certificate CN=mail.research.osu.edu, OU=Office of Research, O=The Ohio State University, STREET=154 W 12th Avenue, L=Columbus, S=OH, PostalCode=43210, 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 CN=AddTrust External CA Root, OU=AddTrust External TTP Network, O=AddTrust AB, C=SE.
    Analyzing the certificate chains for compatibility problems with versions of Windows.
     Potential compatibility problems were identified with some versions of Windows.
     Additional Details
     ExRCA 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.
    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 = 6/23/2011 12:00:00 AM, NotAfter = 6/22/2012 11:59:59 PM
    Checking the IIS configuration for client certificate authentication.
     Client certificate authentication wasn't detected.
     Additional Details
     Accept/Require Client Certificates isn't configured.
    Testing HTTP Authentication Methods for URL
    https://mail.research.osu.edu/rpc/rpcproxy.dll.
     The HTTP authentication methods are correct.
     Additional Details
     ExRCA found all expected authentication methods and no disallowed methods. Methods found: Negotiate, NTLM
    Testing SSL mutual authentication with the RPC proxy server.
     Mutual authentication was verified successfully.
     Additional Details
     Certificate common name mail.research.osu.edu matches msstd:mail.research.osu.edu.
    Attempting to ping RPC proxy mail.research.osu.edu.
     RPC Proxy was pinged successfully.
     Additional Details
     Completed with HTTP status 200 - OK
    Attempting to ping RPC endpoint 6001 (Exchange Information Store) on server MAIL.rf.ohio-state.edu.
     The endpoint was pinged successfully.
     Additional Details
     RPC Status Ok (0) returned in 546 ms.
    Testing the Name Service Provider Interface (NSPI) on the Exchange Mailbox server.
     The NSPI interface was tested successfully.
     Test Steps
     Attempting to ping RPC endpoint 6004 (NSPI Proxy Interface) on server MAIL.rf.ohio-state.edu.
     The endpoint was pinged successfully.
     Additional Details
     RPC Status Ok (0) returned in 483 ms.
    Testing NSPI "Check Name" for user
    [email protected] against server MAIL.rf.ohio-state.edu.
     Check Name succeeded.
     Additional Details
     DisplayName: Bossley, Peter A, LegDN: /o=Research Foundation/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Bossley, Peter A
    Testing the Referral service on the Exchange Mailbox server.
     The Referral service was tested successfully.
     Test Steps
     Attempting to ping RPC endpoint 6002 (Referral Interface) on server MAIL.rf.ohio-state.edu.
     The endpoint was pinged successfully.
     Additional Details
     RPC Status Ok (0) returned in 492 ms.
    Attempting to perform referral for user /o=Research Foundation/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=Bossley, Peter A on server MAIL.rf.ohio-state.edu.
     ExRCA successfully got the referral.
     Additional Details
     The server returned by the Referral service: MAIL.rf.ohio-state.edu
    Testing the Exchange Information Store on the Mailbox server.
     ExRCA successfully tested the Information Store.
     Test Steps
     Attempting to ping RPC endpoint 6001 (Exchange Information Store) on server MAIL.rf.ohio-state.edu.
     The endpoint was pinged successfully.
     Additional Details
     RPC Status Ok (0) returned in 15 ms.
    Attempting to log on to the Exchange Information Store.
     ExRCA successfully logged on to the Information Store.
    Any other ideas?
    thanks!

  • Open Directory is not providing a secure connection

    I've been setting up Yosemite Server, but I haven't been able to get a second Mac to join onto the Open Directory service. When clicking Join… in Accounts Preferences on the client machine, and entering the address, it asks me whether I want to trust the server's certificates, which I do; and then, in a second dialog, it says "This server does not provide a secure (SSL) connection. Do you want to continue?"
    My question, simply, is how do I confirm that my server is providing a secure Open Directory connection? If it's not, how do I enable it, and if it is, how do I convince my client to use it?
    Background:
    After doing the initial setup, I turned on Open Directory before noticing that the host name was not correct—I had not changed it from "Xxx.local". So I changed it to the correct domain as pointed to by an external DNS server. It mentioned that I'd have to reconfigure a number of services, Open Directory among them. I turned Open Directory off, then on, and confirmed in the Certificates section that all services were using the newly-generated certificate with the correct domain name. I turned on Profile Manager, and added a test network user, and an encrypted-only (SMB3) share for its home folder. For good measure, I turned on the Websites service.
    At several points along this process, I tried to get the client to join the server's Open Directory, each and every time with the same message that the server does not provide a secure connection. I removed the applicable certificates on the client and tried again, just to be sure it wasn't using an outdated version of them—to no avail. The error is exactly the same whether I use the global .com hostname, the .local hostname, the global IP, or the local 10.0.1.x IP.
    The server is running Mac OS X 10.10.1, and the client MBP is on 10.10.
    The client is currently on the local network, but I aim to use Portable Home Directories and sync from other locations, so an unsecured OD connection is obviously unacceptable.
    Any advice would be dearly appreciated!

    First, follow the instructions in this support article to configure the clients to use the server's certificate to bind via LDAPS. The common name in the certificate must match both the server's hostname and its domain name, as resolved by the clients. You will get nowhere if those conditions aren't met.

  • Diagnostics / Connectivity from virtual appliance to vcenter Server FAILED

    Hi,
    I'm currently tryining to setup the Support Assistant (VSA) in our vSphere 5.1 environment. Registration to the vCenter was successful after some initial troubles. But when wunning thie VSA Diagnostics it fails at one point:
    Connectivity from virtual appliance to vcenter Server FAILED
    But on the VSA's console I can connect to the vCenter
    - name resoluttion is OK
    - vCenter is pingable
    - wget https://vcenter.domain.local   brings up an error regarding the vCenter's certificate:
    ERROR: cannot verify vcenter.domain.local's certificate, issued by `/O=VMware, Inc./OU=vCenterServer_2012.10.22_111554/CN=vcenter.domain.local/emailAddress=[email protected]': Unable to locally verify the issuer's authority.
    ERROR: certificate common name `VMware default certificate' doesn't match requested host name `vcenter.domain.local'.
    - wget https://vcenter.domain.local --no-check-certificate   works. Turns the errors above into warnings but connects and downloads the index.html.
    What am I doing wrong? Any help appreciated!

    Opened a SR with VMware and they've provided me with an unofficial updated version of the Support Assistant. This one fixed the failing connection to our vCenter. Now diagnostics fails on trying to connect to VMware, its working though. It's confirmed by VMware that this is just a cosmetic issue.

  • ResourceException: Access not allowed (when trying to grab a connection from weblogic pool)

    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries to grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);
    Thanks in advance.

    Hi Jung,
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Do you know how to change security setting on the connection pool?
    Thanks.WebConsole:
    1.Compatibility Security => ACLs
    Create a new ACL,
    name : weblogic.jdbc.connectionPool.yourPoolname
    permission : reserve, reset
    group : everynone
    2.Services => JDBC => Connection Pool
    Create a new Connection Pool
    ACL Name : weblogic.jdbc.connectionPool.yourPoolname
    In 'Target' tab, choose server and click the Apply button
    Slava
    >
    "Slava Imeshev" <[email protected]> wrote in message
    news:[email protected]...
    Hi Jung,
    Could you try providing weblogic user name and password
    in the properties?
    Could you also check security setting of the connection pool?
    Regards,
    Slava Imeshev
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Well that is exactly what I am doing. The variable dbName is database
    connection pool name that I created in weblogic console. Again, it
    worked
    in WLS6 but after migration, it stopped working.
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    In my code I am supplying name of the connection pool already
    created
    in
    weblogic server. I am asking you to get connection from the pool
    using
    pool
    driver.
    In your case you are trying to create connection straight to
    database
    using pool
    driver.
    What I am asking is pass name of the connection pool instead of
    database
    name.
    Thanks,
    Mitesh
    Jung Yang wrote:
    What would be the difference between your code and mine? Mine
    simple
    appends dbName string value for connection pool name at the end of
    "jdbc:weblogic:pool:"? And why same exact code would work in WLS6and
    not
    work in WLS7?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);Instead of doing this what if you use
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool", null);
    Will you please try this and see if that helps?
    Mitesh
    Jung Yang wrote:
    Isn't that exactly what I posted for my code piece?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    Try As described below:
    The following example demonstrates how to use a database
    connection
    pool
    from a servlet.
    Load the pool driver and cast it to java.sql.Driver. The
    full
    pathname
    of
    the driver is weblogic.jdbc.pool.Driver. For example:
    Driver myDriver = (Driver)
    Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    Create a connection using the URL for the driver, plus
    (optionally)
    the
    name of the registered connection pool. The URL of the pool
    driver
    is
    jdbc:weblogic:pool.
    You can identify the pool in either of two ways:
    Specify the name of the connection pool in a
    java.util.Properties
    object
    using the key connectionPoolID. For example:
    Properties props = new
    Properties();props.put("connectionPoolID",
    "myConnectionPool");Connection conn =
    myDriver.connect("jdbc:weblogic:pool", props);
    Add the name of the pool to the end of the URL. In this case
    you
    do
    not
    need a Properties object unless you are setting a username
    and
    password
    for using a connection from the pool. For example:
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool",
    null);
    Note that the Driver.connect() method is used in theseexamples
    instead of
    the DriverManger.getConnection() method. Although you may
    use
    DriverManger.getConnection() to obtain a databaseconnection,
    we
    recommend
    that you use Driver.connect() because this method is not
    synchronized
    and
    provides better performance.
    Note that the Connection returned by connect() is an
    instance
    of
    weblogic.jdbc.pool.Connection.
    Call the close() method on the Connection object when youfinish
    with
    your
    JDBC calls, so that the connection is properly returned to
    the
    pool. A
    good coding practice is to create the connection in a try
    block
    and
    then
    close the connection in a finally block, to make sure the
    connection
    is
    closed in all cases.
    conn.close();
    Mitesh
    Jung Yang wrote:
    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries
    to
    grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at
    weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn =
    driver.connect("jdbc:weblogic:pool:"
    +
    dbName,
    null);
    >>>>>>>>>
    Thanks in advance.

  • Connecting from remote machine

    This topic seems to have been talked about alot, but I've got another variation of the problem. I get the following error when I try to connect from a client machine to my IFS server:
    oracle.ifs.common.IfsException: IFS-10110: Unable to construct directory service
    oracle.ifs.common.IfsException: IFS-10140: Unable to instantiate credential manager Ifs
    oracle.ifs.common.IfsException: IFS-10150: Unable to construct credential manager (oracle.ifs.server.IfsCredentialManager)
    oracle.ifs.common.IfsException: IFS-10176: Unable to get credential manager version
    java.sql.SQLException: ORA-06550: line 1, column 13:
    PLS-00201: identifier 'IFSSYS$CM.IFSCREDENTIALMANAGERPACKAGE' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    PLS-00201: identifier 'IFSSYS$CM.IFSCREDENTIALMANAGERPACKAGE' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
    My question is that I see the code is trying to access IFSSYS$CM. ...PACKAGE. When my IFS was set up, I used IFSTEST instead of IFSSYS, so in my IFS database the package does exist as IFSTEST$CM.... My first thought was that my IfsDefault (the service I'm trying to use) had the wrong user in it, but it does have User: IFSTEST.
    Any suggestions?
    Charlie

    Yeah, that would be a CLASSPATH issue. You've got the wrong version of the JDBC classes (classes12.zip). Make sure you're pointing to the one in $ORACLE_HOME/jdbc/lib -- and if you are, then copy the "one that works" from the iFS server machine to your client machine. That is, if iFS is even working on that machine. The missing library (when using classes111.zip) is very disturbing. I don't know why you're having such trouble with the JDBC library. Make sure you've got ORACLE_HOME/lib in your LD_LIBRARY_PATH.
    Now, please note that you cannot mix JDBC versions. That is, if you compile with JDK 1.1.8, you better be using classes111.zip when compiling and when running. With JDK 1.2, use classes12.zip.
    Also, your configuration is a little "weird". Really, you've got two server machines, both of which are essentially database AND iFS servers. On the "client" machine, you're just using Net8 software to talk to the other database, even though you've got the whole database installed. You may as well just install the Oracle 8i Client there. That's all you need.
    Secondly, iFS doesn't really have the notion of a "client", at least not the way you're working with it. If you copy the iFS jars and the service properties file (IfsDefault.properties) and run an iFS application on your "client", you're really running an full iFS server (I guess you could think of it as a "fat client" if you're familiar with that terminology). Currently, the way we have designed iFS is to have protocol servers provide the link between clients and the iFS server. That is, you could run a web browser (on a true client machine) and access the iFS server. Or you could map a network drive to the iFS server.
    Anyway, feel free to ask more questions.

  • OATS: Error Message "Cannot get a connection from the Browser" on recording

    Hi,
    I am involved in the functional testing for Siebel 8.1 application, with the OATS 9.3 tool.
    On trying to record, an error Message *"Cannot get a connection from the Browser. Do you want to continue waiting for the browser to load?"* is displayed, even though InstallBrowserHelpers has been installed.
    I tried uninstalling the 'BrowserHelpers' and re-installing but the issue remains.
    Ur response on this will be appreciated.
    Thanks!

    Hi JB,
    I uninstalled the Plug-ins.
    To make it worse, I am unable to access Openscript now. :-(
    On trying to access Openscript, I am seeing the error "An error has occured. See the log file".
    Below is the extract from the log file.
    !SESSION 2012-05-29 14:05:32.634 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_07
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86
    This is a continuation of log file C:\Documents and Settings\sg0210788\osworkspace\.metadata\.bak_0.log
    Created Time: 2012-05-29 14:05:34.993
    !ENTRY org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/com.ibm.icu.source.nl_ja_3.8.1.v20080530.jar [5] was not resolved.
    !SUBENTRY 2 com.ibm.icu.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host com.ibm.icu.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/javax.servlet.jsp.source.nl_ja_2.0.0.v200806031607.jar [9] was not resolved.
    !SUBENTRY 2 javax.servlet.jsp.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host javax.servlet.jsp.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/javax.servlet.source.nl_ja_2.4.0.v200806031604.jar [12] was not resolved.
    !SUBENTRY 2 javax.servlet.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host javax.servlet.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.ant.source.nl_ja_1.7.0.v200803061910.jar [209] was not resolved.
    !SUBENTRY 2 org.apache.ant.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.ant.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.commons.el.source.nl_ja_1.0.0.v200806031608.jar [212] was not resolved.
    !SUBENTRY 2 org.apache.commons.el.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.commons.el.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.commons.logging.source.nl_ja_1.0.4.v20080605-1930.jar [215] was not resolved.
    !SUBENTRY 2 org.apache.commons.logging.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.commons.logging.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.jasper.source.nl_ja_5.5.17.v200806031609.jar [219] was not resolved.
    !SUBENTRY 2 org.apache.jasper.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.jasper.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.lucene.analysis.source.nl_ja_1.9.1.v20080530-1600.jar [222] was not resolved.
    !SUBENTRY 2 org.apache.lucene.analysis.source.nl_ja 2 0 2012-05-29 14:05:34.993
    !MESSAGE Missing host org.apache.lucene.analysis.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:34.993
    !MESSAGE Bundle update@plugins/org.apache.lucene.source.nl_ja_1.9.1.v20080530-1600.jar [224] was not resolved.
    !SUBENTRY 2 org.apache.lucene.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.apache.lucene.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ant.core.source.nl_ja_3.2.0.v20080529.jar [229] was not resolved.
    !SUBENTRY 2 org.eclipse.ant.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ant.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ant.ui.source.nl_ja_3.3.0.v20080529.jar [232] was not resolved.
    !SUBENTRY 2 org.eclipse.ant.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ant.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.compare.source.nl_ja_3.4.0.I20080604.jar [235] was not resolved.
    !SUBENTRY 2 org.eclipse.compare.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.compare.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.commands.source.nl_ja_3.4.0.I20080509-2000.jar [240] was not resolved.
    !SUBENTRY 2 org.eclipse.core.commands.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.commands.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.contenttype.source.nl_ja_3.3.0.v20080604-1400.jar [243] was not resolved.
    !SUBENTRY 2 org.eclipse.core.contenttype.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.contenttype.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.databinding.beans.source.nl_ja_1.1.1.M20080827-0800a.jar [246] was not resolved.
    !SUBENTRY 2 org.eclipse.core.databinding.beans.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.databinding.beans.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.databinding.source.nl_ja_1.1.1.M20080827-0800b.jar [249] was not resolved.
    !SUBENTRY 2 org.eclipse.core.databinding.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.databinding.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.expressions.source.nl_ja_3.4.0.v20080603-2000.jar [252] was not resolved.
    !SUBENTRY 2 org.eclipse.core.expressions.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.expressions.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filebuffers.source.nl_ja_3.4.0.v20080603-2000.jar [255] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filebuffers.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filebuffers.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.linux.x86_1.2.0.v20080604-1400.jar [257] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.macosx.nl_ja_1.0.0.v20080604-1400.jar [258] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filesystem.macosx.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filesystem.macosx_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.solaris.sparc_1.0.100.v20080604-1400.jar [260] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.source.nl_ja_1.2.0.v20080604-1400.jar [261] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filesystem.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filesystem.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.filesystem.win32.x86.nl_ja_1.1.0.v20080604-1400.jar [262] was not resolved.
    !SUBENTRY 2 org.eclipse.core.filesystem.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.filesystem.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.jobs.source.nl_ja_3.4.0.v20080512.jar [266] was not resolved.
    !SUBENTRY 2 org.eclipse.core.jobs.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.jobs.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.net.linux.x86_1.0.0.I20080521.jar [268] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.net.source.nl_ja_1.1.0.I20080604.jar [270] was not resolved.
    !SUBENTRY 2 org.eclipse.core.net.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.net.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.net.win32.x86.nl_ja_1.0.0.I20080521.jar [271] was not resolved.
    !SUBENTRY 2 org.eclipse.core.net.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.net.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.resources.compatibility.nl_ja_3.4.0.v20080604-1400.jar [274] was not resolved.
    !SUBENTRY 2 org.eclipse.core.resources.compatibility.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.resources.compatibility_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.resources.compatibility.source.nl_ja_3.4.0.v20080604-1400.jar [275] was not resolved.
    !SUBENTRY 2 org.eclipse.core.resources.compatibility.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.resources.compatibility.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.resources.source.nl_ja_3.4.1.R34x_v20080902.jar [278] was not resolved.
    !SUBENTRY 2 org.eclipse.core.resources.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.resources.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.auth.source.nl_ja_3.2.100.v20070502.jar [282] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.auth.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.auth.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.registry.nl_ja_3.2.200.v20080610.jar [285] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.registry.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.registry_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.registry.source.nl_ja_3.2.200.v20080610.jar [286] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.compatibility.source.nl_ja_3.2.0.v20071008.jar [288] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.compatibility.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.compatibility.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.runtime.source.nl_ja_3.4.0.v20080512.jar [291] was not resolved.
    !SUBENTRY 2 org.eclipse.core.runtime.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.runtime.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.core.variables.source.nl_ja_3.2.100.v20080529-1300.jar [294] was not resolved.
    !SUBENTRY 2 org.eclipse.core.variables.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.core.variables.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.cvs.nl_ja_1.0.100.v20080603.jar [296] was not resolved.
    !SUBENTRY 2 org.eclipse.cvs.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.cvs_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.cvs.source.nl_ja_1.0.100.v20080603.jar [297] was not resolved.
    !SUBENTRY 2 org.eclipse.cvs.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.cvs.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.debug.core.source.nl_ja_3.4.0.v20080612.jar [299] was not resolved.
    !SUBENTRY 2 org.eclipse.debug.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.debug.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.debug.ui.source.nl_ja_3.4.1.v20080811_r341.jar [302] was not resolved.
    !SUBENTRY 2 org.eclipse.debug.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.debug.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.filetransfer.nl_ja_2.0.0.v20080611-1715.jar [304] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.filetransfer.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.filetransfer_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.identity.nl_ja_2.0.0.v20080611-1715.jar [305] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.identity.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.identity_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.nl_ja_2.0.0.v20080611-1715.jar [306] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.provider.filetransfer.nl_ja_2.0.0.v20080611-1715.jar [307] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.provider.filetransfer.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.provider.filetransfer_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.provider.filetransfer.ssl.nl_ja_1.0.0.v20080611-1715.jar [308] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.provider.filetransfer.ssl.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.provider.filetransfer.ssl_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.ecf.ssl.nl_ja_1.0.0.v20080611-1715.jar [309] was not resolved.
    !SUBENTRY 2 org.eclipse.ecf.ssl.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.ecf.ssl_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.app.source.nl_ja_1.1.0.v20080421-2006.jar [311] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.app.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.app.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.common.source.nl_ja_3.4.0.v20080421-2006.jar [314] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.common.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.common.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.equinox.nl_ja_1.0.2.R34x_v20080911.jar [316] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.equinox.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin.equinox_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.equinox.source.nl_ja_1.0.2.R34x_v20080911.jar [317] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.equinox.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin.equinox.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.nl_ja_1.0.2.R34x_v20080910.jar [318] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.frameworkadmin.source.nl_ja_1.0.2.R34x_v20080910.jar [319] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.frameworkadmin.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.frameworkadmin.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.http.jetty.source.nl_ja_1.1.0.v20080425.jar [321] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.http.jetty.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.http.jetty.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.http.registry.source.nl_ja_1.0.100.v20080427-0830.jar [324] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.http.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.http.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.http.servlet.source.nl_ja_1.0.100.v20080427-0830.jar [327] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.http.servlet.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.http.servlet.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.jsp.jasper.registry.source.nl_ja_1.0.0.v20080427-0830.jar [331] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.jsp.jasper.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.jsp.jasper.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.jsp.jasper.source.nl_ja_1.0.100.v20080427-0830.jar [333] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.jsp.jasper.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.jsp.jasper.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805/ [335] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.gtk.solaris.sparc_1.0.101.R34x_v20080731/ [336] was not resolved.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.source.nl_ja_1.0.101.R34x_v20080819.jar [338] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.launcher.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.launcher.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.launcher.win32.win32.x86.nl_ja_1.0.101.R34x_v20080731.jar [339] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.launcher.win32.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.launcher.win32.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.preferences.source.nl_ja_3.2.201.R34x_v20080709.jar [343] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.preferences.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.preferences.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.registry.source.nl_ja_3.4.0.v20080516-0950.jar [346] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.registry.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.registry.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.source.nl_ja_1.0.1.R34x_v20080721.jar [349] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.ui.source.nl_ja_1.0.0.v20080603-1810.jar [351] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.win32.x86.nl_ja_1.0.0.v20080529-1600.jar [353] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.win32.x86.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.win32.x86_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.equinox.security.win32.x86.source.nl_ja_1.0.0.v20080529-1600.jar [354] was not resolved.
    !SUBENTRY 2 org.eclipse.equinox.security.win32.x86.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.equinox.security.win32.x86.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.appserver.source.nl_ja_3.1.300.v20080507.jar [358] was not resolved.
    !SUBENTRY 2 org.eclipse.help.appserver.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.appserver.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.base.source.nl_ja_3.3.101.M20080728_34x.jar [361] was not resolved.
    !SUBENTRY 2 org.eclipse.help.base.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.base.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.source.nl_ja_3.3.101.v20080702_34x.jar [364] was not resolved.
    !SUBENTRY 2 org.eclipse.help.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.ui.source.nl_ja_3.3.101.M20080715_34x.jar [366] was not resolved.
    !SUBENTRY 2 org.eclipse.help.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.help.webapp.source.nl_ja_3.3.101.M20080805_34x.jar [369] was not resolved.
    !SUBENTRY 2 org.eclipse.help.webapp.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.help.webapp.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.apt.core.source.nl_ja_3.3.101.R34x_v20080902-1220.jar [373] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.apt.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.apt.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.apt.pluggable.core.source.nl_ja_1.0.100.v20080407-1345.jar [376] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.apt.pluggable.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.apt.pluggable.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.apt.ui.source.nl_ja_3.3.100.v20080407-1345.jar [379] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.apt.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.apt.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.apt.nl_ja_1.0.100.v20080513-1235.jar [381] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.apt.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.apt_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.apt.source.nl_ja_1.0.100.v20080513-1235.jar [382] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.apt.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.apt.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.tool.nl_ja_1.0.100.v_883_R34x.jar [384] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.tool.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.tool_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.compiler.tool.source.nl_ja_1.0.100.v_883_R34x.jar [385] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.compiler.tool.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.compiler.tool.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.core.manipulation.source.nl_ja_1.2.0.v20080603-2000.jar [388] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.core.manipulation.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.core.manipulation.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.core.source.nl_ja_3.4.2.v_883_R34x.jar [391] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.core.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.core.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.debug.source.nl_ja_3.4.0.v20080604.jar [394] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.debug.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.debug.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.debug.ui.source.nl_ja_3.3.1.v20080730_r341.jar [396] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.debug.ui.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.debug.ui.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.doc.isv.nl_ja_3.4.1.r341_v20080716-0800.jar [399] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.doc.isv.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.doc.isv_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.junit.runtime.source.nl_ja_3.3.0.v20080603-2000.jar [404] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.junit.runtime.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.junit.runtime.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.junit.source.nl_ja_3.4.0.v20080603-2000.jar [406] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.junit.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.junit.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.junit4.runtime.source.nl_ja_1.0.200.v20080603-2000.jar [408] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.junit4.runtime.source.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.junit4.runtime.source_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.launching.macosx.nl_ja_3.1.100.v20080422.jar [411] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.launching.macosx.nl_ja 2 0 2012-05-29 14:05:35.009
    !MESSAGE Missing host org.eclipse.jdt.launching.macosx_0.0.0.
    !SUBENTRY 1 org.eclipse.osgi 2 0 2012-05-29 14:05:35.009
    !MESSAGE Bundle update@plugins/org.eclipse.jdt.launching.source.nl_ja_3.4.1.v20080729_r341.jar [413] was not resolved.
    !SUBENTRY 2 org.eclipse.jdt.launching.source.nl_ja 2 0 2012-05-29 14:05:35.009

  • HTTPs connection from SAP WebAS

    Hello,
    I have to establish a connection from SAP WebAS to an iSaSiLk server via HTTPS.
    The iSaSiLk authentication is based on client certificates.
    I've created a SSL client PSE, generated the Certificate Request, imported the certificate response and the chain of certificates associated  with no errors. When testing the connection we're getting the following error message:
    SAP icm log:
    [Thr 1087400256] ->> SapSSLSessionInit(&sssl_hdl=0x2aaaba679980, role=1 (CLIENT), auth_type=3 (USE_CLIENT_CERT))
    [Thr 1087400256] <<- SapSSLSessionInit()==SAP_O_K
    [Thr 1087400256]      in: args = "role=1 (CLIENT), auth_type=3 (USE_CLIENT_CERT)"
    [Thr 1087400256]     out: sssl_hdl = 0x1a3310c0
    [Thr 1087400256] ->> SapSSLSetNiHdl(sssl_hdl=0x1a3310c0, ni_hdl=22)
    [Thr 1087400256] NiIBlockMode: set blockmode for hdl 22 TRUE
    [Thr 1087400256] <<- SapSSLSetNiHdl(sssl_hdl=0x1a3310c0, ni_hdl=22)==SAP_O_K
    [Thr 1087400256] ->> SapSSLSetSessionCredential(sssl_hdl=0x1a3310c0, &cred_name=0x1a49e4e0)
    [Thr 1087400256]   SapISSLComposeFilename(): Filename = "/usr/sap/XID/DVEBMGS00/sec/SAPSSLSPHTID.pse"
    [Thr 1087400256] <<- SapSSLSetSessionCredential(sssl_hdl=0x1a3310c0)==SAP_O_K
    [Thr 1087400256]      in: cred_name = "/usr/sap/XID/DVEBMGS00/sec/SAPSSLSPHTID.pse"
    [Thr 1087400256] ->> SapSSLSetTargetHostname(sssl_hdl=0x1a3310c0, &hostname=0x1a4a09e0)
    [Thr 1087400256] <<- SapSSLSetTargetHostname(sssl_hdl=0x1a3310c0)==SAP_O_K
    [Thr 1087400256]      in: hostname = "<remoteServer_to_be_accessed>"
    [Thr 1087400256] ->> SapSSLSessionStart(sssl_hdl=0x1a3310c0)
    [Thr 1087400256]   SapISSLUseSessionCache(): Creating NEW session (0 cached)
    [Thr 1087400256] Tue Jan 13 10:10:22 2009
    *[Thr 1087400256] *** ERROR during SecudeSSL_SessionStart() from SSL_connect()==SSL_ERROR_SSL*
    [Thr 1087400256]    session uses PSE file "/usr/sap/XID/DVEBMGS00/sec/SAPSSLSPHTID.pse"
    [Thr 1087400256] SecudeSSL_SessionStart: SSL_connect() failed
      secude_error 536871693 (0x2000030d) = "none of the PSEs registered with hSsl can suffice the negotiated SSL cipher suite"
    [Thr 1087400256] >>            Begin of Secude-SSL Errorstack            >>
    [Thr 1087400256] ERROR in ssl3_get_certificate_request: (536871693/0x2000030d) none of the PSEs registered with hSsl can suffice
    [Thr 1087400256] <<            End of Secude-SSL Errorstack
    [Thr 1087400256]   SSL_get_state() returned 0x00002150 "SSLv3 read server certificate request A"
    [Thr 1087400256]   No certificate request received from Server
    [Thr 1087400256] <<- ERROR: SapSSLSessionStart(sssl_hdl=0x1a3310c0)==SSSLERR_SSL_CONNECT
    [Thr 1087400256] ->> SapSSLErrorName(rc=-57)
    [Thr 1087400256] <<- SapSSLErrorName()==SSSLERR_SSL_CONNECT
    [Thr 1087400256] *** ERROR => IcmConnInitClientSSL: SapSSLSessionStart failed (-57): SSSLERR_SSL_CONNECT [icxxconn_mt
    On the iSaSiLk server we're getting:
    ssl_debug(2): Starting handshake (iSaSiLk 3.06)...
    ssl_debug(2): Received v3 client_hello handshake message.
    ssl_debug(2): Client requested SSL version 3.0, selecting version 3.0.
    ssl_debug(2): Creating new session 11:5F:04:C9:0D:32:15:B9...
    ssl_debug(2): CipherSuites supported by the client:
    ssl_debug(2): SSL_RSA_WITH_RC4_128_SHA
    ssl_debug(2): SSL_RSA_WITH_RC4_128_MD5
    ssl_debug(2): SSL_RSA_WITH_3DES_EDE_CBC_SHA
    ssl_debug(2): SSL_RSA_WITH_DES_CBC_SHA
    ssl_debug(2): SSL_RSA_EXPORT_WITH_DES40_CBC_SHA
    ssl_debug(2): SSL_RSA_EXPORT_WITH_RC2_CBC_40_MD5
    ssl_debug(2): SSL_RSA_EXPORT_WITH_RC4_40_MD5
    ssl_debug(2): CompressionMethods supported by the client:
    ssl_debug(2): NULL
    ssl_debug(2): Sending server_hello handshake message.
    ssl_debug(2): Selecting CipherSuite: SSL_RSA_WITH_RC4_128_SHA
    ssl_debug(2): Selecting CompressionMethod: NULL
    ssl_debug(2): Sending certificate handshake message with server certificate...
    ssl_debug(2): Sending certificate_request handshake message...
    ssl_debug(2): Sending server_hello_done handshake message...
    ssl_debug(2): IOException while handshaking: Connection closed by remote host.
    ssl_debug(2): Sending alert: Alert Fatal: handshake failure
    ssl_debug(2): Shutting down SSL layer...
    ssl_debug(2): Closing transport...
    From the iSaSiLk everything seems to be OK, but on the SAP WebAS the error "none of the PSEs registered with hSsl can suffice the negotiated SSL cipher suite" is really unclear, since the cipher chosen by the iSaSiLk is one of the ciphers sent by SAP WebAS...
    Can anyone give me any suggestion?

    Hello Olivier,
    Thanks for your answer.
    I've implemented note 800240 which facilitates the PSE analysis by implementing the report ZSSF_TEST_PSE. With this report I'm able to check all the PSE content, which are:
    Filename            SAPSSLSPHTID.pse
    PIN                 <no>
    Signature           X
    Encryption          X
    Profile Parameter
    DIR_INSTANCE                   /usr/sap/XID/DVEBMGS00                       /usr/sap/XID/D00
    sec/dsakeylengthdefault                                                     1024
    sec/libsapsecu                 /usr/sap/XID/SYS/exe/run/libsapcrypto.so
    sec/rsakeylengthdefault                                                     1024
    ssf/name                       SAPSECULIB
    ssf/ssf_md_alg                                                              SHA1
    ssf/ssf_symencr_alg                                                         DES-CBC
    ssf/ssfapi_lib                 /usr/sap/XID/SYS/exe/run/libsapcrypto.so
    ssf2/name
    ssf2/ssf_md_alg                                                             SHA1
    ssf2/ssf_symencr_alg                                                        DES-CBC
    ssf2/ssfapi_lib
    ssf3/name
    ssf3/ssf_md_alg                                                             SHA1
    ssf3/ssf_symencr_alg                                                        DES-CBC
    ssf3/ssfapi_lib
    Environment variables
    USER                xidadm
    SECUDIR             /usr/sap/XID/DVEBMGS00/sec
    PSE
    Validity            18.12.2008 19:47:04   18.12.2009 19:47:04
    Algorithm           RSA (OID 1.2.840.113549.1.1.1)
    Test signature
    Signature OK
    Verification OK
    Test encryption
    Encryption OK
    Decryption OK
    As you can see, the cipher algorithm used is RSA. Any suggestion... ?
    An iSaSiLk server "is a Java programming language implementation of the SSLv2 (client-side), SSLv3, TLS 1.0 and TLS 1.1 protocols. It supports all defined cipher suites (except for Fortezza), including all AES and PSK cipher suites. iSaSiLk implements all standard TLS extensions, comes with an easy to use API and operates on top of the IAIK-JCE Javau2122 Cryptography Extension. iSaSiLk is highly configurable and will work with any alternative JCE implementation supported by a proper provider for supplying the required cryptographic algorithms".
    Once again thanks for your answer.

  • Cannot send email via ActiveSync when user connect from Internet (Exchange 2010 SP3 RU5)

    Hi All. 
    This is the first time I encounter this kind of issue, whenever user connect from the internet they cannot send email from their Phone or Windows Mail App, but they can retrieve email 
    But when they connect from Internal Network they can send email. I already test ActiveSync from internet using www.testexchangeconnectivity.com and it pass all tests. 
    I also check the Firewall and all the necessary ports already opened (we even open all ports) , the default TTL on the firewall 3600 second. 
    From what I read ActiveSync use some kind of HTTP POST or in MS terminology "PING" command, but still have no idea what kind of configuration that should be made to the Firewall so it can pass this "PING" command. Because from what I
    see in Android Logcat the problem always related to this PING command 
    10-07 08:12:38.714 I/Exchange(31971): Interrupt with reason 1
    10-07 08:12:38.714 I/Exchange(31971): Ping task ending with status: -1
    10-07 08:12:38.904 D/Exchange(31971): created outputstream
    10-07 08:12:39.204 W/Exchange(31971): IOException sending mail
    10-07 08:12:39.204 E/Exchange(31971): Generic error for operation SendMail: status 200, result -100
    10-07 08:12:39.204 W/Exchange(31971): Aborting outbox sync for error -99
    10-07 08:12:39.274 I/Exchange(31971): Ping task starting for 3
    10-07 08:12:39.304 D/SyncManager(644): failed sync operation [email protected] u0 (com.android.exchange), com.android.email.provider, USER, latestRunTime 71219435, EXPEDITED, reason: 10040, SyncResult: stats [ numIoExceptions: 1]
    10-07 08:12:39.304 D/SyncManager(644): not retrying sync operation because SYNC_EXTRAS_DO_NOT_RETRY was specified [email protected]  u0 (com.android.exchange), com.android.email.provider, USER, latestRunTime 71220078, EXPEDITED, reason: 10040

    Hi ronaldosy,
    How about the work flow of Outlook or OWA on PC internally/externally?
    If only phone has this issue, I suggest ask ActiveSync Forum for help so that you can get more professional suggestions. For your convenience:
    http://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrmobility
    Best Regards,
    Allen Wang

  • Weblogic realm authentication failure getting connection from pool

    We are getting this error when we try to get a connection from the
    pool for a Tx Data Source. We are successfully getting connections
    from a (non-Tx) Data Source.
    java.lang.SecurityException: Authentication for user Fitness_demo
    denied in realm weblogic
    at weblogic.security.acl.Realm.authenticate(Realm.java:212)
    at weblogic.security.acl.Realm.getAuthenticatedName(Realm.java:233)
    at weblogic.security.acl.internal.Security.authenticate(Security.java:125)
    at weblogic.security.acl.Security.doAsPrivileged(Security.java:481)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:127)
    We have added the DB user as a user in the realm, which usually does
    the trick; but in this case it does not. We are using Merant's
    JSQLConnect type 2 driver for SQL Server, and we are running on
    Solaris. The scenario works fine using Oracle Thin driver on Windows.
    Do we need ACL entries or something? We do not have any ACL entries
    now.
    Thanks,
    -wes

    We are getting this error when we try to get a connection from the
    pool for a Tx Data Source. We are successfully getting connections
    from a (non-Tx) Data Source.
    java.lang.SecurityException: Authentication for user Fitness_demo
    denied in realm weblogic
    at weblogic.security.acl.Realm.authenticate(Realm.java:212)
    at weblogic.security.acl.Realm.getAuthenticatedName(Realm.java:233)
    at weblogic.security.acl.internal.Security.authenticate(Security.java:125)
    at weblogic.security.acl.Security.doAsPrivileged(Security.java:481)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:127)
    We have added the DB user as a user in the realm, which usually does
    the trick; but in this case it does not. We are using Merant's
    JSQLConnect type 2 driver for SQL Server, and we are running on
    Solaris. The scenario works fine using Oracle Thin driver on Windows.
    Do we need ACL entries or something? We do not have any ACL entries
    now.
    Thanks,
    -wes

  • HTTPS connection from servlet to another webserver

    Hi,
    We want to make a https connection from a servlet in weblogic server to another
    web server (not necessarily weblogic). We also need dual authentication. But whenever
    we use URL.openConnection(), it always returns us weblogic's internal https and
    SSL implementation. Since weblogic has no documentation about how to use these
    internal classes, such as how to set trusted server certificate, and how to set
    client certificate (servlet is a client of another web server). We want to use
    jsse, after setting JSSE required system properties, I still get a weblogic's
    httpsURLConnection. Can any of you tell me how to resolve this issue?
    Thanks.
    Xinshi

    Yeah, I'm using JSSE now. Here is what I did:
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provide());
    Provider prov = new SimpleSecureProvider();
    prov.setProperty("SecureRandom.efficient", "test.EfficientSecureRandom");
    Security.insertProviderAt(prov, 1);
    You don't really need the provider stuff to get the example working. I use it
    to get around a quick in JSSE where the random number generator takes 15-30 seconds
    to generate a random sequence at start up.
    SimpleSecureProvider looks like this:
    public class SimpleSecureProvider extends Provider
    public SimpleSecureProvider()
    super("SimpleSecureProvider-", 1.0, "Hack to enable more efficient random
    seed generator");
    test.EfficientSecureRandom is bascially an exact copy of Sun's SecureRandom.java
    with the only difference that I used my own random number generator.
    Anyway, rest of the code you need looks like this:
    URL url= new URL("htps://someplace.com");
    URLConnection sconnection = url.openConnection();
    Do whatever.
    I also stored jcert.jar, jnet.jar, jsse.jar in /usr/java/jdk1.3/lib/ext
    I think that is everything.
    I just noticed that service pack 9 has a security example that does not require
    all these jsse hacks. I'm trying to get it to work, but not having much luck.
    Anybody got this working right?
    "Jayesh Patel" <[email protected]> wrote:
    See if this works,
    1. Add the 'j2ee.jar' to CALSSPATH in weblogic startup script.
    2. Set the property SSLHandlerEnabled flase in config.xml
    3. Add the following property permission to the
    weblogic.policy' file under a 'grant' directive
    for all codebases (bottom): 'permission java.security.AllPermission'
    4. Use the following bit of source code to create an https connection:
    import com.sun.net.ssl.*; ....
    com.sun.net.ssl.HttpsURLConnection connection;
    System.setProperty ("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    java.security.Security.addProvider(new
    com.sun.net.ssl.internal.ssl.Provider() );
    URL url = new URL( "https", hostname, query );
    -Jayesh
    connection = (com.sun.net.ssl.HttpsURLConnection )url.openConnection(
    "Xinshi Sha" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    We want to make a https connection from a servlet in weblogic serverto
    another
    web server (not necessarily weblogic). We also need dual authentication.But whenever
    we use URL.openConnection(), it always returns us weblogic's internalhttps and
    SSL implementation. Since weblogic has no documentation about how
    to
    use
    these
    internal classes, such as how to set trusted server certificate, andhow
    to set
    client certificate (servlet is a client of another web server). Wewant to
    use
    jsse, after setting JSSE required system properties, I still get aweblogic's
    httpsURLConnection. Can any of you tell me how to resolve this issue?
    Thanks.
    Xinshi

  • How to setup a JNDI connection from Crystal report 12 (2008) ?

    I've CR 12 (2008)
    I've a report actually bind to datasource via DSN to a sql server.
    Now we need to migrate this connection to JDBC.
    So i downloaded microsft sql driver for jdbc and copied as
    C:\Program Files (x86)\Business Objects\Common\4.0\java/lib/external/sqljdbc4.jar
    I edited CRConfig.xml. adding this full path and file name at <Classpath>
    The parameters i entered are:
    URL: jdbc:sqlserver://10.1.2.40:1433;DatabaseName=CPR;username=selyon;password=......
    class name: com.microsoft.sqlserver.jdbc.SQLServerDriver
    in the second page i entere my usernmae, my password and the db name,
    but when click on 'finish' CR tell me 'unable to fine JNDI driver'.
    What's the problem now

    Sorry, but I'm not on a home pc, I'm working on a virtualized pc with a long chain of permissions ... so I cannot simply download and run an utility...
    Instead... I think (I WAS thinking) someone from SAP can tell me this info ... Probably I'll buy a paid assistance ticket... But really it's a strange thing that a simply connection from a (so) paid software need a so difficult problem solving routine..
    I edited my environment variales: JAVA, PATH; CLASSPATH; JAVA_DIR, and a long list of others ... to ALL point to ALL of directory containing used jars...
    .. I asked my SysAdmin to edit CrConfig.xml and it's done ... classpath are rights, jdbc infos are also ok, ...
    .. but none ...

  • How to create a new connection from SAPGUI to Test drive?

    Hi,
    I have installed Sap Netweaver Test drive on a linux virtual machine (windows host). The installation was successful and I was able to start the instance (application server and the database), yet I don't know how to create a new connection from my SAPGUI client (7.20) to this server. The static IP address of the server is 192.168.1.160.
    I entered the following values for my new connection entry
    Description: SAP Netweaver
    Application server: 192.168.1.160
    Instance number: 01
    System ID: DB2
    SAProuter: /H/192.168.1.160/S/3201/H/
    But it does not work. Any idea about the values needed  for creating a new entry?
    Thanks in advance,
    Dariyoosh

    >
    Dibya R Das wrote:
    > Why are you entering a router string? Can't you reach a box directly from your machine?
    >
    > Doesn't a ping to that host & a "telnet <host/ip address> 3201" work from your machine to the SAP System.
    >
    > Remove the router string you wont need if the above works.
    >
    > - Regards, Dibya
    Hello there,
    Thank you very much for your answer which solved my problem. In fact there was no need of providing router string.
    Kind Regards,
    Dariyoosh

Maybe you are looking for

  • Error while assigning group

    Hi friends,   1. Iam getting the following error when assigning the group to a user.   <b>An error occurred while adding group assignments; to see the correct status, perform a new assigned groups search</b> 2. When uploading the template also its th

  • HRBEN0052  Enhancement framework

    In HR, HRBEN0052 program generates the required IDOCS so that the emp info can be integrated with benefit providers. Its common that every provider needs few fields that are NOT part of the standard IDOC.  Can we use enhancement framework to enhance

  • Dangers for full S_RFC authorization - for all function groups

    Hi, I have recently received a stern warning about all the bad things that can happen if you give users full authorization for S_RFC. This allows the user to use all function modules that use RFC (remote function calls). As all our standard reporting

  • Thinkpad T530 powering up issue

    I have a T530 Thinkpad.  When I turned it on this morning, the lights came on and then went out again, right away.  I have been trying it off and on many times.  I even took the battery out for a while and tried to no avail! Thanks to whomever can sh

  • Tapestry Question

    Please anyone knows how control and register every page what is invocated in a web app developed with Tapestry and Spring, please any idea will be appreciated. Thanks p.s. sorry but the English is not my mother language