Configuring Sender HTTPS Connection -- Server/Client Authentification

Hello together,
I need to configure an HTTPS Sender Connection with client and server authentication. I have already check the documentation however I am still not sure about the particular steps. My questions are as follows:
- Do I configure the HTTPS connection on the ABAP or JAVA stack?
- Is it necessary to setup an HTTP sender communication channel
- How does the URL look like (compared to HTTP connection)?
I have provided XI certificates to the client and the client has provided the certificates to me already. So I guess I have to import them somehow on XI.
Any help is appreciated!
Thank you very much.

Hi
Please follow below steps for HTTPS configuration as sender
You need to use either SOAP adapter or XI Adapter for HTTPS connectivity.
Here configure the Security Check for Inbound Messages.
Refer below links
http://help.sap.com/saphelp_nw04/helpdata/en/fc/5ad93f130f9215e10000000a155106/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/4f/0a1640a991c742e10000000a1550b0/frameset.htm
XI3.0: Soap Sender with HTTPS
SAP Security Guide XI, HTTP and SSL
http://help.sap.com/saphelp_nw04/helpdata/en/14/ef2940cbf2195de10000000a1550b0/content.htm
http://help.sap.com/saphelp_nw04s/helpdata/en/97/818a4286031253e10000000a155106/frameset.htm
No configuration is required in the adapter-specific sender channel configuration (inbound) of the Integration Directory.
The authentication/authorization is performed by the J2EE Engine and therefore needs to be configured with the Visual Administrator. This configuration is described in the J2EE Engine Administration Manual and is outlined in the following section.
When a message is to be sent to the Adapter Engine (and ultimately to the Integration Server), the J2EE Engine serves as the SSL Server and presents its server certificate to the client as part of the SSL handshake procedure.
Client-Side Configuration (Required)
The public certificate of the trusted authority (CA) that signed the public certificate of the SSL server needs to be imported to the list of trusted certificates of the SSL client. This allows the SSL client to accept the certificate of the server in the SSL handshake.
Server-Side Configuration (Optional)
If basic authentication is used, no additional configuration is required on server side.
If client certificate authentication is requested or required by selection of the corresponding option in the SSL service and configuration of the ClientCertLoginModule in the SecurityProvider service (using the J2EE Administration Tool), additional configuration steps are required.
If the server certificate check on the client side is successful, the client sends its public certificate to the server as part of the SSL handshake (when requested). The server needs to map the certificate to a user for authentication and will then check the authorization based on the security roles of the user.
Perform the following steps to allow the J2EE engine to map the client certificate to a user:
       1.      Import the CA cert of the client certificate to the list of trusted certificates (TrustedCAs keystore view in the keystore service) and import the client cert to an arbitrary keystore view.
       2.      Map the client certificate to an existing user with role SAP_XI_APPL_SERV_USER by using the Visual Administrator, SecurityProvider service, UserManagement tab page.
Refer below link
Here u go
http://help.sap.com/saphelp_nw04/helpdata/en/65/6a563cef658a06e10000000a11405a/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/f1/2de3be0382df45a398d3f9fb86a36a/frameset.htm

Similar Messages

  • How to implement a persistent HTTP connection on client side...

    Sorry for the inconvenience everyone, but I could really use some help here since I am a total newbie to Java programming
    I am trying to implement a persistent HTTP connection on the client side with request pipelining. The way I understand it is that client requests will be sent to the server, which will reply to them back to back, and then the client will read them accordingly. But when I read the server responses, I get only the reply for the first request, and nothing further, when I actually expect it to give me as many responses as the number of requests I ussued. Here is a sample code illustrating what I am trying to do.
    ====================
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class HttpClient {
    public static String host = "www.somehost.com";
    public static int port = 80;
    public static String pathname = "/download.asp";
    public static String protocol = "http";
    public static ArrayList list;
    public static void main(String[] args) {
    Parser parser = new Parser();
    list = parser.getIDs();
    try {
    Socket socket = new Socket(host, port);
    InputStream from_server = socket.getInputStream();
    PrintWriter to_server = new PrintWriter(socket.getOutputStream());
    OutputStream to_file;
    to_file = new FileOutputStream("HTTP_response.txt", true);
    for(int i = 0; i < 3; i++)
    String s = (String)parser.getIDs().get(i);
    String filename = "/download.asp?id=" + s;
    to_server.print("GET " + filename + "\n\n");
    to_server.flush(); // Send it right now!
    //This response gives only  only the response to the first
    //request,....
    byte[] buffer = new byte[4096];
    int bytes_read;
    while((bytes_read = from_server.read(buffer)) != -1)
    to_file.write(buffer, 0, bytes_read);
    to_file.close();
    socket.close();
    catch (Exception e) {
    System.err.println(e);
    System.err.println("Usage: java HttpClient <URL> [<filename>]");
    }

    There are many things wrong with your code. Learn the HTTP protocol and you'll know what I mean.
    Here's a hint - you'r missing headers in your code.
    Some servers do not support keep-alive connections, nor do you request a keep-alive connection.
    Connection: keep-alive
    Use that header field and see what happends. Also, in your while-loop, you actually close the output file and the socket. Don't you think it may be hard for the server to respond to a client that closed the connection on it?
    1. You don't know HTTP
    2. You don't seem to know Java
    3. You don't seem to understand basic programming logic

  • How to configure/send http links to files on a drive?

    We recently switched over to a Mac-based file server for our small business from a Windows server after a hardware failure. Previously we were able to send HTTP links (I believe using FTP?) to clients that linked directly to video files on one of the drives within the server, which would play back in a browser window or could be downloaded by saving the link. I'm now trying to figure out how to add this functionality to the new server. I'm not an IT guy so this is all kind of Italian to me. All I'm looking for is someone to point me in the right direction.
    What I do know is that the old links were formatted as such:
    zcg911.us/_clients/cintas/example.mov
    There was a drive attached to the server we labeled "htdocs" which contained the "_clients" folder, and was being linked to. Basically I just want to replicate this functionality so we can resume sending out links to our clients in this way.
    Is this something I can do with the OS X Server app? Or do I need third-party software to accomplish this? Any help would be hugely appreciated.

    For http links to work in this case you need a web server which can access those files and then 'serve' them via http. Such a URL would look something like
    http://mywebsever.domain.com/_clients/cintas/example.mov
    The web server could be the file server and this would make things easier but it could be logged in to the file server as a client itself.
    If you simply add a folder or folders to the web server so it can share these to clients, you need to make sure no other files are in the same folders that you do not want to make available to other people. Either this means ensuring only the files you want are in those folders, or instead of sharing the folders themselves, you could make aliases, aka. 'shortcuts', aka. 'links' to the individual files and putting those aliases in the website folder.

  • HTTPS connection with client certificate not working in spartan

    Spartan does not show certificate for the user to select
    when I click the https link.
    The certificates (taken from a smartcard) are indeed present in the user CertStore.
    It works with IE 11 and Chrome.
    Has somebody any suggestions ?
    Thanks.

    in fact you are more using a reverse-proxy than a proxy since it is on the server part..
    You have to put all the SSL server part on the reserve-proxy itself and not on the final RSS feed. Then, the reverse-proxy will authenticate your client and gets its certificate. After that, either this proxy will open a plain connection (no ssl) towards the RSS, or you can also open a ssl connection but this means you must create a client certificate for the proxy. It just depends on the security level you need, and I used this solution many times in professional hosting.
    hope it helps !

  • Proxy https connection with client certificate credentials

    Hello, we are building a application like netvibes/iGoogle which allows users to have portlets with rss feeds in them. The portlets are all loaded using ajax and therefore, the RSS feeds must exist on the same domain as the portal. If they don't, you run into problems with cross-domain security issues with ajax. Usually to get around this you just proxy the connection on the server which is very simple with rss feeds that are exposed via http. We however have many feeds that are exposed via https. These feeds likely require a client certificate to authenticate them. Therefore, just doing a basic proxy (take the distant url and open a new connection on the server) won't work because it will build the new connection with the servers credentials and not the users.
    Is there a way to build the connection on the server using the users credentials?? How can we proxy this connection over https?
    If anyone has ideas, please let me know.
    Thanks!

    in fact you are more using a reverse-proxy than a proxy since it is on the server part..
    You have to put all the SSL server part on the reserve-proxy itself and not on the final RSS feed. Then, the reverse-proxy will authenticate your client and gets its certificate. After that, either this proxy will open a plain connection (no ssl) towards the RSS, or you can also open a ssl connection but this means you must create a client certificate for the proxy. It just depends on the security level you need, and I used this solution many times in professional hosting.
    hope it helps !

  • Could'nt configure for http proxy server in weblogic5.1

    Hai
    we have installed weblogic5.1 in two machines one in NT and the other in windows98.
    We want to use one as the webserver and the other as the proxy webserver. When
    ever if a particular file is not found in the webserver it should automatically
    redirect to the proxy server. we have configured the following set of lines in
    the weblogic.properties.
    weblogic.httpd.defaultServlet=proxy
    weblogic.httpd.register.proxy=weblogic.t3.srvr.HttpProxyServlet
    weblogic.httpd.initArgs.proxy=redirectURL=http://192.168.254.183
    but still we could'nt get the redirection. If we look for a particular jsp file
    which is not in the webserver and located in the proxy webserver it searches only
    in the webserver and giving the "404 not found error". What further configuration
    we have to do to achieve this. Both systems are in the network.
    Anybody's help is more appreciated
    Thx and regards
    jagan

    "jaganmohan" <[email protected]> wrote:
    >
    Hai
    we have installed weblogic5.1 in two machines one in NT and the other
    in windows98.
    We want to use one as the webserver and the other as the proxy webserver.
    When
    ever if a particular file is not found in the webserver it should automatically
    redirect to the proxy server. we have configured the following set of
    lines in
    the weblogic.properties.
    weblogic.httpd.defaultServlet=proxy
    weblogic.httpd.register.proxy=weblogic.t3.srvr.HttpProxyServlet
    weblogic.httpd.initArgs.proxy=redirectURL=http://192.168.254.183
    but still we could'nt get the redirection. If we look for a particular
    jsp file
    which is not in the webserver and located in the proxy webserver it searches
    only
    in the webserver and giving the "404 not found error". What further configuration
    we have to do to achieve this. Both systems are in the network.
    Anybody's help is more appreciated
    Thx and regards
    jaganThanks for everyone i was able to solve the problem on my own. The problem is
    i did'nt commented the following line in the weblogic.properties. After commenting
    the line it worked
    weblogic.httpd.defaultServlet=file

  • How to configure https connection using a http proxy in weblogic server

    Hi,
    I have a proxy in Aqualogic Service Bus that points to a https external service. Our development environment internet access is supported by a http proxy server. The ALSB proxy fails to connect, with the following error message:
    <con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>BEA-380002</con:errorCode>
    <con:reason>
    Tried all: *1 addresses, but could not connect over HTTPS to server: sitenet43.serasa.com.br port: 443*
    </con:reason>
    <con:location>
    <con:node>RouteTo_ConsultarSerasa</con:node>
    <con:path>request-pipeline</con:path>
    </con:location>
    </con:fault>
    I've added the following parameters to jvm args:
    -Dhttp.proxyHost=10.128.0.50
    -Dhttp.proxyPort=3126
    -Dhttp.proxyUser=<someUserName>
    -Dhttp.proxyPassword=<somePassword>
    Accessing the page in Internet Explorer or Firefox is working fine. Somebody knows any additional configuration to this case?
    Thanks in advance
    Rogério Cruz

    In osb you can configure a HTTP proxy server. Once this is done all BS http/https requests will be through the configured proxy server.
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/consolehelp/global_resources.html#wp1137225
    Manoj

  • I am Facing problem with "Send to connection" in SharePoint Server 2010.

    Hi all,
    I am working on SharePoint Server 2010
    I have a site collection and sub sites in it.
    I want to move the document form one site library to another site library.
    Since it can be done by configuring, Send to connection in Central Admin.
    I activated Content Organizer rules in both the sites.
    I added new connection for one site and append the url
    /_vti_bin/officialfile.asmx
    I tested the url on clicking
    Click here to test link it gives me message that
    "URl is a Valid routing Destination".
    and finally I added the connection
     After configuring this I open the other site and uploaded a document in it and after uploading the document I selected send to
    option and clicked on my connection what I created in central admin.
    But it gives me error: The site could not be found or accessed
     Please help me for this...
    Thanks in advance..
    Faheem Ahamed

    Hi,
    In my case, I'm routing an InfoPath form (After having approved) to an archived Forms Library within the same sub-site.
    I created Send To connection, setup Content Organizer rules, setup Record Retention policy on the source Forms Library, but even after running both the Timer jobs (Information management policy and Expiration policy), the document didn't get moved to the
    archived library.
    I checked under Compliance details of the form that the Scheduled occurrence date shows 'Completed' i.e. the Information management policy timer job did its task, but the other Timer job didn't move this form.
    Then I tried sending this form manually using Send To. In that case, although the form got moved to the archived library, but I see 'Unexpected error' on the screen.
    The ULS shows following entries:
    <nativehr>0x80070057</nativehr><nativestack></nativestack>Invalid data has been used to update the list item. The field you are trying to update may be read only.Possible mismatch between the reported error with code = 0x8107210c
    and message: "Invalid data has been used to update the list item. The field you are trying to update may be read only." and the returned error with code 0x80070057.
    OfficialFile: File
    http://server/sites/site/SourceFormsLibrary/InfoPathForm.xml was not saved at router location TargetLibrary. Exception <nativehr>0x80070057</nativehr><nativestack></nativestack>Invalid data has been used to update the list item.
    The field you are trying to update may be read only. thrown at:    at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion,
    Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties,
    Boolean bCheckOut... 
    Critical  ---   The
    http://server/sites/site/_vti_bin/OfficialFile.asmx site is not properly configured for this request.
    Can somebody tell how manual Send To is working within the same site collection.
    Any help will be appreciated!
    Thanks!
    Ashish

  • The dialogs doesn't show up over HTTPS connection.

    JWS usually shows Version check and Launching dialog when it start up.
    But when it started over HTTPS connection, those dialogs doesn't show up.
    When we use HTTP connection, the application launch by following step.
    1. Java loading dialog shows
    2. Version check dialog shows
    3. Launching application dialog shows
    4. Application launched
    However, in the case of HTTPS connection, step2, 3's dialog doesn't show up.
    (It might be skipped? What's going on?)
    I think that the step1,2,3 are processed by JavaWebStart.
    Is there any way to show these dialogs when we use HTTPS connection?
    Client: Windows XP(SP2), JDK: 1.4.2_06
    Web Server: WebLogic(ver.8.1)

    When running over http or file protocol, these dialogs are shown if the update check takes more than 1500 ms, when application must be updated before launching (due in 1.5.0 to offline-allowed not being specified, or setting <update check="always" /> in 6.0) (assuming target isn't using basic authentication). If the update check can complete in less time than that, then the dialogs will not be shown.
    For https, there is a probability that the attempted https connection will cause https security dialogs, which would then always cause the check to take more than 1500 seconds (or whatever timeout is configured) so webstart won't show the download progress dialog untill it knows there is an update.
    This should be a bug, since it is handled beter in BasicAuthentication case.
    If you are using Authentication, the download dialog will show up only after 1500 ms if the JAuthenticator chalange dialog is not being shown.
    Similarilly, using https, he dialog should show after 1500 ms (or whatever timeout) if the https security dialog, or host mismatch dialog is not showmin.
    /Andy

  • Http connection timeout for business services from proxy service?

    I've only done limited experiments in ALSB (2.1) at this point, but a question occurred to me, and I can't find this mentioned in the docs anywhere.
    When a proxy service configures a connection to a downstream business service through HTTP, is it possible to configure an http connection timeout value? This will cause the connection attempt to fail if it takes too long to determine whether the connection attempt succeeded or failed.
    I've heard that this is one advantage that Axis has over JAXRPC/SAAJ, as a connection timeout value can be specified.

    Hello Billy
    Thanks for the reply. I thought there may be some implementation of begin_request in another environment that had the option to specify a connect timeout. But as you have explained, it doesn't work like that. As always, I learn something every day!
    So realistically if I want to stop the calling process hanging in the event of the server not being available, I need use the message based approach...send a message containing the request to another process via a message queue and attach to the reply queue and wait for a message comming back with a timeout. Does that sound like a reasonable approach?
    Thanks
    David

  • The application can not send http-request being on a virtual machine.

    Hello, I have console application, which process data, and send report to Web API controller of my site. But the data do not reach the controller. Watching visual studio debugger for the controller, I see that he has not even called. But the application
    being launched on my local PC, regularly sends data to the controller.
    Im using HttpClient class, here is string which send data to server:
    Client.PostAsJsonAsync("http://[site].azurewebsites.net/api/Decision", report);
    VM OS - Windows  Server 2012.
    What could be the
    problem?

    Hi,
    Did you create the http endpoint for virtual machine?
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • CProjects Roles, HTTP Connection, RABAX_STATE error

    Hi All,
    1. Which are the standard cProjects Roles to be maintained ? Where we can have that list ?
    2. How to maintain or say configure the HTTP connection for cProjects (steps for doing it)?
    3. Getting the termination type error : RABAX_STATE, how to resolve it ?
    Points for userful information.
    Thanks and regards,
    Nishit

    Hi
    Answer to your 1 question is given below
    The following single roles are delivered with cProjects:
    SAP_CPR_PROJECT_ADMINISTRATOR     :Create projects (project definitions).
    SAP_CPR_TEMPLATE_ADMINISTRATOR     :Create, change, read, and delete all templates in cProjects.
    SAP_CPR_USER     :Use cProjects, but no authorization to perform any activities in a particular project. To do this users need project-specific authorizations, which can be distributed either directly or through their assignment to a role.
    The following composite roles are delivered with cProjects:     
    SAP_CPR_DECISON_MAKER     :cProjects decision maker. Contains the role SAP_CPR_USER.
    SAP_CPR_INTERESTED     :cProjects interested party. Contains the role SAP_CPR_USER.
    SAP_CPR_MEMBER     :cProjects team member. Contains the role SAP_CPR_USER.
    SAP_CPR_PROJECT_LEAD     :cProjects project manager. Contains the role SAP_CPR_PROJECT_ADMINISTRATOR and SAP_CPR_USER
    SAP_CPR_TEMPLATE_RESPONSIBLE     :cProjects template responsible. Contains the roles SAP_CPR_TEMPLATE_ADMINISTRATOR and SAP_CPR_USER
    Edited by: Yogesh  Pande on Dec 18, 2008 5:38 AM
    Edited by: Yogesh  Pande on Dec 18, 2008 5:41 AM
    Edited by: Yogesh  Pande on Dec 18, 2008 5:43 AM

  • RFC to send an idoc PEXR2002 using HTTP connection to an external server

    Hi,
      Iam working on RFC to send an idoc PEXR2002 using HTTP connection to an external server. first time iam working on this particular scenario on http connections. please clarify on this and explai me in detail about this.
    Points will be rewarded **
    Thanks & Regards,
    Ravi

    HI Jagruthi,
    Have you loaded the metadata into the XI system by using IDX2?
    If it is done then try to delete once and do once again.
    And also delete the IDoc from IR and reimport the IDoc and activate it once again.
    Regards
    Goli Sridhar

  • When client send file  connection with server close

    please help me.
    i want to transfer a file via server - client model.
    Client send the file, server receive it.
    Then when i send a msg from server to client i have this error:
    java.net.SocketException: socket closed
    why the socket closed?

    client waiting for response. i don't know what to do.
    the client code is:
    import java.net.*;
    import java.io.*;                              
    class Client{               
         Socket clientSocket;               
           byte[] byteArray;                    
           BufferedInputStream bis;          
            BufferedOutputStream bos;          
           int in;                                   
           BufferedReader inm = null;
            PrintWriter outm = null;
           public Client(){
             try{
                    clientSocket = new Socket("localhost", 9632);
                   System.out.println("i am client & connect");
                   inm = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
                   outm = new PrintWriter(clientSocket.getOutputStream(), true);
                   System.out.println("------1--------" +clientSocket.isClosed());
                      outm.println("msg 1: hi");
                      System.out.println("from server__ " +inm.readLine());
                      outm.println("msg 2: now i will send you a file");
                      System.out.println("from server__ " +inm.readLine());
                      sendFile();
                     System.out.println("-------2-------" +clientSocket.isClosed());
                      System.out.println("from server__ " +inm.readLine());
             catch(IOException e){
                    e.printStackTrace();
           public void sendFile(){
                try{
                     bis = new BufferedInputStream(new FileInputStream("encryptAtmMsg.txt"));
                    bos = new BufferedOutputStream(clientSocket.getOutputStream());
                    byteArray = new byte[8192];
                    while ((in = bis.read(byteArray)) != -1){
                       bos.write(byteArray,0,in);
                        bis.close();
                      bos.close();
               catch(IOException e){
                    e.printStackTrace();
           public static void main(String[] args){
             new Client();
    }And server code is:
    import java.net.*;
    import java.io.*;
    class Server{
         BufferedInputStream bis;
           BufferedOutputStream bos;
           byte[] data;
           Socket socket;
           ServerSocket serverSocket;
           int in;
            BufferedReader inm = null;
            PrintWriter outm = null;
           public Server(){
             try{
                    serverSocket = new ServerSocket(9632);
                    System.out.println("i am server & listening...");
                   socket = serverSocket.accept();
                     System.out.println("a client connect");
                   System.out.println("------1--------" +socket.isClosed());
                    inm = new BufferedReader(new InputStreamReader(socket.getInputStream()));
                    outm = new PrintWriter(socket.getOutputStream(), true);
                   System.out.println("from client: " +inm.readLine());
                     outm.println("ack 1: hi....");
                     System.out.println("from client: " +inm.readLine());
                     outm.println("ack 2: ok....");
                    receiveFile();
                      System.out.println("------2--------" +socket.isClosed());
                   outm.println("ack 3: take the file");
             catch (IOException e){
                  e.printStackTrace();
         public void receiveFile(){
              try{
                  byte[] receivedData = new byte[8192];
                 bis = new BufferedInputStream(socket.getInputStream());
                   bos = new BufferedOutputStream(new FileOutputStream("encryptAtmMsg22.txt"));
                 while ((in = bis.read(receivedData)) != -1){
                       bos.write(receivedData,0,in);
                 bos.close();
             catch (IOException e){
                  e.printStackTrace();
         public static void main(String[] args){
             new Server();
    }any idea pls

  • Problem to connect from client to server RMISSLSecuritySocket

    Hi,
    I�m try to connect to my RMISSLSecuritySocket out of my LAN and the debug tell me:
    keyStore is :
    keyStore type is : jks
    keyStore provider is :
    init keystore
    init keymanager of type SunX509
    trustStore is: seguridad\clientstore
    trustStore type is : jks
    trustStore provider is :
    init truststore
    adding as trusted cert:
    Subject: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Issuer: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Algorithm: RSA; Serial number: 0x443264ec
    Valid from Tue Apr 04 13:22:04 BST 2006 until Mon Jul 03 13:22:04 BST 2006
    trigger seeding of SecureRandom
    done seeding SecureRandom
    %% No cached client session
    *** ClientHello, TLSv1
    RandomCookie: GMT: 1166208304 bytes = { 177, 248, 233, 26, 255, 131, 30, 219, 187, 7, 161, 130, 36, 97, 87, 143, 144, 27, 106, 206, 189, 167, 26, 137, 97, 16, 104, 162 }
    Session ID: {}
    Cipher Suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA]
    Compression Methods: { 0 }
    AWT-EventQueue-0, WRITE: TLSv1 Handshake, length = 73
    AWT-EventQueue-0, WRITE: SSLv2 client hello message, length = 98
    AWT-EventQueue-0, READ: TLSv1 Handshake, length = 945
    *** ServerHello, TLSv1
    RandomCookie: GMT: 1166208307 bytes = { 184, 222, 131, 149, 231, 192, 11, 143, 18, 21, 255, 30, 23, 69, 88, 116, 202, 214, 156, 247, 108, 121, 158, 141, 11, 182, 75, 196 }
    Session ID: {70, 131, 237, 51, 103, 184, 128, 17, 11, 250, 79, 30, 226, 89, 202, 255, 40, 244, 207, 103, 23, 232, 181, 12, 213, 90, 153, 213, 5, 179, 105, 119}
    Cipher Suite: SSL_RSA_WITH_RC4_128_MD5
    Compression Method: 0
    %% Created: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    ** SSL_RSA_WITH_RC4_128_MD5
    *** Certificate chain
    chain [0] = [
    Version: V1
    Subject: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: Sun RSA public key, 2048 bits
    modulus: 26218049066688812844166292053322592777371129439466024553015697381624406300839227173808057660437842049778162997716778672465698869907347066124616563594240125762524939915402315386003803148278000690289855047564064085048848218487772248550902777635260652977838418228357272143568678808697631825834935842172373214502488401919079625206784817447169856160975190854447483259794542577274185756524489133463104507701871398035038051874790106390687139882093092278152813019096166210094417604042911501907793329618438553321927409287787349853730049580333692091467723730149335152659294835570337214736792744190512402485625826849470971056221
    public exponent: 65537
    Validity: [From: Tue Apr 04 13:22:04 BST 2006,
                   To: Mon Jul 03 13:22:04 BST 2006]
    Issuer: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    SerialNumber: [    443264ec]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 99 79 9F 84 5E A9 54 D5 19 D9 B9 2E EC F0 8F 98 .y..^.T.........
    0010: B2 35 DD 26 34 84 37 3C 47 50 2E 2A 05 5C 21 C3 .5.&4.7<GP.*.\!.
    0020: D6 98 24 CB 04 9E CF DC 1E 35 5C 4A 0A 29 EA 4E ..$......5\J.).N
    0030: 21 84 26 9A 6E 47 A2 17 77 A1 60 2A A6 F3 E9 92 !.&.nG..w.`*....
    0040: DD 76 77 D5 20 ED 94 9F AA FD 56 4F 6F 77 75 E3 .vw. .....VOowu.
    0050: EE E4 3B 4F 80 10 1A 68 E3 20 7A D8 27 19 31 54 ..;O...h. z.'.1T
    0060: 9C 90 8C D8 49 EA 48 73 FD F6 C6 6F 71 56 89 2E ....I.Hs...oqV..
    0070: 3D 4F 29 0D ED 50 8E BA FA A6 2B 54 D9 91 1D 98 =O)..P....+T....
    0080: E9 1A E7 17 DB DC 6B 84 D9 A4 32 6B BD 65 F1 F1 ......k...2k.e..
    0090: 24 10 69 B7 43 C7 76 B5 E3 29 4C 41 12 62 E2 DF $.i.C.v..)LA.b..
    00A0: 95 6F 6A FA 52 B8 FB C5 DB 1C B8 54 F3 20 0E B4 .oj.R......T. ..
    00B0: BE B6 B6 36 09 F3 CF 3A 1E E8 68 1D 34 D9 EF 43 ...6...:..h.4..C
    00C0: 3F FC 11 D2 B8 45 A7 1C 72 81 DD 3A 82 FC F7 DC ?....E..r..:....
    00D0: C8 98 69 86 83 09 96 BF D9 1D 94 36 2E 50 7F 48 ..i........6.P.H
    00E0: 05 B2 3B A6 F1 75 34 06 38 14 BE BD 60 3B F7 17 ..;..u4.8...`;..
    00F0: 03 92 B4 38 99 47 5F 96 DC F1 33 22 C5 BE FB 91 ...8.G_...3"....
    Found trusted certificate:
    Version: V1
    Subject: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
    Key: Sun RSA public key, 2048 bits
    modulus: 26218049066688812844166292053322592777371129439466024553015697381624406300839227173808057660437842049778162997716778672465698869907347066124616563594240125762524939915402315386003803148278000690289855047564064085048848218487772248550902777635260652977838418228357272143568678808697631825834935842172373214502488401919079625206784817447169856160975190854447483259794542577274185756524489133463104507701871398035038051874790106390687139882093092278152813019096166210094417604042911501907793329618438553321927409287787349853730049580333692091467723730149335152659294835570337214736792744190512402485625826849470971056221
    public exponent: 65537
    Validity: [From: Tue Apr 04 13:22:04 BST 2006,
                   To: Mon Jul 03 13:22:04 BST 2006]
    Issuer: CN=Romenawerson, OU=Romenawerson Software, O=Masser, L=SC, ST=SC, C=ES
    SerialNumber: [    443264ec]
    Algorithm: [MD5withRSA]
    Signature:
    0000: 99 79 9F 84 5E A9 54 D5 19 D9 B9 2E EC F0 8F 98 .y..^.T.........
    0010: B2 35 DD 26 34 84 37 3C 47 50 2E 2A 05 5C 21 C3 .5.&4.7<GP.*.\!.
    0020: D6 98 24 CB 04 9E CF DC 1E 35 5C 4A 0A 29 EA 4E ..$......5\J.).N
    0030: 21 84 26 9A 6E 47 A2 17 77 A1 60 2A A6 F3 E9 92 !.&.nG..w.`*....
    0040: DD 76 77 D5 20 ED 94 9F AA FD 56 4F 6F 77 75 E3 .vw. .....VOowu.
    0050: EE E4 3B 4F 80 10 1A 68 E3 20 7A D8 27 19 31 54 ..;O...h. z.'.1T
    0060: 9C 90 8C D8 49 EA 48 73 FD F6 C6 6F 71 56 89 2E ....I.Hs...oqV..
    0070: 3D 4F 29 0D ED 50 8E BA FA A6 2B 54 D9 91 1D 98 =O)..P....+T....
    0080: E9 1A E7 17 DB DC 6B 84 D9 A4 32 6B BD 65 F1 F1 ......k...2k.e..
    0090: 24 10 69 B7 43 C7 76 B5 E3 29 4C 41 12 62 E2 DF $.i.C.v..)LA.b..
    00A0: 95 6F 6A FA 52 B8 FB C5 DB 1C B8 54 F3 20 0E B4 .oj.R......T. ..
    00B0: BE B6 B6 36 09 F3 CF 3A 1E E8 68 1D 34 D9 EF 43 ...6...:..h.4..C
    00C0: 3F FC 11 D2 B8 45 A7 1C 72 81 DD 3A 82 FC F7 DC ?....E..r..:....
    00D0: C8 98 69 86 83 09 96 BF D9 1D 94 36 2E 50 7F 48 ..i........6.P.H
    00E0: 05 B2 3B A6 F1 75 34 06 38 14 BE BD 60 3B F7 17 ..;..u4.8...`;..
    00F0: 03 92 B4 38 99 47 5F 96 DC F1 33 22 C5 BE FB 91 ...8.G_...3"....
    *** ServerHelloDone
    *** ClientKeyExchange, RSA PreMasterSecret, TLSv1
    AWT-EventQueue-0, WRITE: TLSv1 Handshake, length = 262
    SESSION KEYGEN:
    PreMaster Secret:
    0000: 03 01 E3 5F 8B 56 4D 06 C4 F6 12 CD 93 81 AF 2C ..._.VM........,
    0010: 62 26 48 E1 F7 98 41 3E 97 99 40 AD 80 2A 2D C6 b&H...A>..@..*-.
    0020: F7 13 6D 2A 15 EF 4C F9 E3 B4 90 9E 6E 07 51 C5 ..m*..L.....n.Q.
    CONNECTION KEYGEN:
    Client Nonce:
    0000: 46 83 ED 30 B1 F8 E9 1A FF 83 1E DB BB 07 A1 82 F..0............
    0010: 24 61 57 8F 90 1B 6A CE BD A7 1A 89 61 10 68 A2 $aW...j.....a.h.
    Server Nonce:
    0000: 46 83 ED 33 B8 DE 83 95 E7 C0 0B 8F 12 15 FF 1E F..3............
    0010: 17 45 58 74 CA D6 9C F7 6C 79 9E 8D 0B B6 4B C4 .EXt....ly....K.
    Master Secret:
    0000: 91 F9 46 EC DC 49 20 6E 1B 36 43 FD 25 49 FD 03 ..F..I n.6C.%I..
    0010: AC 97 EF 22 8F 8C 16 F3 82 4C 38 BD C1 E6 D5 38 ...".....L8....8
    0020: 11 20 1C D1 41 50 C6 96 96 92 39 0B D8 2C 00 DF . ..AP....9..,..
    Client MAC write Secret:
    0000: 5E 90 BF 8E 39 D1 B8 4C 43 65 32 D4 6E 92 F0 C0 ^...9..LCe2.n...
    Server MAC write Secret:
    0000: 41 EF 1A 63 21 69 D7 C6 82 FA E0 EA CC F2 7F C6 A..c!i..........
    Client write key:
    0000: 16 A2 E1 AD 6C BA 83 E7 DD 22 59 44 21 48 A2 12 ....l...."YD!H..
    Server write key:
    0000: 7B FC 54 77 6F 67 92 99 88 71 6C 34 ED 48 C2 1C ..Twog...ql4.H..
    ... no IV used for this cipher
    AWT-EventQueue-0, WRITE: TLSv1 Change Cipher Spec, length = 1
    *** Finished
    verify_data: { 185, 57, 235, 98, 149, 175, 131, 220, 206, 66, 222, 206 }
    AWT-EventQueue-0, WRITE: TLSv1 Handshake, length = 32
    AWT-EventQueue-0, READ: TLSv1 Change Cipher Spec, length = 1
    AWT-EventQueue-0, READ: TLSv1 Handshake, length = 32
    *** Finished
    verify_data: { 170, 212, 47, 137, 112, 161, 231, 13, 84, 116, 170, 163 }
    %% Cached client session: [Session-1, SSL_RSA_WITH_RC4_128_MD5]
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 23
    AWT-EventQueue-0, setSoTimeout(900000) called
    AWT-EventQueue-0, READ: TLSv1 Application Data, length = 35
    AWT-EventQueue-0, setSoTimeout(0) called
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 35
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 72
    AWT-EventQueue-0, READ: TLSv1 Application Data, length = 322
    28-jun-2007 18:17:57 sun.rmi.transport.WeakRef pin
    M�S FINA: AWT-EventQueue-0: strongRef = sun.rmi.transport.DGCImpl@1551f60
    28-jun-2007 18:17:57 sun.rmi.transport.ObjectTable putTarget
    M�S FINA: AWT-EventQueue-0: add object [0:0:0, 2]
    28-jun-2007 18:17:57 sun.rmi.transport.ConnectionInputStream done
    M�S FINA: AWT-EventQueue-0: send ack
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 17
    AWT-EventQueue-0, READ: TLSv1 Application Data, length = 17
    AWT-EventQueue-0, WRITE: TLSv1 Application Data, length = 31
    The Exception is: Connection refuse to host: 192.168.1.21; java.net.ConnectException: Connection timed out: connect
    I think that the Hadshaked it�s ok, but I don�t know why I can�t connect satisfactorily. In my LAN the aplication is working perfectily. Please help me!!!!!!!! Sorry but my english is not very well.

    Hi,
    After installation of XI , We have to do some post installation activities to configure the XI as an Integration server...
    If you have not done the post installation activities ..try to execute the Template Installer..
    It will do all the post installation activities ...here is the path.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4b/c25a42793d1653e10000000a155106/frameset.htm
    If this is helpfull for you ....reward points...
    regds,
    vasanth.

Maybe you are looking for

  • Adobe "Invalid annotation object" error

    We recieve a specific error message on a few PDFs. Some from documents converted from 2007 Word and others out of Outlook 2007 through the PDF print function.  While moving the mouse over certain comments the users has placed on the document in the P

  • Default Output Condition Records in SD

    How do I maintain default output conditions in SD when I create a new customer? As of now, whenever I create a new customer, I have to create output condition records for quotations, sales order, shipping and invoicing. Thank you, Pravin

  • Java 2 pdf

    I want to make printable documents with servlets and jsp. by looking on the Internet I begin to believe that pdf would be a good solutions do you have idea how to make that ? thx

  • Jsp plugin in page fragment

    Would like to include an applet in a page fragment, however JSC is not happy. Create a page fragment, add a jsp: plugin tag and jsc complains with the error: The prefix "jsp" for element "jsp: plugin" is not bound. Have tried setting this plugin insi

  • Installing Itunes on a computer with less than 1Ghz processor

    I want to install itunes on an older computer with a 700mhz processor. Itunes 8 requires 1Ghz. Is an older version available that I can use?