StartHandshake failure

Hi all, I'm getting the following from javax.net.debug=all. Any ideas as to why it cuts off prior to "ServerHello" section?
%% No cached client session
*** ClientHello, v3.1
RandomCookie: GMT: 1092003438 bytes = { 178, 125, 9, 31, 9, 123, 116, 85, 77, 135, 187, 124, 21, 48, 28, 239, 255, 32, 3, 72, 241, 3, 228, 109, 198, 149, 50, 53 }
Session ID: {}
Cipher Suites: { 0, 3, 0, 17 }
Compression Methods: { 0 }
[write] MD5 and SHA1 hashes: len = 47
0000: 01 00 00 2B 03 01 41 17 A6 6E B2 7D 09 1F 09 7B ...+..A..n......
0010: 74 55 4D 87 BB 7C 15 30 1C EF FF 20 03 48 F1 03 tUM....0... .H..
0020: E4 6D C6 95 32 35 00 00 04 00 03 00 11 01 00 .m..25.........
ExecuteThread: '7' for queue: 'default', WRITE: SSL v3.1 Handshake, length = 47
[write] MD5 and SHA1 hashes: len = 50
0000: 01 03 01 00 09 00 00 00 20 00 00 03 02 00 80 00 ........ .......
0010: 00 11 41 17 A6 6E B2 7D 09 1F 09 7B 74 55 4D 87 ..A..n......tUM.
0020: BB 7C 15 30 1C EF FF 20 03 48 F1 03 E4 6D C6 95 ...0... .H...m..
0030: 32 35 25
ExecuteThread: '7' for queue: 'default', WRITE: SSL v2, contentType = 22, translated length = 16337
ExecuteThread: '7' for queue: 'default', READ: SSL v3.1 Alert, length = 2
ExecuteThread: '7' for queue: 'default', RECV SSLv3 ALERT: fatal, handshake_failure
Exception: javax.net.ssl.SSLException: Received fatal alert: handshake_failure (no cipher suites in common)

Okay...so the reason there is no ServerHello is because the Cipher Suites were not supported by the server?? Next question...I have the same JSSE jar files installed on 2 different machines and have verified the classpath for 2 installations of WebLogic 7. On one machine I get the following list of supported ciphers:
***ClientHello, v3.1...
Cipher Suites: { 0, 5, 0, 4, 0, 9, 0, 10, 0, 18, 0, 19, 0, 3, 0, 17 }
and on the other I get these:
***ClientHello, v3.1...
Cipher Suites: { 0, 3, 0, 17 }
How does this happen when the same JSSE package is in use on both servers?

Similar Messages

  • 2-way handshake fails / "hanskake failure"

    I'am trying to set up a 2-way hanshake with a server (Nortel Alteon SSL Accelerator).
    I have the client certificate on my keystore as well as the CA Root certificate in the signers.
    My java client works just fine if no client authentication is required by the server.
    Also, if I test the 2-way handshake with my browser (IE), I have no problem to establish the connection after it prompted me for the appropriate (client) certificate (which I've imported into IE).
    So I wonder if there is particular thing to define at the application level to explicitely return the client certificate at runtime (just like I do by clicking on the button in the IE popup) ?
    Here is the main properties from JSSE, I'm using :
    try {
    // Use Sun's reference implementation of a URL handler
    // for the HTTPS URL protocol
    System.setProperty("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    // Registers dynamically Sun's ssl provider.           
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    // Specify the location of the truststore file
    // truststore file contains key material for the TrustManager
    // This file takes precedence over jssecacerts and cacerts
    System.setProperty("javax.net.ssl.trustStore", _trustStorePath);
    System.setProperty("javax.net.ssl.trustStorePassword",
    _trustStorePassword);
    endpoint = new java.net.URL(rpcrouter_address);
    Here is the exception I get :
    stackTrace: javax.net.ssl.SSLHandshakeException: handshake failure
         at com.ibm.jsse.bd.a(Unknown Source)
         at com.ibm.jsse.bd.startHandshake(Unknown Source)
    Tks for the help.
    --MAS

    Tanks for the attention ...
    At first, I used the same file :
    Ref : System.setProperty("javax.net.ssl.trustStore", _trustStorePath);
    Then, I realized that it might be better to use a different one for the keys, so I've imported the client certificate into a new file and add in my code :
    System.setProperty("javax.net.ssl.keyStore",_keyStorePath);
    But I always get the same exception :
    javax.net.ssl.SSLHandshakeException "handshake failure"
    On the server's side, I have that client certificate defined. I still wonder if every thing is fine with the Alteon config (these Nortel's things are tricky ...) but again when I simulate the client authentication within IE, it works just fine.
    --MAS                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

  • Handshake failure

    Hello everyone
    here iam struggling with a problem, of handshake failure. the synoptical story is
    1. I am developing a java client to connect a payware merchant server at a port 3443 through SSL, with package JSSE from JDK1.4.1 on windows 2000 using socket API.
    2. I got the two server certificates namely ca.pem and client.pem. I feel these are server's public key and CA key. Is it right? I have to keep these certificates in the client's keystore. Here itself, i feel the problem is. How to create a keystore for adding these certificates at client's machine using keytool.
    a) If i create using "keytool -genkey" and there after, i try
    to add above certificates, i am getting the exceptions,
    and not adding these certificates.
    3. here i don't want to have client side certificates, i.e one way handshaking, or in otherwards, it is server authentication only.
    4. after this process i am using below code and trying to contact, iam getting the handshake failure exception, why I unable to resolve this.
    the code i am using:
    import java.net.*;
    import java.io.*;
    import javax.net.ssl.*;
    import javax.net.ssl.*;
    import java.security.cert.X509Certificate;
    import java.security.cert.*;
    import java.security.KeyStore;
    * This example demostrates how to use a SSLSocket as client to
    * send a request through SSL socket and get response from a server developed
    * in C++. Communication through the SSL layers.
    * It assumes that the client is not behind a firewall
    public class TestSocketClient {
    public static void main(String[] args) throws Exception {
         try {
    // 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());
                        System.setProperty("javax.net.debug","SSL");
    System.setProperty("javax.net.ssl.TrustStore","testkeys");
    System.setProperty("javax.net.ssl.TrustStorePassword","passphrase");
                        KeyManagerFactory kmf = KeyManagerFactory.getInstance("SUNX509");
                        KeyStore ks = KeyStore.getInstance("JKS");
                        char[] pass = "passphrase".toCharArray();
                        ks.load(new FileInputStream("testkeys"),pass);
                        kmf.init(ks,pass);
                        TrustManagerFactory tmf = TrustManagerFactory.getInstance("SUNX509");
                        X509TrustManager xtm =new MyX509TrustManager();
                        TrustManager[] tm = {xtm};
                        tmf.init(ks);
                        SSLContext context = SSLContext.getInstance("SSL");
                        java.security.SecureRandom sr = new java.security.SecureRandom();
                        context.init(kmf.getKeyManagers(),tm,sr);
                        SSLSocketFactory sslfactory = context.getSocketFactory();
    /*          SSLSocketFactory factory =
              (SSLSocketFactory)SSLSocketFactory.getDefault();
         SSLSocket socket =
    (SSLSocket)sslfactory.createSocket("10.0.0.20",3443);
         //     socket.setNeedClientAuth(true);
    String[] protocols = {"SSLv3","TLSv1"};
    socket.setEnabledProtocols(protocols);
                   //     socket.setEnabledCipherSuites(socket.getSupportedCipherSuites());
    OutputStream os;
    System.out.println("socket is created.");
         * send http request
         * Before any application data is sent or received, the
         * SSL socket will do SSL handshaking first to set up
         * the security attributes.
         * SSL handshaking can be initiated by either flushing data
         * down the pipe, or by starting the handshaking by hand.
         * Handshaking is started manually in this example because
         * PrintWriter catches all IOExceptions (including
         * SSLExceptions), sets an internal error flag, and then
         * returns without rethrowing the exception.
         * Unfortunately, this means any error messages are lost,
         * which caused lots of confusion for others using this
         * code. The only way to tell there was an error is to call
         * PrintWriter.checkError().
    System.out.println(" just before handshake ");
    // socket.setNeedClientAuth(false);
    // socket.startHandshake();
    // System.out.println(" Hand shake is completed ");
         PrintWriter out = new PrintWriter(
    socket.getOutputStream());
    System.out.println(" print writer object is created ");
    String s="GET http://www.verisign.com/index.html HTTP/1.1";
    byte[] b1=s.getBytes("ISO-8859-1");
    // out.println("GET http://www.verisign.com/index.html HTTP/1.1");
    // os.write(b1);
    out.print(b1);
                   System.out.println(" print is created ");
         out.flush();
              BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                        socket.getInputStream()));
    String inputLine=null;
    System.out.println("The input line is: "+inputLine);
         while ((inputLine = in.readLine()) != null) {
              System.out.println("Received messages from here.");
              System.out.println(inputLine);
    // out.close();
    System.out.println(" output is trying to flushing the data ");
         * Make sure there were no surprises
         if (out.checkError())
              System.out.println(
              "SSLSocketClient: java.io.PrintWriter error");
         /* read response */
         in.close();
         out.close();
         socket.close();
         } catch (Exception e) {
    System.out.println(" the exception is "+e);
    e.printStackTrace();
                        System.exit(0);
    debugging information:
    ---------- Run the application ----------
    found key for : duke
    chain [0] = [
    Version: V1
    Subject: CN=Duke, OU=Java Software, O="Sun Microsystems, Inc.", L=Cupertino, ST=CA, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: com.sun.net.ssl.internal.ssl.JSA_RSAPublicKey@d520c4
    Validity: [From: Wed May 23 02:46:46 GMT+03:00 2001,
                   To: Mon May 23 02:46:46 GMT+03:00 2011]
    Issuer: CN=Duke, OU=Java Software, O="Sun Microsystems, Inc.", L=Cupertino, ST=CA, C=US
    SerialNumber: [    3b0afa66 ]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 5F B5 62 E9 A0 26 1D 8E A2 7E 7C 02 08 36 3A 3E _.b..&.......6:>
    0010: C9 C2 45 03 DD F9 BC 06 FC 25 CF 30 92 91 B1 4E ..E......%.0...N
    0020: 62 17 08 48 14 68 80 CF DD 89 11 EA 92 7F CE DD b..H.h..........
    0030: B4 FD 12 A8 71 C7 9E D7 C3 D0 E3 BD BB DE 20 92 ....q......... .
    0040: C2 3B C8 DE CB 25 23 C0 8B B6 92 B9 0B 64 80 63 .;...%#......d.c
    0050: D9 09 25 2D 7A CF 0A 31 B6 E9 CA C1 37 93 BC 0D ..%-z..1....7...
    0060: 4E 74 95 4F 58 31 DA AC DF D8 BD 89 BD AF EC C8 Nt.OX1..........
    0070: 2D 18 A2 BC B2 15 4F B7 28 6F D3 00 E1 72 9B 6C -.....O.(o...r.l
    adding as trusted cert: [
    Version: V1
    Subject: ST=Dublin, L=Leopardstown, OU=Banking Support, O=Trintech Technologies, CN=trintech.com, C=IE
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: com.sun.net.ssl.internal.ssl.JSA_RSAPublicKey@749757
    Validity: [From: Fri Aug 23 13:05:43 GMT+03:00 2002,
                   To: Sun Sep 22 13:05:43 GMT+03:00 2002]
    Issuer: CN=TEST RSA CERTIFICATION AUTHORITY - FOR INTERNAL TESTING PURPOSES ONLY - NO LIABILITY, OU=Banking Division, O=Trintech Technologies Ltd, L=Dublin, ST=County Dublin, C=IE
    SerialNumber: [    f0]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 7F 7A 9C F6 9D 6D AF AF 2D D4 4F 92 39 4E 95 9B .z...m..-.O.9N..
    0010: 2C 50 76 59 BB E1 27 02 86 DC DB 72 99 7C 97 11 ,PvY..'....r....
    0020: 11 36 97 F3 53 E0 68 DB A9 98 B7 94 EF 17 6D 91 .6..S.h.......m.
    0030: 81 14 FE B6 33 7C 60 CA 13 12 13 EB 75 E7 23 0C ....3.`.....u.#.
    0040: A5 AB 6D F5 0B A2 DA B6 12 DD 48 43 4C AC 80 79 ..m.......HCL..y
    0050: 7F EF 98 E7 5A 67 D5 20 C8 91 C2 32 10 F4 F8 02 ....Zg. ...2....
    0060: B8 44 45 AC 45 24 57 12 60 12 03 6F 9C 50 CB D4 .DE.E$W.`..o.P..
    0070: 8F C5 E5 FB AE 44 0B BC D1 F3 A8 EE 78 64 C0 CF .....D......xd..
    adding private entry as trusted cert: [
    Version: V1
    Subject: CN=Duke, OU=Java Software, O="Sun Microsystems, Inc.", L=Cupertino, ST=CA, C=US
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: com.sun.net.ssl.internal.ssl.JSA_RSAPublicKey@d520c4
    Validity: [From: Wed May 23 02:46:46 GMT+03:00 2001,
                   To: Mon May 23 02:46:46 GMT+03:00 2011]
    Issuer: CN=Duke, OU=Java Software, O="Sun Microsystems, Inc.", L=Cupertino, ST=CA, C=US
    SerialNumber: [    3b0afa66 ]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 5F B5 62 E9 A0 26 1D 8E A2 7E 7C 02 08 36 3A 3E _.b..&.......6:>
    0010: C9 C2 45 03 DD F9 BC 06 FC 25 CF 30 92 91 B1 4E ..E......%.0...N
    0020: 62 17 08 48 14 68 80 CF DD 89 11 EA 92 7F CE DD b..H.h..........
    0030: B4 FD 12 A8 71 C7 9E D7 C3 D0 E3 BD BB DE 20 92 ....q......... .
    0040: C2 3B C8 DE CB 25 23 C0 8B B6 92 B9 0B 64 80 63 .;...%#......d.c
    0050: D9 09 25 2D 7A CF 0A 31 B6 E9 CA C1 37 93 BC 0D ..%-z..1....7...
    0060: 4E 74 95 4F 58 31 DA AC DF D8 BD 89 BD AF EC C8 Nt.OX1..........
    0070: 2D 18 A2 BC B2 15 4F B7 28 6F D3 00 E1 72 9B 6C -.....O.(o...r.l
    adding as trusted cert: [
    Version: V3
    Subject: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: com.sun.net.ssl.internal.ssl.JSA_RSAPublicKey@dfafd1
    Validity: [From: Thu Aug 01 03:00:00 GMT+03:00 1996,
                   To: Fri Jan 01 02:59:59 GMT+03:00 2021]
    Issuer: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    SerialNumber: [    01]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.19 Criticality=true
    BasicConstraints:[
    CA:true
    PathLen:2147483647
    Algorithm: [MD5withRSA]
    Signature:
    0000: 07 FA 4C 69 5C FB 95 CC 46 EE 85 83 4D 21 30 8E ..Li\...F...M!0.
    0010: CA D9 A8 6F 49 1A E6 DA 51 E3 60 70 6C 84 61 11 ...oI...Q.`pl.a.
    0020: A1 1A C8 48 3E 59 43 7D 4F 95 3D A1 8B B7 0B 62 ...H>YC.O.=....b
    0030: 98 7A 75 8A DD 88 4E 4E 9E 40 DB A8 CC 32 74 B9 [email protected].
    0040: 6F 0D C6 E3 B3 44 0B D9 8A 6F 9A 29 9B 99 18 28 o....D...o.)...(
    0050: 3B D1 E3 40 28 9A 5A 3C D5 B5 E7 20 1B 8B CA A4 ;..@(.Z<... ....
    0060: AB 8D E9 51 D9 E2 4C 2C 59 A9 DA B9 B2 75 1B F6 ...Q..L,Y....u..
    0070: 42 F2 EF C7 F2 18 F9 89 BC A3 FF 8A 23 2E 70 47 B...........#.pG
    adding as trusted cert: [
    Version: V3
    Subject: ST=Safat, L=Kuwait, OU=ISP, O=Qualitynet General Trading and Contracting Co., CN=Qualitynet.net, C=KW
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: com.sun.net.ssl.internal.ssl.JSA_RSAPublicKey@a8c488
    Validity: [From: Tue Jan 08 17:48:01 GMT+03:00 2002,
                   To: Wed Jan 08 17:48:01 GMT+03:00 2003]
    Issuer: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    SerialNumber: [    08b1fa]
    Certificate Extensions: 2
    [1]: ObjectId: 2.5.29.37 Criticality=false
    ExtendedKeyUsages [
    [1.3.6.1.5.5.7.3.1]]
    [2]: ObjectId: 2.5.29.19 Criticality=true
    BasicConstraints:[
    CA:false
    PathLen: undefined
    Algorithm: [MD5withRSA]
    Signature:
    0000: 01 26 CD A6 B4 88 69 68 31 99 44 6C CD 24 5E EE .&....ih1.Dl.$^.
    0010: 0D AD 1A 27 94 BC 17 9F 50 CE 22 99 84 29 8E 30 ...'....P."..).0
    0020: 74 38 DF 8E 24 35 83 10 7D CD 50 AC C3 5E C8 89 t8..$5....P..^..
    0030: 63 B5 02 B4 5B 9F D8 79 28 2B 8B 53 4A 5D 81 30 c...[..y(+.SJ].0
    0040: F0 72 53 5D 3D A9 31 75 1C 6F FC 92 9E 41 B9 A7 .rS]=.1u.o...A..
    0050: DC 2C 64 FA 17 65 79 83 A2 4D 04 73 C1 61 3E C5 .,d..ey..M.s.a>.
    0060: E6 4E 20 2A B1 68 FB D9 15 77 52 10 C1 C6 4E 95 .N *.h...wR...N.
    0070: 56 8E E3 7D C1 5F DE 20 14 BB D3 1F A3 8E 85 8D V...._. ........
    trigger seeding of SecureRandom
    done seeding SecureRandom
    socket is created.
    just before handshake
    print writer object is created
    print is created
    %% No cached client session
    *** ClientHello, v3.1
    RandomCookie: GMT: 987413342 bytes = { 254, 80, 236, 112, 44, 177, 113, 24, 240, 17, 19, 124, 170, 193, 156, 242, 6, 94, 107, 49, 236, 18, 211, 50, 196, 36, 58, 91 }
    Session ID: {}
    Cipher Suites: { 0, 5, 0, 4, 0, 9, 0, 10, 0, 18, 0, 19, 0, 3, 0, 17 }
    Compression Methods: { 0 }
    [write] MD5 and SHA1 hashes: len = 59
    0000: 01 00 00 37 03 01 3B DB BB 5E FE 50 EC 70 2C B1 ...7..;..^.P.p,.
    0010: 71 18 F0 11 13 7C AA C1 9C F2 06 5E 6B 31 EC 12 q..........^k1..
    0020: D3 32 C4 24 3A 5B 00 00 10 00 05 00 04 00 09 00 .2.$:[..........
    0030: 0A 00 12 00 13 00 03 00 11 01 00 ...........
    main, WRITE: SSL v3.1 Handshake, length = 59
    main, READ: SSL v3.0 Handshake, length = 74
    *** ServerHello, v3.0
    RandomCookie: GMT: 1019049914 bytes = { 146, 60, 74, 221, 254, 223, 224, 218, 86, 64, 214, 127, 32, 0, 235, 238, 181, 210, 212, 218, 141, 38, 198, 142, 110, 175, 146, 113 }
    Session ID: {1, 241, 227, 143, 175, 90, 192, 25, 155, 216, 173, 103, 159, 41, 90, 222, 86, 8, 76, 153, 122, 138, 88, 120, 112, 104, 65, 202, 147, 134, 163, 143}
    Cipher Suite: { 0, 10 }
    Compression Method: 0
    %% Created: [Session-1, SSL_RSA_WITH_3DES_EDE_CBC_SHA]
    ** SSL_RSA_WITH_3DES_EDE_CBC_SHA
    [read] MD5 and SHA1 hashes: len = 74
    0000: 02 00 00 46 03 00 3D BD 78 BA 92 3C 4A DD FE DF ...F..=.x..<J...
    0010: E0 DA 56 40 D6 7F 20 00 EB EE B5 D2 D4 DA 8D 26 ..V@.. ........&
    0020: C6 8E 6E AF 92 71 20 01 F1 E3 8F AF 5A C0 19 9B ..n..q .....Z...
    0030: D8 AD 67 9F 29 5A DE 56 08 4C 99 7A 8A 58 78 70 ..g.)Z.V.L.z.Xxp
    0040: 68 41 CA 93 86 A3 8F 00 0A 00 hA........
    main, READ: SSL v3.0 Handshake, length = 1561
    *** Certificate chain
    chain [0] = [
    Version: V3
    Subject: ST=Safat, L=Kuwait, OU=ISP, O=Qualitynet General Trading and Contracting Co., CN=Qualitynet.net, C=KW
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: com.sun.net.ssl.internal.ssl.JSA_RSAPublicKey@d251a3
    Validity: [From: Tue Jan 08 17:48:01 GMT+03:00 2002,
                   To: Wed Jan 08 17:48:01 GMT+03:00 2003]
    Issuer: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    SerialNumber: [    08b1fa]
    Certificate Extensions: 2
    [1]: ObjectId: 2.5.29.37 Criticality=false
    ExtendedKeyUsages [
    [1.3.6.1.5.5.7.3.1]]
    [2]: ObjectId: 2.5.29.19 Criticality=true
    BasicConstraints:[
    CA:false
    PathLen: undefined
    Algorithm: [MD5withRSA]
    Signature:
    0000: 01 26 CD A6 B4 88 69 68 31 99 44 6C CD 24 5E EE .&....ih1.Dl.$^.
    0010: 0D AD 1A 27 94 BC 17 9F 50 CE 22 99 84 29 8E 30 ...'....P."..).0
    0020: 74 38 DF 8E 24 35 83 10 7D CD 50 AC C3 5E C8 89 t8..$5....P..^..
    0030: 63 B5 02 B4 5B 9F D8 79 28 2B 8B 53 4A 5D 81 30 c...[..y(+.SJ].0
    0040: F0 72 53 5D 3D A9 31 75 1C 6F FC 92 9E 41 B9 A7 .rS]=.1u.o...A..
    0050: DC 2C 64 FA 17 65 79 83 A2 4D 04 73 C1 61 3E C5 .,d..ey..M.s.a>.
    0060: E6 4E 20 2A B1 68 FB D9 15 77 52 10 C1 C6 4E 95 .N *.h...wR...N.
    0070: 56 8E E3 7D C1 5F DE 20 14 BB D3 1F A3 8E 85 8D V...._. ........
    chain [1] = [
    Version: V3
    Subject: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: com.sun.net.ssl.internal.ssl.JSA_RSAPublicKey@edc073
    Validity: [From: Thu Aug 01 03:00:00 GMT+03:00 1996,
                   To: Fri Jan 01 02:59:59 GMT+03:00 2021]
    Issuer: [email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA
    SerialNumber: [    01]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.19 Criticality=true
    BasicConstraints:[
    CA:true
    PathLen:2147483647
    Algorithm: [MD5withRSA]
    Signature:
    0000: 07 FA 4C 69 5C FB 95 CC 46 EE 85 83 4D 21 30 8E ..Li\...F...M!0.
    0010: CA D9 A8 6F 49 1A E6 DA 51 E3 60 70 6C 84 61 11 ...oI...Q.`pl.a.
    0020: A1 1A C8 48 3E 59 43 7D 4F 95 3D A1 8B B7 0B 62 ...H>YC.O.=....b
    0030: 98 7A 75 8A DD 88 4E 4E 9E 40 DB A8 CC 32 74 B9 [email protected].
    0040: 6F 0D C6 E3 B3 44 0B D9 8A 6F 9A 29 9B 99 18 28 o....D...o.)...(
    0050: 3B D1 E3 40 28 9A 5A 3C D5 B5 E7 20 1B 8B CA A4 ;..@(.Z<... ....
    0060: AB 8D E9 51 D9 E2 4C 2C 59 A9 DA B9 B2 75 1B F6 ...Q..L,Y....u..
    0070: 42 F2 EF C7 F2 18 F9 89 BC A3 FF 8A 23 2E 70 47 B...........#.pG
    [read] MD5 and SHA1 hashes: len = 1561
    0000: 0B 00 06 15 00 06 12 00 02 F5 30 82 02 F1 30 82 ..........0...0.
    0010: 02 5A A0 03 02 01 02 02 03 08 B1 FA 30 0D 06 09 .Z..........0...
    0020: 2A 86 48 86 F7 0D 01 01 04 05 00 30 81 C4 31 0B *.H........0..1.
    0030: 30 09 06 03 55 04 06 13 02 5A 41 31 15 30 13 06 0...U....ZA1.0..
    0040: 03 55 04 08 13 0C 57 65 73 74 65 72 6E 20 43 61 .U....Western Ca
    0050: 70 65 31 12 30 10 06 03 55 04 07 13 09 43 61 70 pe1.0...U....Cap
    0060: 65 20 54 6F 77 6E 31 1D 30 1B 06 03 55 04 0A 13 e Town1.0...U...
    0070: 14 54 68 61 77 74 65 20 43 6F 6E 73 75 6C 74 69 .Thawte Consulti
    0080: 6E 67 20 63 63 31 28 30 26 06 03 55 04 0B 13 1F ng cc1(0&..U....
    0090: 43 65 72 74 69 66 69 63 61 74 69 6F 6E 20 53 65 Certification Se
    00A0: 72 76 69 63 65 73 20 44 69 76 69 73 69 6F 6E 31 rvices Division1
    00B0: 19 30 17 06 03 55 04 03 13 10 54 68 61 77 74 65 .0...U....Thawte
    00C0: 20 53 65 72 76 65 72 20 43 41 31 26 30 24 06 09 Server CA1&0$..
    00D0: 2A 86 48 86 F7 0D 01 09 01 16 17 73 65 72 76 65 *.H........serve
    00E0: 72 2D 63 65 72 74 73 40 74 68 61 77 74 65 2E 63 [email protected]
    00F0: 6F 6D 30 1E 17 0D 30 32 30 31 30 38 31 34 34 38 om0...0201081448
    0100: 30 31 5A 17 0D 30 33 30 31 30 38 31 34 34 38 30 01Z..03010814480
    0110: 31 5A 30 81 8E 31 0B 30 09 06 03 55 04 06 13 02 1Z0..1.0...U....
    0120: 4B 57 31 17 30 15 06 03 55 04 03 13 0E 51 75 61 KW1.0...U....Qua
    0130: 6C 69 74 79 6E 65 74 2E 6E 65 74 31 37 30 35 06 litynet.net1705.
    0140: 03 55 04 0A 13 2E 51 75 61 6C 69 74 79 6E 65 74 .U....Qualitynet
    0150: 20 47 65 6E 65 72 61 6C 20 54 72 61 64 69 6E 67 General Trading
    0160: 20 61 6E 64 20 43 6F 6E 74 72 61 63 74 69 6E 67 and Contracting
    0170: 20 43 6F 2E 31 0C 30 0A 06 03 55 04 0B 13 03 49 Co.1.0...U....I
    0180: 53 50 31 0F 30 0D 06 03 55 04 07 13 06 4B 75 77 SP1.0...U....Kuw
    0190: 61 69 74 31 0E 30 0C 06 03 55 04 08 13 05 53 61 ait1.0...U....Sa
    01A0: 66 61 74 30 81 9F 30 0D 06 09 2A 86 48 86 F7 0D fat0..0...*.H...
    01B0: 01 01 01 05 00 03 81 8D 00 30 81 89 02 81 81 00 .........0......
    01C0: B3 22 23 70 88 16 D8 60 DA A4 CF FF 87 57 54 69 ."#p...`.....WTi
    01D0: 53 66 7F 92 A5 38 80 EB E4 AB 12 68 72 AF 91 28 Sf...8.....hr..(
    01E0: 26 34 D6 E3 D4 F5 6C C2 69 A3 FF E6 DC 5F C9 A1 &4....l.i...._..
    01F0: D9 57 22 45 DB 7F 48 6B 6A 10 8C 85 0D 73 C4 0D .W"E..Hkj....s..
    0200: B8 18 5D 89 09 D6 D1 83 B6 1A CF 90 12 80 8B F0 ..].............
    0210: 0D 9D CD CC C0 7A 92 86 22 AD A6 EC 4A 57 D5 A2 .....z.."...JW..
    0220: 0C 27 C6 3D BC AC 34 6A 3F E6 EC 06 8C 59 8D 1A .'.=..4j?....Y..
    0230: 5E 55 9C 28 9B D9 EA 33 B0 D2 82 3B C8 83 02 B5 ^U.(...3...;....
    0240: 02 03 01 00 01 A3 25 30 23 30 13 06 03 55 1D 25 ......%0#0...U.%
    0250: 04 0C 30 0A 06 08 2B 06 01 05 05 07 03 01 30 0C ..0...+.......0.
    0260: 06 03 55 1D 13 01 01 FF 04 02 30 00 30 0D 06 09 ..U.......0.0...
    0270: 2A 86 48 86 F7 0D 01 01 04 05 00 03 81 81 00 01 *.H.............
    0280: 26 CD A6 B4 88 69 68 31 99 44 6C CD 24 5E EE 0D &....ih1.Dl.$^..
    0290: AD 1A 27 94 BC 17 9F 50 CE 22 99 84 29 8E 30 74 ..'....P."..).0t
    02A0: 38 DF 8E 24 35 83 10 7D CD 50 AC C3 5E C8 89 63 8..$5....P..^..c
    02B0: B5 02 B4 5B 9F D8 79 28 2B 8B 53 4A 5D 81 30 F0 ...[..y(+.SJ].0.
    02C0: 72 53 5D 3D A9 31 75 1C 6F FC 92 9E 41 B9 A7 DC rS]=.1u.o...A...
    02D0: 2C 64 FA 17 65 79 83 A2 4D 04 73 C1 61 3E C5 E6 ,d..ey..M.s.a>..
    02E0: 4E 20 2A B1 68 FB D9 15 77 52 10 C1 C6 4E 95 56 N *.h...wR...N.V
    02F0: 8E E3 7D C1 5F DE 20 14 BB D3 1F A3 8E 85 8D 00 ...._. .........
    0300: 03 17 30 82 03 13 30 82 02 7C A0 03 02 01 02 02 ..0...0.........
    0310: 01 01 30 0D 06 09 2A 86 48 86 F7 0D 01 01 04 05 ..0...*.H.......
    0320: 00 30 81 C4 31 0B 30 09 06 03 55 04 06 13 02 5A .0..1.0...U....Z
    0330: 41 31 15 30 13 06 03 55 04 08 13 0C 57 65 73 74 A1.0...U....West
    0340: 65 72 6E 20 43 61 70 65 31 12 30 10 06 03 55 04 ern Cape1.0...U.
    0350: 07 13 09 43 61 70 65 20 54 6F 77 6E 31 1D 30 1B ...Cape Town1.0.
    0360: 06 03 55 04 0A 13 14 54 68 61 77 74 65 20 43 6F ..U....Thawte Co
    0370: 6E 73 75 6C 74 69 6E 67 20 63 63 31 28 30 26 06 nsulting cc1(0&.
    0380: 03 55 04 0B 13 1F 43 65 72 74 69 66 69 63 61 74 .U....Certificat
    0390: 69 6F 6E 20 53 65 72 76 69 63 65 73 20 44 69 76 ion Services Div
    03A0: 69 73 69 6F 6E 31 19 30 17 06 03 55 04 03 13 10 ision1.0...U....
    03B0: 54 68 61 77 74 65 20 53 65 72 76 65 72 20 43 41 Thawte Server CA
    03C0: 31 26 30 24 06 09 2A 86 48 86 F7 0D 01 09 01 16 1&0$..*.H.......
    03D0: 17 73 65 72 76 65 72 2D 63 65 72 74 73 40 74 68 .server-certs@th
    03E0: 61 77 74 65 2E 63 6F 6D 30 1E 17 0D 39 36 30 38 awte.com0...9608
    03F0: 30 31 30 30 30 30 30 30 5A 17 0D 32 30 31 32 33 01000000Z..20123
    0400: 31 32 33 35 39 35 39 5A 30 81 C4 31 0B 30 09 06 1235959Z0..1.0..
    0410: 03 55 04 06 13 02 5A 41 31 15 30 13 06 03 55 04 .U....ZA1.0...U.
    0420: 08 13 0C 57 65 73 74 65 72 6E 20 43 61 70 65 31 ...Western Cape1
    0430: 12 30 10 06 03 55 04 07 13 09 43 61 70 65 20 54 .0...U....Cape T
    0440: 6F 77 6E 31 1D 30 1B 06 03 55 04 0A 13 14 54 68 own1.0...U....Th
    0450: 61 77 74 65 20 43 6F 6E 73 75 6C 74 69 6E 67 20 awte Consulting
    0460: 63 63 31 28 30 26 06 03 55 04 0B 13 1F 43 65 72 cc1(0&..U....Cer
    0470: 74 69 66 69 63 61 74 69 6F 6E 20 53 65 72 76 69 tification Servi
    0480: 63 65 73 20 44 69 76 69 73 69 6F 6E 31 19 30 17 ces Division1.0.
    0490: 06 03 55 04 03 13 10 54 68 61 77 74 65 20 53 65 ..U....Thawte Se
    04A0: 72 76 65 72 20 43 41 31 26 30 24 06 09 2A 86 48 rver CA1&0$..*.H
    04B0: 86 F7 0D 01 09 01 16 17 73 65 72 76 65 72 2D 63 ........server-c
    04C0: 65 72 74 73 40 74 68 61 77 74 65 2E 63 6F 6D 30 [email protected]
    04D0: 81 9F 30 0D 06 09 2A 86 48 86 F7 0D 01 01 01 05 ..0...*.H.......
    04E0: 00 03 81 8D 00 30 81 89 02 81 81 00 D3 A4 50 6E .....0........Pn
    04F0: C8 FF 56 6B E6 CF 5D B6 EA 0C 68 75 47 A2 AA C2 ..Vk..]...huG...
    0500: DA 84 25 FC A8 F4 47 51 DA 85 B5 20 74 94 86 1E ..%...GQ... t...
    0510: 0F 75 C9 E9 08 61 F5 06 6D 30 6E 15 19 02 E9 52 .u...a..m0n....R
    0520: C0 62 DB 4D 99 9E E2 6A 0C 44 38 CD FE BE E3 64 .b.M...j.D8....d
    0530: 09 70 C5 FE B1 6B 29 B6 2F 49 C8 3B D4 27 04 25 .p...k)./I.;.'.%
    0540: 10 97 2F E7 90 6D C0 28 42 99 D7 4C 43 DE C3 F5 ../..m.(B..LC...
    0550: 21 6D 54 9F 5D C3 58 E1 C0 E4 D9 5B B0 B8 DC B4 !mT.].X....[....
    0560: 7B DF 36 3A C2 B5 66 22 12 D6 87 0D 02 03 01 00 ..6:..f"........
    0570: 01 A3 13 30 11 30 0F 06 03 55 1D 13 01 01 FF 04 ...0.0...U......
    0580: 05 30 03 01 01 FF 30 0D 06 09 2A 86 48 86 F7 0D .0....0...*.H...
    0590: 01 01 04 05 00 03 81 81 00 07 FA 4C 69 5C FB 95 ...........Li\..
    05A0: CC 46 EE 85 83 4D 21 30 8E CA D9 A8 6F 49 1A E6 .F...M!0....oI..
    05B0: DA 51 E3 60 70 6C 84 61 11 A1 1A C8 48 3E 59 43 .Q.`pl.a....H>YC
    05C0: 7D 4F 95 3D A1 8B B7 0B 62 98 7A 75 8A DD 88 4E .O.=....b.zu...N
    05D0: 4E 9E 40 DB A8 CC 32 74 B9 6F 0D C6 E3 B3 44 0B [email protected].
    05E0: D9 8A 6F 9A 29 9B 99 18 28 3B D1 E3 40 28 9A 5A ..o.)...(;..@(.Z
    05F0: 3C D5 B5 E7 20 1B 8B CA A4 AB 8D E9 51 D9 E2 4C <... .......Q..L
    0600: 2C 59 A9 DA B9 B2 75 1B F6 42 F2 EF C7 F2 18 F9 ,Y....u..B......
    0610: 89 BC A3 FF 8A 23 2E 70 47 .....#.pG
    main, READ: SSL v3.0 Handshake, length = 210
    *** CertificateRequest
    Cert Types: RSA, DSS,
    Cert Authorities:
    <[email protected], CN=Thawte Server CA, OU=Certification Services Division, O=Thawte Consulting cc, L=Cape Town, ST=Western Cape, C=ZA>
    [read] MD5 and SHA1 hashes: len = 210
    0000: 0D 00 00 CE 02 01 02 00 C9 00 C7 30 81 C4 31 0B ...........0..1.
    0010: 30 09 06 03 55 04 06 13 02 5A 41 31 15 30 13 06 0...U....ZA1.0..
    0020: 03 55 04 08 13 0C 57 65 73 74 65 72 6E 20 43 61 .U....Western Ca
    0030: 70 65 31 12 30 10 06 03 55 04 07 13 09 43 61 70 pe1.0...U....Cap
    0040: 65 20 54 6F 77 6E 31 1D 30 1B 06 03 55 04 0A 13 e Town1.0...U...
    0050: 14 54 68 61 77 74 65 20 43 6F 6E 73 75 6C 74 69 .Thawte Consulti
    0060: 6E 67 20 63 63 31 28 30 26 06 03 55 04 0B 13 1F ng cc1(0&..U....
    0070: 43 65 72 74 69 66 69 63 61 74 69 6F 6E 20 53 65 Certification Se
    0080: 72 76 69 63 65 73 20 44 69 76 69 73 69 6F 6E 31 rvices Division1
    0090: 19 30 17 06 03 55 04 03 13 10 54 68 61 77 74 65 .0...U....Thawte
    00A0: 20 53 65 72 76 65 72 20 43 41 31 26 30 24 06 09 Server CA1&0$..
    00B0: 2A 86 48 86 F7 0D 01 09 01 16 17 73 65 72 76 65 *.H........serve
    00C0: 72 2D 63 65 72 74 73 40 74 68 61 77 74 65 2E 63 [email protected]
    00D0: 6F 6D om
    main, READ: SSL v3.0 Handshake, length = 4
    *** ServerHelloDone
    [read] MD5 and SHA1 hashes: len = 4
    0000: 0E 00 00 00 ....
    main, SEND SSL v3.0 ALERT: warning, description = no_certificate
    main, WRITE: SSL v3.0 Alert, length = 2
    JsseJCE: Using JSSE internal implementation for cipher RSA/ECB/PKCS1Padding
    *** ClientKeyExchange, RSA PreMasterSecret, v3.0
    Random Secret: { 3, 0, 57, 228, 245, 13, 91, 181, 92, 129, 234, 123, 199, 2, 84, 156, 170, 175, 48, 221, 204, 142, 18, 177, 69, 95, 165, 11, 196, 105, 168, 66, 230, 117, 243, 61, 22, 60, 41, 203, 229, 232, 240, 78, 200, 114, 53, 56 }
    [write] MD5 and SHA1 hashes: len = 132
    0000: 10 00 00 80 78 F9 25 03 98 3E C5 F7 8D 63 17 F2 ....x.%..>...c..
    0010: 5A 0F 3D 7C D1 DB 3C 88 69 A1 1F 0F A0 E0 54 AC Z.=...<.i.....T.
    0020: 99 8D 4F EC C7 74 F2 BA 8E AD C3 A0 B4 91 E9 1C ..O..t..........
    0030: 74 75 2F 89 26 7C 82 6A 70 1F 72 50 F0 07 41 38 tu/.&..jp.rP..A8
    0040: 4B 5A 8A F2 DE 61 1A 9D 34 2A 1D 0C C1 9D EC CA KZ...a..4*......
    0050: 27 D7 93 3E B1 17 4A 48 62 5E 47 DA 70 6B 10 A2 '..>..JHb^G.pk..
    0060: 29 99 3D 17 93 0D B2 FB DF EB 5C 13 91 72 FB 6C ).=.......\..r.l
    0070: AD 6D 4D 46 F7 B3 AB 02 76 61 F8 0E 03 7D 32 AF .mMF....va....2.
    0080: 3A 53 64 B0 :Sd.
    main, WRITE: SSL v3.0 Handshake, length = 132
    SESSION KEYGEN:
    PreMaster Secret:
    0000: 03 00 39 E4 F5 0D 5B B5 5C 81 EA 7B C7 02 54 9C ..9...[.\.....T.
    0010: AA AF 30 DD CC 8E 12 B1 45 5F A5 0B C4 69 A8 42 ..0.....E_...i.B
    0020: E6 75 F3 3D 16 3C 29 CB E5 E8 F0 4E C8 72 35 38 .u.=.<)....N.r58
    CONNECTION KEYGEN:
    Client Nonce:
    0000: 3B DB BB 5E FE 50 EC 70 2C B1 71 18 F0 11 13 7C ;..^.P.p,.q.....
    0010: AA C1 9C F2 06 5E 6B 31 EC 12 D3 32 C4 24 3A 5B .....^k1...2.$:[
    Server Nonce:
    0000: 3D BD 78 BA 92 3C 4A DD FE DF E0 DA 56 40 D6 7F =.x..<J.....V@..
    0010: 20 00 EB EE B5 D2 D4 DA 8D 26 C6 8E 6E AF 92 71 ........&..n..q
    Master Secret:
    0000: 85 D3 60 38 ED 28 6E 78 A3 1E 6D 6D AB 16 28 00 ..`8.(nx..mm..(.
    0010: 43 13 02 A9 27 41 29 52 31 2E E8 4F AD C9 18 2B C...'A)R1..O...+
    0020: 32 CE 4F 54 C5 82 24 4D E5 F2 6F 4D 28 E3 F6 BB 2.OT..$M..oM(...
    Client MAC write Secret:
    0000: CD A6 10 71 07 C6 D4 DE 67 17 3B E1 FD ED D3 1A ...q....g.;.....
    0010: 1F C2 0A F0 ....
    Server MAC write Secret:
    0000: 4D 72 94 AD 25 0C 13 8A 8C 38 99 D7 A7 5C 9C EA Mr..%....8...\..
    0010: BC 6D 05 D3 .m..
    Client write key:
    0000: AF 2E A1 B1 F5 65 C0 DC 06 A9 0B 2F 6D 50 9D AD .....e...../mP..
    0010: 9C 54 81 C0 C2 CA 00 1F .T......
    Server write key:
    0000: C8 D1 05 53 51 AC 90 ED A4 E2 4B ED 9E 51 21 DC ...SQ.....K..Q!.
    0010: B6 5C EC 2A AA F9 8F 78 .\.*...x
    Client write IV:
    0000: 2F 8F 34 8F 63 A6 35 28 /.4.c.5(
    Server write IV:
    0000: 8F FF D3 C1 AC 32 3D 96 .....2=.
    main, WRITE: SSL v3.0 Change Cipher Spec, length = 1
    JsseJCE: Using JSSE internal implementation for cipher DESede/CBC/NoPadding
    *** Finished, v3.0
    MD5 Hash: { 210, 197, 57, 55, 38, 216, 173, 32, 214, 81, 225, 100, 54, 5, 93, 247 }
    SHA1 Hash: { 183, 114, 192, 183, 141, 75, 236, 153, 35, 197, 117, 135, 145, 199, 218, 137, 187, 186, 216, 148 }
    [write] MD5 and SHA1 hashes: len = 40
    0000: 14 00 00 24 D2 C5 39 37 26 D8 AD 20 D6 51 E1 64 ...$..97&.. .Q.d
    0010: 36 05 5D F7 B7 72 C0 B7 8D 4B EC 99 23 C5 75 87 6.]..r...K..#.u.
    0020: 91 C7 DA 89 BB BA D8 94 ........
    Padded plaintext before ENCRYPTION: len = 64
    0000: 14 00 00 24 D2 C5 39 37 26 D8 AD 20 D6 51 E1 64 ...$..97&.. .Q.d
    0010: 36 05 5D F7 B7 72 C0 B7 8D 4B EC 99 23 C5 75 87 6.]..r...K..#.u.
    0020: 91 C7 DA 89 BB BA D8 94 D9 CB BD E2 60 63 C1 09 ............`c..
    0030: 3D CD A5 EF 06 89 80 FA 47 D8 4A 9A 03 03 03 03 =.......G.J.....
    main, WRITE: SSL v3.0 Handshake, length = 64
    main, READ: SSL v3.0 Alert, length = 2
    main, RECV SSLv3 ALERT: fatal, handshake_failure
    the exception is java.net.SocketException: Socket is closed
    java.net.SocketException: Socket is closed
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.getInputStream(DashoA6275)
         at TestSocketClient.main(TestSocketClient.java:108)
    Normal Termination
    Output completed (9 sec consumed).
    Hope somebody came across this situation....... waiting for your appreciate response.
    thanks

    Hi,
    This might not solve all your problems, but it should allow you to load the certificates into a keystore programmatically in Java.
    2. I got the two server certificates namely ca.pem and
    client.pem. I feel these are server's public key and
    CA key. Is it right?You should proabably find out what they are, and make sure they
    are certificates.
    How to create a keystore for adding these
    certificates at client's machine using keytool. Here is how you can create a keystore (in memory) and load the
    certificates (if that's what they are) into the keystore:
    // assuming you are using X.509 certificates
    CertificateFactory cf = CertificateFactory.getInstance("X.509");
    FileInputStream certFile = new FileInputStream("pathToCert");
    Certificate cert = cf.generateCertificate( certFile );
    KeyStore trustedks = KeyStore.getInstance("JKS");
    // this essentially initializes a keystor in memeory
    trustedks.load(null,null);
    // substitute "alias" with "server" and "ca" respectively for your case
    // though I find it doesn't matter what their alias is.
    trustedks.setCertificateEntry( "alias", certificate );
    // continue as you did in your example and use this new trusted keystore
    Cheers,
    Jason

  • I am using Windows 8.1 i have an External Hard Disk and one drive is now inaccessible due to sudden power failure few days ago. Now it shows "Data error (Cyclic redundancy check)". I want all my important files and Pics. How ?

    Hi,
    I am using Windows 8.1
    I have an External Hard Disk i have partitioned it to 4 parts.
    One drive is now inaccessible due to sudden power failure while listening Music from that drive few days ago.
    Now it shows "Data error (Cyclic redundancy check)".
    I tried all the procedures provided here like
    chkdsk /f, diskpart, rescan etc
    but no result :( (i mean all processes failed. They could not detect the drive).
    Please help me to get those data, pictures and project files.
    thank you

    Then why aren't you posting this in the Windows 8 forums found @
    http://social.technet.microsoft.com/Forums/windows/en-US/home?category=w8itpro
    This is a Windows 7 forum for discussion about Windows 7.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Inter-Company Purchasing Failure,B12B1 screnario

    I Build & Run B12B1 with B1iSN 2007 and is under testing.
    B1PO2B1SO
    - Create a purchase order in Subsidiary Company, Choose the vendor as Headquarter.
    However, the following error has occurred.
    SAP B1iSN Addmin Console >Monitoring>Message Log
    Failure
    com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: com.sap.b1i.bizprocessor.BizProcException: BPE001 Nested exception: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception: java.lang.RuntimeException: DI Error Code: -5002 (-5002) Enter name of Business Place and VAT Registration No.(nnn-nn-nnnnn)
    Do not know what the problem is.
    Please help me.
    Korea is the type of database.

    Hi,
    Just check with your LPE. Business Place on marketing is mandotary fied in your localization. Thus please follow the steps below:
    1.Uncompress the BizPacakge-B12B1.zip
    2.Update the transformation stye sheet for biu.Z.B1PO2B1SO.xsl:  Just add Business place below into the document header. You can refer to the attached.
    <!--For Korean localization: Business Place and VAT Registration are mandatory-->
            <BPL_IDAssignedToInvoice>
             <xsl:value-of select="BPL_IDAssignedToInvoice"/>
            </BPL_IDAssignedToInvoice>
    3.Compress it again.
    4.Import the BizPackage with B1i Control Center again.
    Your LPE may talk to you soon. Just now I already have a concall with him to show how to do it.
    Regards, yatsea

  • Imminent hard drive failure message

    can i return my laptop to the store for a replacement.. it is less than 5 months old and i am getting an imminent hard drive failure message. totally unacceptable

    HP will replace the hard drive under warranty. Not too many stores will permit a return after 5 mos. We can also assist with a hard drive replacement.

  • Multiple iMac LogicBoard failures

    So 3 years ago I took the plunged and converted the house to Macs. Nice experience generally. Yet in the last 2 months I have had two logicboard failures on two iMacs. The cost to fix these was quoted at over $1,000 each computer. Obviously given the age of the machines, this is not a viable fix.
    I am now considering moving back to PC's (my 3 year old Mac laptop is also playing up).
    After logicboard failure #1, I reluctantly forked out $2K for a new machine. I racked this up as a "bad" and unusual unit. #2 comes along and fails and it makes me mad. Worse, no sympathy from the guys in the Apple Store. I ask "Surely for a machine of this age, noone would possibly pay for a $1K logicboard? Isn't this priced to basically make you buy a new machine?" All I got back was smiles (they really didn't care it seems).
    Question:
    - Are Mac's prone to hardware failures?
    - If they do get hardware failures are you basically just in trouble given the absurd component prices to fix ($700 for the logicboard part alone)? How can Apple justify $700 for a logicboard part?
    - Does Apple offer any discounts to people who have had these multiple bad experiences? (I'm partly kidding here, but also hoping)
    My Mac laptop is playing up so I may be two Mac's down. I am considering going back to the darkside now and buying PC's again.
    Anyone got any comments?
    Thanks

    That a UPS unit would have prevented your logic board failures. Properly designed power supplies do not need a UPS unit in this country. In some third world countries where the power is unreliable on a daily basis with large power swings, they are a must have.
    In my opinion, the G5 iMac's were a poor design with inadequate heat dissipation, weak power supplies and logic boards. Most of them ran for years, but an inordinate number of them had multiple failures. The new aluminum models are a much better design with most of the high heat components located at the top of the machine.
    I had no hardware problems with my eight year old Dell...but I'm still sticking with Apple because of their superior software performance.
    Good luck with what ever you decide...virg

  • Multiple Hard Drive Failures on my Macbook Pro - Entourage reminders?

    Over the past 2 months I've had three hard drives fail on three different macbook pro computers.
    I've retraced my steps, searched many forums, and spoken with multiple Mac Geniuses but still can't figure out what's happening. The IT guy at work is about to kill me and I really want to figure out what's going wrong so I can fix it (or change my current behaviors).
    Computer #1 - Out of the box, 2-3 weeks old. I took the computer home to do some work over the weekend. I didn't turn the it off before transporting it, but I did wait for it to go to sleep completely (I've since read that it takes a few moments while things in RAM switch over to the Hard Drive to save incase of power failure). I worked on it a bit at home, mostly just internet searches and a few word documents. When I returned to work my computer was running slowly and suddenly all of the programs locked. Since I've had this problem before with my personal computer (a G4 Powerbook), I tried the force quit options to no avail so I just held down the power key to power off. When I rebooted I got the dreaded "no" symbol.
    Computer 2: IT gave me a used macbook pro that they repurposed for me. I made sure to shut down before transporting this computer. A few days later, before I even got to transfer all of my files, the computer started running slowly, programs locked. I eventually got the computer to shut itself down (as IT didn't want me to do a forced reboot) but upon restarting I got an even more dreaded screen, the folder with a question mark in it.
    Computer 3: It was a fairly new computer, though a bit more ram, and probably only a few months old (used by a freelancer). It worked great. I took it home several times, transfered all of my files. Set up everything perfectly. Three weeks in, after working at my desk for about 4 hours, everything began to slow down. I called IT immediately and remotely sent a force shut down message. Nothing happened for about 15 minutes so I left for a meeting. I came back a few hours later and my computer was off. When it restarted, nothing appeared. There wasn't a "no" symbol or folder with a question mark in it, just a blank screen.
    I've read and thought about all of the options.
    - Large Magnet somewhere - It would have affected my personal computer (if at home) or my colleagues (if at work) or everyone else in nyc (while on the subway)
    - Too hot - Possible I suppose, but how does running iTunes, powerpoint, and entourage do this?
    - Downloaded something/Virus - We don't have administrative privileges. I can only update some software and send/receive folders. Plus, can any single file cause this much damage?
    - Moved before asleep - This might have happened on the first computer, but I doubt it could happen to three. I always shut it down now before transporting, and I was sitting at my desk for hours before I had any trouble last time.
    The one common factor that I haven't mentioned.
    We use Entourage as a mail client here.
    Each time the computer froze, the first things to freeze were the Entourage calendar reminders. Entourage seems to run strangely with the airport, but not with our LAN. When my computer froze last time, I had the aiport on but was working off the LAN. Could Entourage cause this much trouble? Has anyone else had trouble with entourage calendar reminders or failing hard drives?
    Oh, and it also always happens on a Monday. I've taken the computers home multiple times though, so I'm not sure if it's something I'm doing during the transport or not, but the computer is always off now when I move it. I also cary my personal computer with me often, same routes and bags, so I'm not sure why it's not affected.
    Thanks

    columbus new boy wrote:
    How crap is that?
    It's not crap at all.
    It's not that simple. For example, I've 3500 songs on my MacBook but don't want them all on my phone, so I have to manually select each song again???
    There has to be a solution.
    Why not simply make a playlist with the songs you want on the iPhone?
    and maintain a current backup of your computer.

  • TS1369 Tried to restore my ipod classic on a windows computer... there was some sort of failure and it is now stuck in "disk mode."  The ipod is no longer being recognized by itunes.

    Tried to restore my ipod classic on a windows computer... there was some sort of failure and it is now stuck in "disk mode."  The ipod is no longer being recognized by itunes.

    I am having the exact same problem.  My ipod has been stuck in disk mode for over two hours and now itunes is frozen.

  • In case of Control File Failure, Create Control File cmd how get scn?

    The following lines i picked from the
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5033895918209
    ======================================================
    1. We can use the 'alter database rename ' at mount stage to rename any datafile. Or is it not possible to rename the system datafile like this? Why?
    2. What happens to the SCN information in the controlfile when a controlfile is recreated? How will the database sync the SCN with that of the datafiles?
    If I issue a 'backup controlfile to <file>' at 8 am and then restore that controlfile binary backup at 10 am and try to open the database, it will give me a control file old error. I understand that it is because the SCN is not in sync. But if I issue a 'backup controlfile to trace' at 8 am and use that script to recreate a new controlfile at 10 am, why doesn't I get the error? Where does it get the SCN information then?
    So what is the use of taking a binary copy of the controlfile. Looks like having a 'backup controlfile to trace' script is better than a binary backup. Do you agree? Why/whynot?
    Followup August 16, 2002 - 2pm US/Eastern:
    1) you could but I just always did it with the create controlfile statement.
    When moving system -- I do it that way
    When moving ANY OTHER tablespace -- i just offline it, move the files, rename the files online it.
    2) it just happens.
    The control file you create will read the files to figure out what is up.
    I agree, I've never used a binary controlfile backup myself.
    =========================================================
    My Question- In the Point2 above "Where does it get the SCN information and how control file do SCN Sync with data files?
    "

    1. The CREATE CONTROLFILE reads SCNs from the DataFiles. If the
    database was last shutdown, all the datafiles are "non-fuzzy" and have the same
    SCN (as of the shutdown checkpoint), If the database or some of the files are from
    are hot backup, you cannot open the database because the SCN of some files is
    older (lower) than others -- that is why a RECOVER (DATABASE or DATAFILE) is
    required.
    See http://web.singnet.com.sg/~hkchital/Incomplete_Recovery_with_BackupControlfile.doc
    2. I'm not sure I agree with Tom Kyte's response
    "I agree, I've never used a binary controlfile backup myself. "
    to the question
    "So what is the use of taking a binary copy of the controlfile. Looks like having a 'backup controlfile to trace' script is better than a binary backup. Do you agree? Why/whynot?"
    If you have lost your database (storage/filesystem failure) and all your datafiles are lost,
    you cannot simply do a CREATE CONTROLFILE from a Trace -- because the
    CREATE CONTROLFILE has to read and verify all the datafiles specified in the
    CREATE statement. If you have an RMAN Repository, you can use that to restore
    your database files but otherwise, the RMAN information about backups and backupsets
    are in the binary controlfile.
    That is why it is important to take binary controlfile backups either manually or
    using RMAN or using CONFIGURE CONTROLFILE AUTOBACKUP ON.

  • System failure during locking GL account 5555 by 13113910 Message no. 8I076  and the time of saving out going excise invoice.

    Hi SAP Gurus,
    We are configuring the CIN Settings for our client and at the time of testing, while saving the Out going excise invoice the system is giving the error as “Balance in Transaction Error” and when pressed enter the system displays the error as “ system failure during locking GL account 5555 by 13113910.”
    We have configured Out going excise duty condition types  in the SD pricing procedure
    and
    also maintained the same condition types  as mentioned below  in the path IMG / LOGISTICS GENERAL  / TAX ON GOODS MOVEMENT  /  INDIA / BASIC SETTINGS/ DETERMINATION OF EXCISE DUTY / MAINTAIN EXCISE DEFAULTS
    under the headings
    AR BED Cond – JEXP
    AR Cess Cond – JECS
    ECS AR – JHEC
    And also maintained the settings in the Path IMG / LOGISTICS GENERAL  / TAX ON GOODS MOVEMENT  / INDIA  / SPECIFY  EXCISE ACCOUNTS PER  EXCISE  TRANSACTION and also in SPECIFY G/L ACCOUNTS  PER EXCISE TRANSACTION .
    But still the above mentioned error is comming.
    Note : error in not coming when I am removing the  JHEC condition type  from the path IMG / LOGISTICS GENERAL  / TAX ON GOODS MOVEMENT  / INDIA / BASIC SETTINGS/ DETERMINATION OF EXCISE DUTY / under the heading ECR AR, But we need the JHEC(ie. Higher education cess) also in out going excise invoice.
    Please let me know what is the issue and how to resolve it.
    Thanks & Regards
    Shashi

    Dear We faced the same issue and  almost for 20 days to  get it resolved.
    For this kind of error firstly Check have you activated the Liable for AT1 indicator in(IMG>>Log.General>>Tax on goods Movement>>India>>Basic Settings>>Maintain Excise registrations)
    Also Have you assigned Proper GL account in (IMG>>Log.General>>Tax on Good Movement>>>India>>>Account Determination>>Account determination per Excise transaction type.
    Here pl check the relevant GL has been assigned for
    1.RG23A BED(for Both incoming and outgoing excise invoice  updations against your ETT)
    2 RG23C BED, (for Both incoming and outgoing excise invoice updations against your ETT)
    3 .OFF SET,(for Both incoming and outgoing excise invoice  updations against your ETT)
    4 MODVAT.CLEARING, (for Both incoming and outgoing excise invoice updations against your ETT)
    5 PLA BED& AED & SED,(for Both incoming and outgoing excise invoice updations against your ETT at the time of utilizations)
    6 PLA CESS(for Both incoming and outgoing excise invoice updations against your ETT at the time of utilizations)
    7 CENVAT ON HOLD(for Both incoming and outgoing excise invoice updations against your ETT at the time of utilizations)
    8.CENVAT SUSPENSE(for Both incoming and outgoing excise invoice updations against your ETT at the time of invoice posting)
    9.PLA ON HOLD((for Both incoming and outgoing excise invoice updations against your ETT at the time of TR6c)
    10. CENVAT REVERSAL(For cancellations vs ETT)
    11. RG23A ECS(for Both incoming and outgoing excise invoice  updations against your ETT)
    12. RG23C ECS(for Both incoming and outgoing excise invoice  updations against your ETT)
    13. PLA ECS(for Both incoming and outgoing excise invoice  updations against your ETT )
    14. RG23A AT1(check this more carefully)
    15. RG23C AT1(check this more carefully)
    16. PLA AT1(check this more carefully)
    Hope this helps you...
    Phanikumar

  • Toshiba Satellite L650-07U, Hard disk failure and replacement

    Hi all,
    I have Toshiba Satellite L650-07U Laptop, Model: PSK1EC-0700Q with 4GB RAM, 650GB HD, Windows 7 Home Premium installed. At the time of first use, i made Recovery DVDs which took 4 blank DVDs using Recovery media creator.
    From 2 weeks it is giving problem, at start its slowdown with every application,  then suddenly it started Hard disk failure error and ask to backup important files. From that instant i did all my backup save in another portable Hard drive.
    I had hiren boot CD, and ran RAM test and found it OK, and then run Hard Disk test and found few bad sectors at few certain point, As 650GB Hard disk was taking alot time of time for checking bad sectors, so i stopped that application.
    First I tried Recovery DVDs to restore Windows, but it failed as Laptop DVD-Writer was unable to boot from those created DVDs (DVDs are OK as had checked it on Desktop computer DVD-ROM), Laptop DVD-Writer is also working as I test few more bootable CDs and it booted perfectly, but it is not booting from Recovery DVDs.
    Than i tried to restore from Recovery partition using Factory restore settings, it erases all data and reinstall new and fresh copy of Windows 7 Home Premium. It works fine for few hours than again pops up Hard Disk Failure message again and again. I searched here in Toshiba Forum and have found similar problem with other members and finally decided that it need to replace Hard Disk with new one. As It is now two and a half month old, thats why i need to buy new Hard Disk for my Laptop.
    I checked all partitions of drive using Hiren Boot CD, and had found that there are four default partitions in Toshiba original laptop drive,
    One hidden partition of 1.5 GB
    One hidden partition of almost 21 GB
    One hidden partition of almost 12 GB
    One partition of 561 GB, which was the original partition where windows 7 was installed along with all of my Data.
    Now I want to replace faulty drive with a new one and have a lot of question in my mind which I need to share with you guys.
    At the time of first use I installed Windows 7 64 bit edition, and made Recovery DVDs, and at second time of restore to factory setting I had installed Windows 7 32 bit. I have confusion about recovery DVDs (which is not booting from default DVD-Writer of Laptop), either it has 64 Bit recovery data or 32 bit? Or have both 64 and 32 bit Data.
    Toshiba restore to factory setting without using any recovery DVD/USB is the best possible way to restore Windows 7, How can I make same recover hidden partitions from original/faulty hard drives to new hard drive partitions? Is this possible and how?
    On Default hard drive there was one partition of 561GB instead of two or more partitions. Is this possible to split partitions in new hard drives instead of one big partition?
    As Recovery DVDs are not able to boot from laptop default DVD-Writer, is it possible to open those DVDs on another System and copy tem in USB drive and use it for booting? If it is possible than please show me the steps for making bootable USB from these Recovery DVDs.
    Thanks,
    masterleous
    Solved!
    Go to Solution.

    Satellite L650-07U (PSK1EC-07U00Q)
    This site is for US computers. I doubt you'll get your questions for that Canadian model answered here.
    There appear to be two recovery partitions. Maybe one for 32- and one for 64-bit Windows. Or maybe one is for English and the other for French.
    Your User's Manual isn't much help either. You probably need to ask Toshiba tech support in Canada.
    About all I have to offer is this: Be wary of drives with advanced-format technology. See my message about that.
    -Jerry

  • HDD failure, I'd like to know how to get Windows 7 back on it.

    Hello everyone, I've had a HDD issue lately, but before I move on to describe my issue, here are the specs of my notebook:
    HP Pavilion dv6-3264ca
    AMD Triple-Core CPU 2.2 Ghz
    6GB RAM
    128MB ATI Graphic Card
    750GB Toshiba HDD
    Windows 7 64-bit
    The issue:
    Recently I've had a very unfortunate HDD failure. The recovery partition wouldn't even load. I tried booting my notebook on Linux with the HDD still attached, and it wouldn't read. I extracted the HDD and placed it in an HDD-enclosuer and it still wouldn't load on Windows XP or Vista or 7. It would however read in the device manager of Windows and also in the BIOS.
    I needed to extract some high-priority data from there so I managed to retrieve all my data safely through a data recovery service, but now the drive is rendered useless. I was told a low-level format might be able to help it be usable again, and if that were to happen, the recovery partition would then be removed in the process. 
    In addition to that, I would like to install Windows 7 64-bit onto the drive, but the notebook box did not come with an installation CD, which is quite frustrating. Is there any way HP can let me download Windows 7 through some warranty service?
    I have a one-year warranty on my laptop.
    So in closing, I would like to know if I can get Windows 7 back onto my HDD for free, or if I need to go about buying Windows 7 again.
    Any advice from you kind folks?
    This question was solved.
    View Solution.

    Hi,
    Here are Two options.
    1.  If you have ( or can borrow ) a retail Windows 7 installation disc that is exactly the same version as your OEM installation - ie if your notebook came with Windows 7 Home Premium 64bit this is the exact retail version you would need.
    If you don't have access to a retail disc, you can create an installation disc yourself - just download the correct Disc Image from the link below and use an application such as ImgBurn to burn the ISO correctly to a blank DVD.
    http://www.mydigitallife.info/download-windows-7-iso-official-32-bit-and-64-bit-direct-download-link...
    Use the disc to perform the installation, enter the Windows activation key found on the underside of your notebook when requested and when the installation has completed, use the 'Phone Method' detailed in the link below to activate the OS - this method supported by Microsoft and is popular with people who just want a clean installation of Windows 7 without the additional software load normally bundled with OEM installations.
    http://www.kodyaz.com/articles/how-to-activate-windows-7-by-phone.aspx
    Any additional drivers you may need can be found Here.
    2.  You can order a replacement set of Recovery Discs using the link below - these cost around $30 if you live in the US.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00810334&cc=us&lc=en&dlc=en
    If you have any problem with this link, order them directly from HP.
    If you live in the US, contact HP Here.
    If you are in another part of the world, start Here.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Desktop freezes and hard drives failure

    Hey i faced a recent problem with my Computer, when i log in it freezes/crash i got told its due to my sound drive failuring, i tryed to download HP assistant to upgrade my sound drive but it cames up saying " Error 1719. windows installer service could not be accessed" I went to the HP software website to see if theres any sound drive but there arnt. I cant do a system restore because an error pops up. I tryed everything, nothing seems not to work .
    Heres my computer specs
    Im in safe mod if u want to know ^ ^
    System Information
    Time of this report: 4/29/2011, 14:11:56
           Machine name: ASHDOWN-PC
       Operating System: Windows 7 Home Premium 32-bit (6.1, Build 7601) (7601.win7sp1_rtm.101119-1850)
               Language: English (Regional Setting: English)
    System Manufacturer: Compaq-Presario
           System Model: KQ318AA-ABU SR5414UK
                   BIOS: v5.03
              Processor: Intel(R) Core(TM)2 Duo CPU     E4600  @ 2.40GHz (2 CPUs), ~2.4GHz
                 Memory: 2048MB RAM
    Available OS Memory: 2046MB RAM
              Page File: 556MB used, 3536MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
     System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7600.16385 32bit Unicode
      DxDiag Previously: Crashed in system information (stage 4). Re-running DxDiag with "dontskip" command line parameter or choosing not to bypass information gathering when prompted might result in DxDiag successfully obtaining this information
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: This computer cannot play audio because the Windows Audio service is not enabled.  Use the Sounds and Devices Properties control panel to enable audio. No sound card was found.  If one is expected, you should install a sound driver provided by the hardware manufacturer.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name:
           Manufacturer:
              Chip type:
               DAC type:
             Device Key: Enum\
         Display Memory: n/a
       Dedicated Memory: n/a
          Shared Memory: n/a
           Current Mode: 1600 x 1200 (32 bit) (1Hz)
            Driver Name:
    Driver File Version:  ()
         Driver Version:
            DDI Version: unknown
           Driver Model: unknown
      Driver Attributes: Final Retail
       Driver Date/Size: , 0 bytes
            WHQL Logo'd: n/a
        WHQL Date Stamp: n/a
      Device Identifier: {D7B70EE0-4340-11CF-B123-B03DAEC2CB35}
              Vendor ID: 0x0000
              Device ID: 0x0000
              SubSys ID: 0x00000000
            Revision ID: 0x0000
     Driver Strong Name: Unknown
         Rank Of Driver: Unknown
            Video Accel:
          Deinterlace Caps: n/a
           D3D9 Overlay: n/a
                DXVA-HD: n/a
           DDraw Status: Not Available
             D3D Status: Not Available
             AGP Status: Not Available
    Sound Devices
                Description:
     Default Sound Playback: No
     Default Voice Playback: No
                Hardware ID:
            Manufacturer ID:
                 Product ID:
                       Type:
                Driver Name:
             Driver Version:
          Driver Attributes:
                WHQL Logo'd:
              Date and Size:
                Other Files:
            Driver Provider:
             HW Accel Level: Emulation Only
                  Cap Flags: 0x0
        Min/Max Sample Rate: 0, 0
    Static/Strm HW Mix Bufs: 0, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
    DirectInput Devices
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Razer Arctosa
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010B
            FF Driver: n/a
          Device Name: Razer Arctosa
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1532, 0x010B
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x27C9
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    |
    +-+ USB Input Device
    | | Vendor/Product ID: 0x1532, 0x001C
    | | Location: Port_#0002.Hub_#0002
    | | Matching Device ID: generic_hid_device
    | | Service: HidUsb
    | |
    | +-+ HID-compliant mouse
    | | | Vendor/Product ID: 0x1532, 0x001C
    | | | Matching Device ID: hid_device_system_mouse
    | | | Service: mouhid
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x1532, 0x010B
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    System Devices
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CA
    Device ID: PCI\VEN_8086&DEV_27CA&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EA
       Driver: n/a
         Name: Intel(R) G33/G31/P35/P31 Express Chipset PCI Express Root Port - 29C1
    Device ID: PCI\VEN_8086&DEV_29C1&SUBSYS_29C18086&REV_10\3&241​1E6FE&1&08
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C9
    Device ID: PCI\VEN_8086&DEV_27C9&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E9
       Driver: n/a
         Name: Intel(R) G33/G31/P35/P31 Express Chipset Processor to I/O Controller - 29C0
    Device ID: PCI\VEN_8086&DEV_29C0&SUBSYS_2A78103C&REV_10\3&241​1E6FE&1&00
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27C8
    Device ID: PCI\VEN_8086&DEV_27C8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E8
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) SMBus Controller - 27DA
    Device ID: PCI\VEN_8086&DEV_27DA&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&FB
       Driver: n/a
         Name: Intel(R) 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0
    Device ID: PCI\VEN_8086&DEV_27C0&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&FA
       Driver: n/a
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_27D8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&D8
       Driver: n/a
         Name: Intel(R) 82801GB/GR (ICH7 Family) LPC Interface Controller - 27B8
    Device ID: PCI\VEN_8086&DEV_27B8&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&F8
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) PCI Express Root Port - 27D0
    Device ID: PCI\VEN_8086&DEV_27D0&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&E0
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_2A78103C&REV_E1\3&241​1E6FE&1&F0
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC
    Device ID: PCI\VEN_8086&DEV_27CC&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EF
       Driver: n/a
         Name: Realtek RTL8101E Family PCI-E Fast Ethernet NIC (NDIS 6.20)
    Device ID: PCI\VEN_10EC&DEV_8136&SUBSYS_2A78103C&REV_01\4&360​1B127&0&00E0
       Driver: n/a
         Name: Intel(R) 82801G (ICH7 Family) USB Universal Host Controller - 27CB
    Device ID: PCI\VEN_8086&DEV_27CB&SUBSYS_2A78103C&REV_01\3&241​1E6FE&1&EB
       Driver: n/a
         Name: NVIDIA GeForce 9600 GT
    Device ID: PCI\VEN_10DE&DEV_0622&SUBSYS_82A11043&REV_A1\4&1EA​08276&0&0008
       Driver: n/a
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16597
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.1109
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.110​9
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.1​109
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.11​09
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,15.04.3508.110​9
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3508.110​9
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.1649​0
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
    DivX AAC Decoder,0x00800000,1,1,daac.ax,7.01.0000.0010
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.1638​5
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16490
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7​600.16724
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0​000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16724
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.​16724
    Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.1638​5
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.1​6490
    CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7600.16385
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16490
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.1672​4
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.1672​4
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16​385
    DivX MKV Demux (unrestricted),0x00200000,0,1,DMFSource.ax,1.00.00​02.0006
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16490
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16490
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16​385
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16490
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16490
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16724
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7600.16385
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16490
    DivX H.264 Decoder,0x00800000,1,1,DivXDecH264.ax,9.00.0001.00​21
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16490
    File Writer,0x00200000,1,0,WLXVAFilt.dll,15.04.3508.110​9
    DivX Decoder Filter,0x00800000,1,1,DivXDec.ax,7.01.0001.0014
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.1638​5
    File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.16385
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.1638​5
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7600.16385
    DivX MKV Demux,0x00600000,0,1,DMFSource.ax,1.00.0002.0006
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7600.16490
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16​385
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600​.16724
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
    LAME Audio Encoder,0x00100000,2,1,lame.ax,1.00.0054.50801
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.1​6385
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.1638​5
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.760​0.16724
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7600.16385
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.1​6490
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7600.1​6385
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16490
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16490
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16490
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0​000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600​.16724
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16490
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16490
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16490
    Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7600.163​85
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.16385
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16490
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.1638​5
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.164​90
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7600.16385
    DivX 6.9.2 Codec (2 Logical CPUs),0x00200000,1,1,qcap.dll,6.06.7600.16385
    Fraps Video Decompressor,0x00200000,1,1,qcap.dll,6.06.7600.163​85
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7600.16385
    x264vfw - H.264/MPEG-4 AVC codec,0x00200000,1,1,qcap.dll,6.06.7600.16385
    DivX 6.9.2 YV12 Decoder,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    PCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16490
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7600.16490
    Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.06.7600.16490
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7600.16490
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7600.16490
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16​724
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16​724
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16​724
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7600.16490
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16648
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16​724
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16​724
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16724
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16724
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7600.1638​5
    Audio Renderers:
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16490
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16490
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0

    You can make them visible on the Desktop using Finder/Preferences/General. You can also set them to show up in the Finder Sidebar using Preferences/Sidebar.

  • I had a failure of a dsl modem which inturn destroyed my ethernet port of non isight imac G5.  In attempt to solve the problem I did a clean install of leopard 10.5.4. I am unable to upate to 10.6,.7  or .8 without freezing system network preferences

    Dsl modem failure caused malfunction of ethernet port.  In attempt to solve problem I did a clean instillation of  Leopard 10.5.4 and then update to 10.5.5 with access to internet through apple usb to ethernet adapter.  If I attempt to update software to 10.5.6, .7 or .8 it freezes my network system preferences and computer will no longer shut down.  The network connection assistant also no longer sees a connection to the internet throught the usb/ethernet adapter.  I have checked they systerm Tech tool deluxe which shows no problems and also used hard drive utility on instillation disk which found no problems.  Permissions were also checked as well and no problems noted.  Any thoughts as I really like my imac G5.

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    If all the above fails, then it appears to be time for a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.

Maybe you are looking for

  • Invoice details in Incoming Payment

    Dear All, we are making incoming payment against invoice. In Pld for incoming payments i want details of invoice (Invoice Number and Invoice Amount) against which receipt entry is made. Ex: Account Code...........Account Name.........................

  • Adobe AIR available mobile platform

    Hello All, I am interested in knowing what mobile platforms will have support for Adobe AIR - either directly from Adobe or by third party. I understand Android currently supports it what about Windows Mobile 7, Qualcomm Brew MP , Mediatek etc Regard

  • The computer has rebooted from a bugcheck. The bugcheck was: 0x00000050

    I would like to know how to troubleshoot this issue. I did the firmware/driver/patch updates for multiple Hyper-V cluster just before the Christmas break. We have all HP DL580 boxes. All went well however, in observed issues with two nodes on a clust

  • Nokia 5230 v40.0.003

    anyone has the changelog about this update? all i know is the contacts view at the contacts bar is enlarge.. which is really dumb.. ovi store.. and better gps signal..

  • Variable definition

    Hi Experts, I found out that we have used one variable with SAP Exit processing(Business Content Variable)...where can I find coding for this variable to understand its funtioning?For user created variables,I know that we can find in CMOD. I have to