Webdispatcher problem: Forwarding http requests don't work

hi experts,
i'am trying to configure my webdispatcher in order forwarding http requests to my sap netweaver message server (AS JAVA instance).
here is my profile file:
SAPSYSTEMNAME = WDP
SAPGLOBALHOST = myWebDispatcherHost
SAPSYSTEM = 10
INSTANCE_NAME = W10
DIR_CT_RUN = $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTAMD64
DIR_EXECUTABLE = $(DIR_CT_RUN)
Accesssability of Message Server
rdisp/mshost = mysapdevServer
ms/http_port = 8121
Configuration for medium scenario
icm/max_conn = 500
icm/max_sockets = 1024
icm/req_queue_len = 500
icm/min_threads = 10
icm/max_threads = 50
mpi/total_size_MB = 80
SAP Web Dispatcher Ports
icm/server_port_0 = PROT=HTTP,PORT=81$$
icm/HTTP/redirect_0 = PREFIX=/, TO=/irj/portal
MyTrace file i got it from web administration screen after lanching this address on my navigator http://myWebDispatcherHost/
[Thr 2876] Mon Jul 07 16:36:34 2008
[Thr 2876] *** ERROR => htmlEncode: called with empty string [icpif.cpp 847]
[Thr 3748] Mon Jul 07 16:36:36 2008
[Thr 3748] *** ERROR => htmlEncode: called with empty string [icpif.cpp 847]
[Thr 3464] Mon Jul 07 16:43:55 2008
[Thr 3464] *** ERROR => htmlEncode: called with empty string [icpif.cpp 847]
[Thr 3464] *** ERROR => htmlEncode: called with empty string [icpif.cpp 847]
[Thr 2876] Mon Jul 07 16:43:59 2008
[Thr 2876] *** ERROR => htmlEncode: called with empty string [icpif.cpp 847]
[Thr 3852] Mon Jul 07 16:47:42 2008
[Thr 3852] *** ERROR => htmlEncode: called with empty string [icpif.cpp 847]
Can you give me some advices to go throug this issue
Thanks,

Hi Srinivas,
We  have installed  web dispatcher on cluster nodes...  and  web dispacther is unable to connect to message server.
We are on cluster CI ,DI and SQL server runs on different systems.
I have installed web dispatcher on CI & DI.. on CI web  dispatcher is up and DI is coming down after  couple of minutes if we try to bring it up.
dev_webdisp:
[Thr 3636] Wed Jul 30 14:59:51 2008
[Thr 3636] *** ERROR => NiPConnect2: SiPeekPendConn failed for hdl 5 / sock 131344
     (SI_ECONN_REFUSE; I4; ST; 10.16.148.36:8100) [nixxi.cpp    2764]
[Thr 3636] *** ERROR => Connection request from (-1/65535/0) to host: nbcdqsasc10b.corp.irvineco.com, service: 8100 failed (NIECONN_REFUSED) [icxxconn.c 2731]
[Thr 3636] *** ERROR => IcmConnClientRqCreate() failed (rc=-8) [icrxx.c      4919]
[Thr 3636] *** ERROR => Could not connect to SAP Message Server at nbcdqsasc10b.corp.irvineco.com. URL=/msgserver/text/logon?version=1.2 [icrxx.c      2301]
[Thr 3636] *** ERROR => rc=-1, HTTP response code: 0 [icrxx.c      2302]
[Thr 3636] *** ERROR => see also OSS note 552286 [icrxx.c      2303]
[Thr 7944] Wed Jul 30 15:00:48 2008
[Thr 7944] *** ERROR => htmlEncode: called with empty string [icpif.cpp    847]
[Thr 7252] Wed Jul 30 15:00:57 2008
[Thr 7252] *** ERROR => htmlEncode: called with empty string [icpif.cpp    847]
[Thr 10200] Wed Jul 30 15:01:07 2008
[Thr 10200] *** ERROR => htmlEncode: called with empty string [icpif.cpp    847]
[Thr 1868] Wed Jul 30 15:01:18 2008
[Thr 1868] *** ERROR => htmlEncode: called with empty string [icpif.cpp    847]

Similar Messages

  • Logging of Forwarded HTTP Requests using RequestDispatcher in Weblogic

    Can anyone help me on this?
    Logging of Forwarded HTTP Requests using RequestDispatcher in Weblogic
    Access Log File:
    1. I have a servlet(S1) which decides which JSP to be published based on
    some logic. If I try to forward the request from a servlet to a JSP or to
    another servlet from within S1 using RequestDispatcher, it doesn't get
    logged in the access log, only the initial request to S1 gets logged, when I
    switch on HTTP logging by setting weblogic.httpd.enableLogFile to true. Is
    there any way of logging this forwarding of request in the access log?
    2. If there is no solution for (1), I woiuld like to make entries into the
    access log file of weblogic in the common log format, when I forward a
    request to a JSP or a servlet throught the RequestDispatcher, so that I can
    use standard tools to analyze the logfile.The two issues with this are (i)
    is there any weblogic service that gives a handle to the access log file
    like the LogServicesDef which gives a handle to the weblogic log file. (ii)
    Is there any utility class available that can format a URL pointing to a JSP
    to a string confirming to the common log format.

    The log4j:ERROR messages are not coming from Log4j 2 and are most likely from Log4j 1.x. Somehow Log4j 1.x must be getting the log4j2 configuration.

  • Http cache don't work as expected in an applet

    Hi, everyone!
    I write an applet which dynamic connect a http server and fetch content from it. I wish the content could be cached in browser's cache system.
    Here is my code, it's work well in MS JVM, but when I turn to sun plugin, the cache system don't work. Every time I get a Response code 200 ( wish to be 304)
    ==================My code================================
    URLConnection conn=(URLConnection)url.openConnection();
    conn.setUseCaches(true);
    conn.setAllowUserInteraction(false);
    conn.connect();
    java.io.ObjectInputStream ois=null;
    Object o=null;
    try
    ois=new ObjectInputStream
    (new java.util.zip.InflaterInputStream(conn.getInputStream()));
    return ois.readObject();
    finally
    if(ois != null)
    ois.close();
    ==================My code================================
    I tested on sun JDK 1.42 and IE6.
    My Http Server is Jetty ,and I do have add a last_modified tag in http response.
    I look into the Java plugin control panel ,only the jar file is cached.

    Sorry for the confusion, of course you are right and it seems to be a bug.
    I ment that the method name setUseCaches itself might be confusing because it does not force caching, it just allows it when available.
    There are several bugs about the plugin caching (4912903, 5109018, 6253678, 4845728, ...) even if they might not fit 100% to your problem they show that plugin caching is an issue which sun really should improve.
    You might have a look at them and vote for them or submit a new bug.

  • Problem with HTTPS requests to host with untrusted server certificate

    Hi,
    I develop an iPhone framework which sends HTTPS requests in order to communicate with a publicly available backend server. Currently I have a big problem regarding untrusted server certificates.
    The certificate of the backend server is not signed by a trusted CA, so my first approach was to use NSURLRequest's private allowsAnyHTTPSCertificateForHost. While this worked as expected an was fine as temporary workaround, our customer demands a clean solution as final result. Therefore I wrote a method which allows to install a provided certificate from the file system in the keychain, but this method does not work as expected in the iPhone Simulator. The certificate is installed in the host machine's Mac OS X keychain instead. Unfortunately, if I call NSURLConnection's sendSynchronousRequest method, I retrieve an "untrusted server certificate" error. It seems as if NSURLConnection is not able to access the host's Mac OS X keychain to retrieve the certificate.
    Is my guess correct or did I miss something?
    Would my approach work if I ran my app on a real iPhone device instead (I do not have one available yet)?
    Does there exist a keychain in the iPhone Simulator at all?
    Is it at all possible to send HTTPS requests to a server with an untrusted certificate on the iPhone Simulator or do I have to use precompiler directives to implement different routines depending on the underlying platform (simulator or device, respectively)?
    Any help is highly appreciated.
    Thanks,
    Matthias

    Indeed this would be a clean and simple solution. But our customer is not willing to get a real certificate, for whatever reasons.
    The question that remains is if the HTTPS requests would succeed on the iPhone device itself if the server certificate was installed in the keychain by the same app beforehand.

  • Problems sending HTTP request to PI

    In order to receiver a HTTP request from HTTP server onto PI, what things needs to be defined in PI?
    there is an HTTP application which can connect to other PI server in my environment without any issues, but when I point it to intended PI server, it is throwing exceptions. Where am I doing wrong? do I need to create a some RFC destination for this?

    Hello!
    Since you are talking about "PI" I believe you're using 7.1X.
    From this, check this link: http://help.sap.com/saphelp_nwpi71/helpdata/EN/44/bcd15381f456a1e10000000a1553f6/frameset.htm
    Also, when you go to the INTEGRATION_DIRECTORY_HMI, the result
    should be 500 "Internal Server Error" and not the 200 Ok that we're used to
    Hope it helps!
    Regards,
    Caio Cagnani

  • Problem in HTTP Request HTTP_RESP_STATUS_CODE_NOT_OK

    Hai Gurus,
          I am sending request from HTTP --> XI --> ABAP Proxy (Inbound). Its working fine when i execute proxy manually in tcode "sproxy". When do the same with HTTP Client it is throwing the following error.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">HTTP_RESP_STATUS_CODE_NOT_OK</SAP:Code>
      <SAP:P1>500</SAP:P1>
      <SAP:P2>Internal Server Error</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
    My proxy does the work of uploading the files to Document Storage System KPro using standard BAPI's. I have used SAPFTP and SAPHTTP dlls in client machine's system32 folder (Which will help in downloading the document from client windows OS machine to SAP GUI AIX based machine).
    Still facing the same problem which will throw error HTTP_RESP_STATUS_CODE_NOT_OK with error code 500.
    Any help is highly appreciated.
    Regards,
    Pushparaju Bollapalli.

    Also Check these Foloowing ;
    - URL for the receiver is like this:
    http://<host>:<port>/sap/xi/engine?type=receiver .The XI 2.0 differs from XI 3.0 in this.
    -path in the receiver communication channel
    The path has to be defined as:
    /sap/xi/engine?type=entry for XI 3.0
    /sap/xi/engine?type=receiver for XI 2.0
    Regards
    Aashish Sinha
    PS : Reward points if Helpful

  • Picture UNDER Navigation link Problem? now links don't work

    Sorry for the repost need to add a few things
    Hi- I am having a problem with using a background image "under" the navigation links??
    Here is what I did
    (Thanks to James S. who taught me this trick I:
    optimized a full page jpg and dragged it to my web pages only 34K
    2) sized it to fit
    3) sent to to "background"
    and it works fine
    HOWEVER
    when I stretch the bacground image UP under the navigation links the links no longer work?
    what am I doing wrong?
    if I lower the background image to just BELOW the links they work but it looks bad.
    How can I create a full page background that is also under the links without making it a bloated PNG (using the background image fill command in i web)
    Thanks in advance!
    Jim
    I actually had it working fine under most of my pages then when I "uploaded all to.mac it stopped???
    http://web.mac.com/videolounge the Rate Card" page works after lowering image????

    Hi James
    I see you've helped a number of people with iWeb problems so would appreciate your valuable advice please.
    I'm having problems with iWeb links not working so wondered if you could help or point me in the right direction please
    This is my very first web site and all links work fine in iWeb, but some of the links are not working when I publish my site, so I'd really appreciate you having a look at my site please and give me your very valuable advice on how to fix this please.
    Someone suggested emptying the browser's cache which I did, but it's still not working. I have made sure that all the link boxes have been brought to the front and any pictures etc near the links have been sent to the back.
    My temporary site is at http://web.mac/gngraphics and if you were to click on anywhere in the Home page it's fine, but if you were to click on exhibitions/events, once you're in that page none of the links work, and it's the same for most of the others, but not all.
    Please let me know if you need any other information, and thanking you in advance for taking the time and hope you can help me.
    George
    Macintosh G5   Mac OS X (10.4.9)  
    Macintosh G5   Mac OS X (10.4.9)  

  • Problem sending http request

    I have a Java program that creates a url from a String, then uses the openConnection method of URLConnection to send the request to a web server. The exact same Url string works fine from my browser, but the Java program throws a java.io.FileNotFoundException. Other url's work OK.
    Any pointers as to what could cause this are appreciated.

    See if anything in http://forum.java.sun.com/thread.jsp?forum=4&thread=135019 helps you.

  • Safari and Firefox problems: hotmail, facebook ect. don't work

    I am having all sorts of problems with Safari and Firefox. I cannot get on hotmail, facebook and many other sites, but I can use google, just half the links won't load. Ran diagnostics, reset safari, uninstalled and reinstalled firefox. Have no idea what to do next. Any suggestions??

    Erin...
    Empty your browser caches more often.
    Deleting cookies may help also. Go to ~/Library/Cookies. Move the Cookies.plist file from the Cookies folder to the Trash.
    ~ (Tilde) character represents the Home folder.
    If emptying the cache nor deleting cookies helped, try Safari in another user account.
    If you have the same problems there log back into your admin account.
    Launch Disk Utility. That's located in /Applications/Utilities
    Select the startup disk in the panel on the left then select the First Aid tab.
    Click: Verify Disk  (not Verify Disk Permissions)
    If the disk needs repairing follow the instructions for Using Disk Utility to verify or repair disks

  • Muxing problem -- Too fast, files don't work

    I'm trying to encode a DVDSP 3 project.
    I'm choosing Single Pass VBR and "better" Motion Detection.
    I'm on a 1Gghz TiBook.
    The entire process, including Muxing, is taking a minute or two. This should take hours. The resulting video_ts folder can be played on Apple's DVD Player, but when I burn a disk, it's a mess and essentially unreadable on a proper hardware DVD player.
    I've trashed my preferences. I have reinstalled.
    There are no pre-existing video_ts folders or files.
    I have tried changing my Encoding settings and using different permutations of build/burn/format.
    Results are always the same -- DVDSP 3 zooms through the encoding precodure producing unusable files.
    Any suggestions?

    Hi,
    Thanks for helping. See my responses below.
    Multiple questions:
    1) How long is the video that is being encoded in
    hours/minutes?
    Approximately 1 hour.
    2) Is this the first time you've built this project?
    If not, and the video has already been encoded to
    MPEG2, it will be much faster to build than the first
    time. Muxing does still take some time, but depending
    on the answer to Question 1 above, it could be
    speedier than you think.
    I might have left this out of my original post, but A) I did build the project before, yet B) I deleted the video_ts and all related files from the build. I'm under the impression this means DVDSP thinks it hasn't built the project yet. Am I wrong assuming this?
    3) Did you use an MPEG2 file in DVDSP (created from
    Compressor or something else), or did you place an
    unencoded movie in DVDSP to let it do the encoding?
    If the latter, is the unencoded movie still around?
    Was it a reference movie or a self-contained? If
    reference, try to open the movie itself in QuickTime
    Player. Maybe parts of the reference movie are
    missing.
    I imported .DV files and let DVDSP create .m2v files. But this isn't the same as encoding, right? I mean, they only took a minute to import. I thought they still need to be "really" encoded, which is what Building does. Am I wrong? In other projects, I imported .DV files this way, but it still took a long time to encode them once I hit "Build".
    4) When you say "when I burn a disk," what are you
    using to do the burning? DVDSP or something else? If
    the VIDEO_TS folder is playable on Apple's DVD
    Player, it should be playable on anything, unless
    you're not burning it to disc correctly. DVDSP does
    the burn correctly. If you're trying to do it
    manually with Toast or something, you could be doing
    it incorrectly which is causing hardware DVD players
    to choke on it.
    I'll try doing it from within DVDSP. I was using Toast. I've successfully used Toast many times, but it's a good idea to see what happens when I use DVDSP.

  • My back/forward buttons don't work - have done 'reset toolbars and controls', but they still don't work

    When I downloaded the latest version I got a new screen with the orange Firefox tab at the top. That was fine, I could find what I wanted, but back/forward buttons didn't work. I checked the help section and went right through the suggestions down to 'reset toolbars and controls' - this did reset and I lost the orange box - that doesn't matter, but the back/forward buttons still don't work.

    Do you have more than one tab open? If you didn't go to another site in a single tab, then yes, the buttons will be greyed out. If you went somewhere in another tab, then those sites should be accessible by right clicking either button.

  • Trackball buttons suddenly don't work

    I've been using a MS trackball explorer with this iMac G5 since I've had the computer. I also have a MS trackball Optical on my iBook.
    Suddenly, the two right buttons on the explorer which I have programmed for 'forward' and 'back' don't work. I tried substituting the trackball explorer and found it had the same problem on the iMac, but both trackballs worked fine on the iBook, which says to me that it's a software problem. The other functions on both trackball work fine.
    I have repaired permissions, searched and removed all items for the MS intellipoint, and uninstalled and reinstalled intellipoint. No help.
    Can anyone suggest anything to help?

    bulder wrote:
    >
    > Buttons suddenly don?t work . I have a navigation clip
    with flash buttons, -
    > referencer and husbyggeri expands when you push the
    button. it worked fine -
    > but now many vistors have to push twiche if they shal
    see the site, this means
    > many are leaving because it dont work - does anyone know
    what?s happening???
    > my clip is here:
    http://www.fjerring.dk/menu/
    Let me guess, happens only in IE ?
    Search google for "click to activate"
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Doubts about HTTPS requests and Java proxy

    Hello,
    I need help about SSL connections and Java.
    I'm developing a HTTP/S proxy with Java. To test my proxy, I use Firefox. I configure the proxy option in the browser. The proxy works good with HTTP requests, but with HTTPS requests doesn't work and I don't know why.
    I explain the steps that I do for a HTTPS request:
    * The browser sends a CONNECT message to the proxy.
    I check that the proxy receives the CONNECT request correctly.
    * The proxy establish a secure connection with the content server.
    I use an SSLSocket to connect with my content server, and the SSL handshake is succesful.
    * The proxy sends a 200 HTTP response to the client:
    I send
    HTTP/1.0 200 Connection established[CRLF]
    [CRLF]
    to the application client (Firefox)
    * The proxy sends/receive data to/from Firefox/content server
    I have a Socket between Firefox and my proxy, and a SSLSocket between my proxy and my content server. I use two threads to communicate the client and the server.
    Java code:
    //Thead server-->proxy-->application(Firefox)
    ThreadComm tpa = new ThreadComm(bis_serverSSL, bos_app);
    //Thread application(Firefox)-->proxy-->server
    ThreadComm tap = new ThreadComm(bis_app, bos_serverSSL);
    The "tpa" thread reads from the SSLSocket between the proxy and the server and sends data to the Socket between the proxy and Firefox.
    The "tap" thread reads from the Socket between the proxy and Firefox and sends data to the SSLSocket between the proxy and the server.
    This is the class ThreadComm:
    public class ThreadComm extends Thread{
        private BufferedInputStream bis = null;
        private BufferedOutputStream bos = null;
        public ThreadComm(BufferedInputStream bis, BufferedOutputStream bos) {
            this.bis = bis;
            this.bos = bos;
        @Override
        public void run() {
            int b = -1;
            FileOutputStream fos = null;
              do {
                   try {
                        b = bis.read();
                        System.out.print((char) b);
                        fos.write(b);
                        bos.write(b);
                        bos.flush();
                   } catch (Exception ex) {
                        Logger.getLogger(ThreadAplicacionProxy.class.getName()).log(Level.SEVERE, null, ex);
                        //b=-1;
              } while (b != -1);
        }But this doesn't work and I don't know why.      
    I have an Apache server with the mod_ssl enabled as content server, I can send requests (with Firefox) to the port 80(HTTP request) and 443(HTTPS request) without use my proxy and it works. If I use my proxy, HTTP request works but with HTTPS request doesn't work, I look the log of Apache and I see:
    [Tue Apr 27 17:32:03 2010] [info] Initial (No.1) HTTPS request received for child 62 (server localhost:443)
    [Tue Apr 27 17:32:03 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue Apr 27 17:32:03 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue Apr 27 17:32:03 2010] [info] [client 127.0.0.1] Connection closed to child 62 with standard shutdown (server localhost:443)
    Why it say? Invalid method in request \x80\x7f\x01\x03\x01 , my proxy sends the data that the Firefox sends.
    I think than I have follow the explanations of [1] but doesn't work, I have problems in implementation in Java but I don't know where.
    I appreciate any suggestions.
    Thanks for your time.
    [1] http://www.web-cache.com/Writings/Internet-Drafts/draft-luotonen-web-proxy-tunneling-01.txt

    ejp, I have checked the socket between the proxy and server and ... You are right! , I was using the port 80 instead of the 443 (incredible mistake!, I'm sorry). I was convinced that I was using the port 443... Well, is a little step, but I still have not won the war :)
    If I see the log files of Apache, We can see that something goes wrong.
    localhost-access.log
    >
    127.0.0.1 - - [04/May/2010:17:44:48 +0200] "\x 80\x 7f\x01\x03\x01" 501 219
    >
    localhost-error.log
    >
    [Tue May 04 17:44:48 2010] [info] Initial (No.1) HTTPS request received for child 63 (server localhost:443)
    [Tue May 04 17:44:48 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue May 04 17:44:48 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 17:44:48 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    I think that this happens because Apache receives the data without decrypt, this is the reason because in the log we can see the "Invalid method in request \x80\x7f\x01\x03\x01". This supposition is true?
    ejp, you say that the "Termination is quite tricky." I have changed my code following yours suggestions (using the join and the shutdownOutput) but the threads don't die.
    I explain you what I do:
    (in time 1)
    I launch the thread (threadFirefoxToApache) that reads data from Firefox and sends to Apache.
    I launch the thread (threadApacheToFirefox) that reads data from Apache and sends to Firefox.
    (in time 2)
    threadFirefoxToApache sends the firts data to the server.
    threadApacheToFirefox is waiting that the server says something.
    (in time 3)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox sends data to Firefox.
    (in time 4)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox is waiting that Firefox says something.
    and they are waiting... and never finish.
    In time 2, these first data are encrypted. The server receives these data and It doesn't understand. In time 3, the server sends a HTTP response "501 Method Not Implemented", here there is a problem because this data must be encrypt. According to the documentation that I read, the proxy cannot "understand" this data but I can "understand" this data. What's happen?
    Firefox encrypt the data and send to the proxy. This It's correct.
    The proxy encrypt the data another time, because I use the SSLSocket to send the data to the server. Then the server receives the data encrypted two times, when decrypt the data gets the data encrypted one time. And this is the reason why the server doesn't understand the data that sends Firefox. It's correct? May be.
    Then If I want that the server receives the data encrypted one time I need to use the socketToServer, It's correct?
    I will supposed that yes. If I use the socketToServer, the proxy doesn't understand nothing, because the data received from the socketToServer are encrypted (I only see simbols), but the Apache log says that there is a problem with the version? (If I use the socketToServer the threads die)
    >
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 read finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write change cipher spec A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 flush data
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1756): OpenSSL: Handshake: done
    [Tue May 04 19:55:42 2010] [info] Connection: Client IP: 127.0.0.1, Protocol: TLSv1, Cipher: RC4-MD5 (128/128 bits)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1817): OpenSSL: read 5/5 bytes from BIO#29bd910 [mem: 29ea0a8] (BIO dump follows)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1750): -------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1789): | 0000: 80 7f 01 03 .... |
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1793): | 0005 - <SPACES/NULS>
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1795): ------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] SSL library error 1 reading data
    [Tue May 04 19:55:42 2010] [info] SSL Library Error: 336130315 error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    What option is the correct? I need use the SSLSocketToServer or socketToServer to send/read the data to/from the server?. Use the SSLSocket has sense because the data travel in a secure socket, but use the Socket also has sense because the data are encrypted and they are protected by this encription. It's complicated...

  • How to: configure IIS 6.0 (w2k3) to fwd HTTP requests to SJSAS (PE) 9.0

    Hi all,
    My question is this; can Microsoft IIS be configured to redirect/fwd HTTP requests Sun Java System Application Server PE 9.0?
    I'm looking to switch over to SJSAS (PE) 9.0 from a mainly Apache Tomcat based setup. Within the current setup i'm able to configure IIS (6.0) to redirect (passthrough) HTTP requests (via port 80), to a Tomcat instance running via another port (9090) to avoid server conflict. Within Tomcat this is achieved by using an ISAPI redirect filter (e.g. JK2, isapi_redirect.dll).
    Having read through the available docs (for 9.0) and performed the usual trawl of forums and web in general i found a number of references to the configuration of Microsoft IIS to forward HTTP requests to SJAS 9.0 for the purposes of setting up load balancing and clustering. Everything i've seen so far points to the use of an ISAPI filter (sun-passthrough.dll) however whilst this appears to come bundled with earlier (pre 9.0) versions of SJSAS i could find no trace of it in the SJSAS (PE) 9.0 install dirs.
    I then stumbled across this (http://www.theserverside.com/news/thread.tss?thread_id=31701#156874) reasonably old TheServerSide.com forum post that seems to say in fairly certain terms that the sun-passthrough.dll (referred to in the post as the 'Load Balancer Plugin') only comes bundled as part of SJSAS 9.0 Standard and Enterprise Editions. Is this still the case?
    Is there any way of setting this sort of thing up (IIS -> SJSAS (PE) 9.0 redirect) without having to either install Sun Java Web Server or find some clunky hack/workaround for IIS?.
    NOTE: Switching off, changing port # or uninstallation of IIS are not currently options, as we have a number of ASP.NET 2.0 based development sites/services running on the box as well.
    Hope the questions clear enough and that someone can help.
    Many thanks,
    Simon Abele

    You can use proxy plugin for IIS - it is the same one for appserver 7.x and 8.x. I believe it should work for appserver 9.x as well.
    Here is the docs: http://docs.sun.com/app/docs/doc/819-2555/6n4r9qo8g?a=view
    and the plugin could be downloaded here:
    http://www.sun.com/download/products.xml?id=445bec65

  • What to do? My sliders on the Macbook Pro don't work

    What is the fix for the problem? My sliders don't work in LR

    There is no longer a built-in way to do this with the new interface. You will need an add-on. This one is often mentioned: [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ Classic Theme Restorer (Customize Australis)].
    To access its options, call up the Add-ons page, Extensions section, and look for the Options button.
    Does it work?

Maybe you are looking for

  • Can you have multiple Apple TV's in one household?

    I was just wondering if it would interfere with each other during airplay. My wife has her internet content she watches and I have mine.

  • Output file is not reaching the destination

    Hi,   I am doing a simple file to file scenario using SAP PI 7.0. I am posting my input file in one location and after a simple mapping I need to receive my output in another location.My file is getting picked up and I can see that in the message mon

  • Raw Socket Access

    I need to negotiate password hashes for Authentication: NTLM (opposed to BASIC) but this requires sending a message back to the client and receiving the hashes without closing the socket. There's a nice diagram of this handshake here: http://www.inno

  • Surveys; Assessments

    Hi, Is the information captured by the assessment scripts available for reporting? At an On Premise project one of the most valuable report is based on Service Request - Survey information. - Prakash PS: In there any comprehensive doucmentation on th

  • Can't re-install 1.3

    Due to slow Safari browsing issues (link below if interested), I reinstalled/downgraded to 1.2. I've since tried to reinstall 1.3 (either 1.3.1 or 1.3.2) with no luck. It doesn't show up in Software Update. I also download the updater which seemed to