WLS, WLP 8.1 sp5 : XHTML compliance

Hi,
I'm working on a portal application, coded with Workshop and Portal Frameworks.
A migration of presentation layer is needed.
That implies a full XHTML 1.0 strict compliance.
It looks that generated code by BEA tags is not compliant at all :
- URLS are bad encoded : & characters should be ampersand encoded : &
- netui tags for forms generate old HTML code : no trailing slashes : <input type="text">, imageAnchor generate img src="">
Which method would you use or have you used to solve this problem ?
Tags overriding (lot of work) ?
Use other tags (implies to recode pageflows) ?
Thanks for your answers.
Edited by nomadeous at 08/27/2007 1:32 AM

I found a number of articles/posts/etc. that talk about an axis/weblogic problem when PUBLISHING axis web services from weblogic. Most of these were centered around a conflict between some of the javax. classes that are within both the Axis saaj.jar and some native jar that comes with weblogic.
The fix is to get the saaj.jar classes to be used. Some people refer to a preference you can set in weblogic.xml that should force the use of "local" classes within an application WEB-INF directory, Other say this won't work and that you have to explicitly put it first in weblogic's classpath (which can have unintended consequences as everything would now be using the classes that are in saaj.jar).
Andyway, as ana exercise, I moved saaj.jar to WL_HOME/portal/lib and then added it to the weblogic classpath and it fixed the problem.

Similar Messages

  • WLS 6.1 SP4- SP5/SP6

    Good morning,
    I tried re-running weblogic.ejbc on my ejb-jar files and it failed with the same
    error. I am using Javlin for a transactional cache with WebLogic and I don't think
    it knows anything about the getLoadUser and setLoadUser methods. I had the same
    problem when I went to WS 6.1 SP4 with the methods __WL_needsRemove and __WL_setNeedsRemove
    but I was able to implement those inside my bean code and everything worked. I
    figured I could just implement the __WL_getLoadUser and __WL_setLoadUser and I
    would be okay. I implemented them with an empty setLoadUser and tried various
    returns for getLoadUser. After implementing them, I am able to access from the
    database with no problem, but when I try to create beans, the program throws a
    NullPointerException. I have not seen any information on what these two methods
    are supposed to do but it seems they first show up in SP5.
    Thanks,
    Dan
    Rob Woollen <[email protected]> wrote:
    Does re-running weblogic.ejbc on your ejb-jar fix the problem?
    -- Rob
    Dan Shelton wrote:
    Hello All,
    I am trying to deploy some EJBs from a system with WS 6.1 SP4 ontoa system with
    SP5/SP6 and get an error stating that the bean has to be declared abstractbecause
    the methods __WL_getLoadUser() and __WL_setLoadUser(..) are not implemented.These
    two methods are listed in the WLEnterpriseBean interface in weblogic.ejb20.interfaces
    for SP5/SP6 but not in SP4. Anybody know what these methods are supposedto do?
    I have found no information at all on these. I have a case in but figuredsomeone
    might already know.
    Have a good one,
    Dan

    Keith,
    This message gives you exact reason. Double-check classpaths
    used the start weblogic and to run ejbc. There may be something
    left from previous installations.
    Regards,
    Slava Imeshev
    "Keith" <[email protected]> wrote in message news:3fb0337c$[email protected]..
    >
    Hi,
    We run version WLS 6.1 SP4 (I never noticed this when we were using
    WLS 6.1) on each of development, system test, and production machines.
    When I compile and deploy my web app to our devlopment machine
    everything is fine. It is always compiled on our devlopment machine.
    However when I deploy the same web app to our system test machine it
    gives the following error:
    ####<Nov 7, 2003 9:49:05 AM EST> <Warning> <EJB> <blah.com.au>
    <myserver> <main> <system> <> <010004
    <The EJB deployment named: blah_blah was compiled by a different version ofthe WebLogic Server.>
    This has always happened on our development machine but not on our
    production machine, so it has never really been a problem because it
    just recompiles it and everything is fine.
    But now I have added some EJBs to the web app and now when I
    recompiles it at startup it never compiles the new EJBs, and thus
    never deployes them.
    I have check the following on each machine to compare WLS versions.
    wlgenerated file in the app jar file
    java weblogic.ejbc -version
    java weblogic.version
    and java -version
    They all report to be the exactly the same version.
    Are there any suggestions to stop the WLS recompiling my app or to
    make it compile my new EJBs when the server starts up.
    Any suggestions would be very much appricited.
    Cheers
    Keith

  • Supporting XHTML and older browsers (IE6) in WLP 9.2

    Hi
    We're trying to have a Portal that renders XHTML-1.0-TRANSITIONAL content.
    In order to support older browsers, we have content-override set to "text/html".
    However, WLP renders the script tags that link directly to .js files with just one self-closing tag.
    <script src="/front/framework/skins/shared/js/Utils2.0.js" type="text/javascript" />
    This confuses browsers, as it should (for compatability reasons) close it with an end tag, with emtpy content.
    <script src="/front/framework/skins/shared/js/Utils2.0.js" type="text/javascript"></script>
    Is there any way to control this behaviour?
    Skeleton.xml
    <ns:skeleton xmlns:ns="http://www.bea.com/servers/portal/framework/laf/1.0.0">
    <ns:render-format>
         <ns:preset>XHTML_1_0_TRANSITIONAL</ns:preset>
                   <ns:content-type-overrides>
                        <ns:override content-type="text/html" classification="allbrowsers"/>
                   </ns:content-type-overrides>
         </ns:render-format>
    </ns:skeleton>
    client-classifications.xml
    <classification name="allbrowsers" description="For everything">
         <useragent-regex value=".*" priority="5" />
    </classification>
    beehive-netui-config.xml
    <jsp-tag-config>
         <doctype>xhtml1-transitional</doctype>
    </jsp-tag-config>
    ...

    Hi George and thank you for providing an answer to my problem.
    We have actually worked around this. It's the same JS we are including on all pages, so we are doing this in head.jsp instead.
    However, we have found another XHTML compliance problem. This is hopefully the last one though. ;)
    When using NETUI, it will include a javascript for looking up tags by id.
    <script language="JavaScript" type="text/JavaScript">
    <!--
    // lookup by tagId to "real id"
    function lookupIdByTagId(id, tag)
    var idScope = lookupIdScope(tag,".");
    return (idScope == "") ? id : idScope + id;
    //Non-Legacy lookup method creating a fully qualified scope id
    function lookupIdScope(tag,sep)
    var val = "";
    if (sep == null) sep = "";
    while (tag != null && tag.getAttribute != null) {
    try {
    var attrVal = tag.getAttribute("netui:idScope");
    } catch (e) { /* ignore, in IE6 calling on a table results in an exception */ }
    if (attrVal != null)
    val = attrVal + sep + val;
    tag = tag.parentNode;
    return val;
    // map tagId to "real name"
    if (netui_tagIdNameMap == null)
    var netui_tagIdNameMap = new Object();
    netui_tagIdNameMap.newName="createDecistionTree_1{actionForm.newName}"
    // lookup by tagId to "real name"
    function lookupNameByTagId(id, tag)
    var idScope = lookupIdScope(tag,"_");
    if (idScope == "")
    return netui_tagIdNameMap[id];
    else
    return netui_tagIdNameMap[idScope  + "__" + id];
    -->
    </script>
    The problem here is the language="JavaScript" part, since that is not valid XHTML.
    I would have thought that NETUI should respect the <jsp-config><doc-type> set to XHTML, but maybe I'm overseeing something?

  • Differences b/w Oracle 10.3.0 and 10.3.2

    Hi all,
    I am new to Weblogic.I started the developement with 10.3 and now my team wants to move to 10.3.2 Can any of you please tell me what are all the enhancements/ changes that were made in 10.3.2
    I got the release notes of Oracel 10.3.2 but were not sure how they were modified below the list was shown in the Oracles site.Can any one please elaborate how these features were supported earlier and how they got modified now.
    Oracle WebLogic Portal 10.3.2 provides tools to build enterprise portal applications.
    This release includes:
    Dynamic Visitor Tools
    Dynamic Visitor Tools extensibility
    REST API for unified user profiles
    REST support for content management with CMIS
    Oracle Enterprise Pack for Eclipse based IDE
    WSRP 2.0 compliance and IDE support
    JSR 286 compliance and IDE support
    JSR 329 portlet bridge for JSF portlets
    Import/Export of Java portlets
    WSRP interoperability with Oracle WebCenter
    Content integration with the UCM VCR Adapter
    Direct upgrade from WLP 8.1 SP5
    Thanks
    Chandra.

    Hi Chandra
    Most of the things are same in WLP 10.3 and WLP 10.3.2 except for 4 Major Changes. Yes, its always better to go with latest version 10.3.2. You can download and start working on this latest version. Now, here are the 4 Major differences:
    1. Oracle Enterprise Pack for Eclipse based IDE - WLP 10.3 uses BEA/Oracles Custom IDE called Workshop. This is based on Eclipse IDE, but still its customized and called Workshop. But WLP 10.3.2 is 100% Eclipse IDE. You may not observer much differences. After you start Workshop in 10.3 and Eclipse for WLP 10.3.2, you will notice very minor differences. One thing I observerd is some features in Eclipse are not avaliable like auto filling of data. So 10.3.2 uses Eclipse.
    2. WSRP interoperability with Oracle WebCenter - WLP 10.3.2 can consume Oracle WebCenter ADFs Portlets using WSRP (WebServices Remote Portlets). This is not possible in WLP 10.3.
    3. Content integration with the UCM VCR Adapter - UCM is Oracles content management repository. Now we can integrate this with WLP. I am not much familiar with internal details. This is possible only in 10.3.2.
    4. Embedded LDAP - WLP 10.3 uses default embedded ldap to store all the security stuff like Roles, Policies, Entitlement etc. But in 10.3.2 WLP uses RDBMS Security Store to store all this stuff. LDAP is not used any more.
    The core internal framework, APIs, base weblogic server, console etc are pretty much same in both the versions.
    Thanks
    Ravi Jegga

  • Problem with WebLogic 10.3.3, Apache 2.2.3 and WebLogic Apache proxy plugin

    I have a problem with using Apache 2.2.3 as a WebLogic SSL proxy. I have Apache 2.2 running and successfully configured an SSL cert, config in ssl.conf is...
    <VirtualHost secure.daftdonkey.com>
    # Setup SSL for secure.daftdonkey.com
    ServerName secure.daftdonkey.com
    SSLEngine On
    SSLCertificateFile /oracle/secure/secure.daftdonkey.com.crt
    SSLCertificateKeyFile /oracle/secure/secure.daftdonkey.com.key
    SSLCertificateChainFile /oracle/secure/gd_bundle.crt
    </VirtualHost>
    This works fine
    Now I want Apache to proxy requests to my WebLogic Server and secure them over SSL as well
    e.g. a request to https://secure.daftdonkey.com/service goes to https://weblogic.internal.site/service
    I have downloaded and configured the weblogic module and tested it handling traffic for HTTP and that worked, then I switched the WebLogic module to use SSL.
    LoadModule weblogic_module modules/mod_wl.so
    <IfModule mod_weblogic.c>
    WebLogicHost weblogic.internal.site
    WebLogicPort 16101
    Debug ALL
    SecureProxy ON
    WLSSLWallet /oracle/secure/my-wallet
    WLLogFile /tmp/wl-proxy.log
    </IfModule>
    <Location /service>
    SetHandler weblogic-handler
    </Location>
    Starting Apache throws the error. I think this is my main problem, i've searched support.oracle.com and not found anything.
    [Mon Jun 07 23:00:48 2010] [crit] (20014)Internal error: WL SSL Init failed for server: (null) on 0
    but Apache starts... I get this error when I make a request to https://secure.daftdonkey.com/service
    Failure of server APACHE bridge:
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF.
    Looking into the log /tmp/wl-proxy.log I see....
    Mon Jun 7 22:30:10 2010 <393212759749971> URLfactory Created
    Mon Jun 7 22:30:10 2010 <393312759750102> ================New Request: [GET /service HTTP/1.1] =================
    Mon Jun 7 22:30:10 2010 <393312759750102> INFO: SSL is configured
    Mon Jun 7 22:30:10 2010 <393312759750102> Using Uri /service
    Mon Jun 7 22:30:10 2010 <393312759750102> After trimming path: '/service'
    Mon Jun 7 22:30:10 2010 <393312759750102> The final request string is '/service'
    Mon Jun 7 22:30:10 2010 <393312759750102> parseServerList: Socket Address hostnames 'weblogic.internal.site:16101'
    Mon Jun 7 22:30:10 2010 <393312759750102> Host extracted from serverlist is [weblogic.internal.site]
    Mon Jun 7 22:30:10 2010 <393312759750102> parseServerList: IP from socket Address [192.168.100.15]
    Mon Jun 7 22:30:10 2010 <393312759750102> Initializing lastIndex=0 for a list of length=1
    Mon Jun 7 22:30:10 2010 <393312759750102> getListNode: created a new server node: id='weblogic.internal.site:16101' server_name='secure.daftdonkey.com', port='443'
    Mon Jun 7 22:30:10 2010 <393312759750102> attempt #0 out of a max of 5
    Mon Jun 7 22:30:10 2010 <393312759750102> Trying a pooled connection for '192.168.100.15/16101/16101'
    Mon Jun 7 22:30:10 2010 <393312759750102> getPooledConn: found a host and port/securePort match
    Mon Jun 7 22:30:10 2010 <393312759750102> getPooledConn: No more connections in the pool for Host[192.168.100.15] Port[16101] SecurePort[16101]
    Mon Jun 7 22:30:10 2010 <393312759750102> general list: trying connect to '192.168.100.15'/16101/16101 at line 3188 for '/service'
    Mon Jun 7 22:30:10 2010 <393312759750102> SSL is not configured for this connection
    Mon Jun 7 22:30:10 2010 <393312759750102> Local Port of the socket is 45580
    Mon Jun 7 22:30:10 2010 <393312759750102> Remote Host 192.168.100.15 Remote Port 16101
    Mon Jun 7 22:30:10 2010 <393312759750102> URL::connect SSLConn for reader is not set as it is NULL
    Mon Jun 7 22:30:10 2010 <393312759750102> general list: created a new connection to '192.168.100.15'/16101 for '/service', Local port:0
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[Host]=[secure.daftdonkey.com]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[User-Agent]=[Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 ( .NET CLR 3.5.30729)]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[Accept-Language]=[en-us,en;q=0.5]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[Accept-Encoding]=[gzip,deflate]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[Accept-Charset]=[ISO-8859-1,utf-8;q=0.7,*;q=0.7]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[Keep-Alive]=[300]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs from clnt:[Connection]=[keep-alive]
    Mon Jun 7 22:30:10 2010 <393312759750102> parse_header is done
    Mon Jun 7 22:30:10 2010 <393312759750102> Method is GET
    Mon Jun 7 22:30:10 2010 <393312759750102> About to call parseHeaders
    Mon Jun 7 22:30:10 2010 <393312759750102> URL::parseHeaders: Value of parsedHeaders = [0]
    Mon Jun 7 22:30:10 2010 <393312759750102> URL::sendHeaders(): meth='GET' file='/service' protocol='HTTP/1.1'
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Host]=[secure.daftdonkey.com]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [User-Agent]=[Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 ( .NET CLR 3.5.30729)]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Accept-Language]=[en-us,en;q=0.5]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Accept-Encoding]=[gzip,deflate]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Accept-Charset]=[ISO-8859-1,utf-8;q=0.7,*;q=0.7]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Keep-Alive]=[300]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Connection]=[Keep-Alive]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [WL-Proxy-SSL]=[true]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [WL-Proxy-Client-IP]=[192.168.100.245]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [Proxy-Client-IP]=[192.168.100.245]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [X-Forwarded-For]=[192.168.100.245]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [X-WebLogic-KeepAliveSecs]=[30]
    Mon Jun 7 22:30:10 2010 <393312759750102> Hdrs to WLS: [X-WebLogic-Force-JVMID]=[unset]
    Mon Jun 7 22:30:10 2010 <393312759750102> Reader::fill(): first=0 last=0 toRead=4096
    Mon Jun 7 22:30:10 2010 <393312759750102> Reader::fill(): sysRecv returned -1
    Mon Jun 7 22:30:10 2010 <393312759750102> *******Exception type [READ_ERROR_FROM_SERVER] (socket read failure) raised at line 251 of ../nsapi/Reader.cpp
    Mon Jun 7 22:30:10 2010 <393312759750102> caught exception in readStatus: READ_ERROR_FROM_SERVER [os error=104, line 251 of ../nsapi/Reader.cpp]: socket read failure at line 963
    Mon Jun 7 22:30:10 2010 <393312759750102> PROTOCOL_ERROR: Backend Server not responding - isRecycled:0
    Mon Jun 7 22:30:10 2010 <393312759750102> Marking 192.168.100.15:16101 as bad
    Mon Jun 7 22:30:10 2010 <393312759750102> got exception in sendRequest phase: Backend Server not responding at line 3702
    Mon Jun 7 22:30:10 2010 <393312759750102> Failing over after sendRequest() exception: PROTOCOL_ERROR as Idempotent is set to ON
    Mon Jun 7 22:30:10 2010 <393312759750102> attempt #1 out of a max of 5
    However connecting directly to https://192.168.100.15:16101/irm_rights is successful.
    Ouput from orapki seems to show a valid wallet.
    [root@content my-wallet]# /oracle/install/bin/orapki wallet display -wallet /oracle/secure/my-wallet/
    Oracle PKI Tool : Version 11.1.1.2.0
    Copyright (c) 2004, 2009, Oracle and/or its affiliates. All rights reserved.
    Requested Certificates:
    User Certificates:
    Trusted Certificates:
    Subject: OU=Class 2 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US
    Subject: OU=Secure Server Certification Authority,O=RSA Data Security\, Inc.,C=US
    Subject: OU=Class 3 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US
    Subject: OU=Class 1 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US
    Subject: CN=weblogic.internal.site,OU=FOR TESTING ONLY,O=MyOrganization,L=MyTown,ST=MyState,C=US
    Subject: CN=GTE CyberTrust Global Root,OU=GTE CyberTrust Solutions\, Inc.,O=GTE Corporation,C=US
    Also the apache log at /var/log/httpd/ssl_error_log shows.
    [Mon Jun 07 23:59:03 2010] [error] [client 192.168.100.245] ap_proxy: trying GET /service/ at backend host '192.168.100.15/16101; got exception 'Backend Server not responding'
    [Mon Jun 07 23:59:03 2010] [error] [client 192.168.100.245] ap_proxy: trying GET /service/ at backend host '192.168.100.15/16101; got exception 'Backend Server not responding'
    [Mon Jun 07 23:59:03 2010] [error] [client 192.168.100.245] ap_proxy: trying GET /service/ at backend host '192.168.100.15/16101; got exception 'Backend Server not responding'
    [Mon Jun 07 23:59:03 2010] [error] [client 192.168.100.245] ap_proxy: trying GET /service/ at backend host '192.168.100.15/16101; got exception 'Backend Server not responding'
    [Mon Jun 07 23:59:03 2010] [error] [client 192.168.100.245] ap_proxy: trying GET /service/ at backend host '192.168.100.15/16101; got exception 'Backend Server not responding'
    [Mon Jun 07 23:59:03 2010] [error] [client 192.168.100.245] ap_proxy: trying GET /service/ at backend host '192.168.100.15/16101; got exception 'Backend Server not responding'
    Editing the httpd.conf and sending traffic from Apache to WebLogic over regular HTTP works, config is...
    LoadModule weblogic_module modules/mod_wl.so
    <IfModule mod_weblogic.c>
    WebLogicHost weblogic.internal.site
    WebLogicPort 16100
    Debug ALL
    # SecureProxy ON
    # WLSSLWallet /oracle/secure/my-wallet
    WLLogFile /tmp/wl-proxy.log
    </IfModule>
    Resulting detail from /tmp/wl-proxy.log
    Mon Jun 7 23:20:50 2010 <415912759780351> URLfactory Created
    Mon Jun 7 23:20:50 2010 <416012759780502> ================New Request: [GET /service/ HTTP/1.1] =================
    Mon Jun 7 23:20:50 2010 <416012759780502> Using Uri /service/
    Mon Jun 7 23:20:50 2010 <416012759780502> After trimming path: '/service/'
    Mon Jun 7 23:20:50 2010 <416012759780502> The final request string is '/service/'
    Mon Jun 7 23:20:50 2010 <416012759780502> parseServerList: Socket Address hostnames 'weblogic.internal.site:16100'
    Mon Jun 7 23:20:50 2010 <416012759780502> Host extracted from serverlist is [weblogic.internal.site]
    Mon Jun 7 23:20:50 2010 <416012759780502> parseServerList: IP from socket Address [192.168.100.15]
    Mon Jun 7 23:20:50 2010 <416012759780502> Initializing lastIndex=0 for a list of length=1
    Mon Jun 7 23:20:50 2010 <416012759780502> getListNode: created a new server node: id='weblogic.internal.site:16100' server_name='secure.daftdonkey.com', port='443'
    Mon Jun 7 23:20:50 2010 <416012759780502> attempt #0 out of a max of 5
    Mon Jun 7 23:20:50 2010 <416012759780502> Trying a pooled connection for '192.168.100.15/16100/16100'
    Mon Jun 7 23:20:50 2010 <416012759780502> getPooledConn: found a host and port/securePort match
    Mon Jun 7 23:20:50 2010 <416012759780502> getPooledConn: No more connections in the pool for Host[192.168.100.15] Port[16100] SecurePort[16100]
    Mon Jun 7 23:20:50 2010 <416012759780502> general list: trying connect to '192.168.100.15'/16100/16100 at line 3188 for '/service/'
    Mon Jun 7 23:20:50 2010 <416012759780502> SSL is not configured for this connection
    Mon Jun 7 23:20:50 2010 <416012759780502> Local Port of the socket is 56647
    Mon Jun 7 23:20:50 2010 <416012759780502> Remote Host 192.168.100.15 Remote Port 16100
    Mon Jun 7 23:20:50 2010 <416012759780502> URL::connect SSLConn for reader is not set as it is NULL
    Mon Jun 7 23:20:50 2010 <416012759780502> general list: created a new connection to '192.168.100.15'/16100 for '/service/', Local port:0
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Host]=[secure.daftdonkey.com]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[User-Agent]=[Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 ( .NET CLR 3.5.30729)]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Accept-Language]=[en-us,en;q=0.5]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Accept-Encoding]=[gzip,deflate]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Accept-Charset]=[ISO-8859-1,utf-8;q=0.7,*;q=0.7]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Keep-Alive]=[300]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Connection]=[keep-alive]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from clnt:[Cookie]=[JSESSIONID=YF4nMNfZ3lJ5ZrVV9HGpKwj3hf12yRvlf4zksQf6pkKx2LhJ2ywY!34167467]
    Mon Jun 7 23:20:50 2010 <416012759780502> parse_header is done
    Mon Jun 7 23:20:50 2010 <416012759780502> Method is GET
    Mon Jun 7 23:20:50 2010 <416012759780502> About to call parseHeaders
    Mon Jun 7 23:20:50 2010 <416012759780502> URL::parseHeaders: Value of parsedHeaders = [0]
    Mon Jun 7 23:20:50 2010 <416012759780502> URL::sendHeaders(): meth='GET' file='/service/' protocol='HTTP/1.1'
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Host]=[secure.daftdonkey.com]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [User-Agent]=[Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox/3.5.9 ( .NET CLR 3.5.30729)]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Accept-Language]=[en-us,en;q=0.5]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Accept-Encoding]=[gzip,deflate]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Accept-Charset]=[ISO-8859-1,utf-8;q=0.7,*;q=0.7]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Keep-Alive]=[300]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Cookie]=[JSESSIONID=YF4nMNfZ3lJ5ZrVV9HGpKwj3hf12yRvlf4zksQf6pkKx2LhJ2ywY!34167467]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Connection]=[Keep-Alive]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [WL-Proxy-SSL]=[true]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [WL-Proxy-Client-IP]=[192.168.100.245]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [Proxy-Client-IP]=[192.168.100.245]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [X-Forwarded-For]=[192.168.100.245]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [X-WebLogic-KeepAliveSecs]=[30]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to WLS: [X-WebLogic-Force-JVMID]=[unset]
    Mon Jun 7 23:20:50 2010 <416012759780502> Reader::fill(): first=0 last=0 toRead=4096
    Mon Jun 7 23:20:50 2010 <416012759780502> Reader::fill(): sysRecv returned 568
    Mon Jun 7 23:20:50 2010 <416012759780502> URL::parseHeaders: CompleteStatusLine set to [HTTP/1.1 302 Moved Temporarily]
    Mon Jun 7 23:20:50 2010 <416012759780502> URL::parseHeaders: StatusLine set to [302 Moved Temporarily]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from WLS:[Date]=[Tue, 08 Jun 2010 06:20:50 GMT]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from WLS:[Transfer-Encoding]=[chunked]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from WLS:[Location]=[https://secure.daftdonkey.com/service/faces/LoginPage.jspx]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from WLS:[X-WebLogic-JVMID]=[34167467]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs from WLS:[X-Powered-By]=[Servlet/2.5 JSP/2.1]
    Mon Jun 7 23:20:50 2010 <416012759780502> parsed all headers OK
    Mon Jun 7 23:20:50 2010 <416012759780502> done with sendRequest
    Mon Jun 7 23:20:50 2010 <416012759780502> sendResponse() : r->status = '302'
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to client (add):[Date]=[Tue, 08 Jun 2010 06:20:50 GMT]
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to client (add):[Location]=[https://secure.daftdonkey.com/service/faces/LoginPage.jspx]
    Mon Jun 7 23:20:50 2010 <416012759780502> for 192.168.100.15/16100/16100, updated JVMID: 34167467
    Mon Jun 7 23:20:50 2010 <416012759780502> Hdrs to client (add):[X-Powered-By]=[Servlet/2.5 JSP/2.1]
    Mon Jun 7 23:20:50 2010 <416012759780502> calling closeConn() with non-null URL* at 3826
    Mon Jun 7 23:20:50 2010 <416012759780502> canRecycle: conn=1 status=302 isKA=1 clen=-1 isCTE=1
    Mon Jun 7 23:20:50 2010 <416012759780502> closeConn: pooling for '192.168.100.15/16100'
    Mon Jun 7 23:20:50 2010 <416012759780502> closeConn: pooling '0'
    Mon Jun 7 23:20:50 2010 <416012759780502> request [irm_rights/] processed successfully..................
    Mon Jun 7 23:20:50 2010 <415912759780351> Cleaning up the list node 'weblogic.internal.site:16100'list Length '1'

    I found the answer to this. The documentation is not clear enough, LD_LIBRARY_PATH MUST be set and MUST have a pointer to the directory where the SSL .so modules are. I wrote up a blog article explaining the configuration and detailed this issue.
    http://blogs.oracle.com/irm/2010/06/quick_guide_to_oracle_irm_11g_1.html

  • URGENT:  Error while deploying ear with weblogic service control

    We have build an ear within workshop and deployed to another server. When accessing the application we are getting the following error:
    'com.bea.control.ServiceControlException: Could not find service ref in jndi: java:comp/env/service/hhs_wc_controls_SearchServiceControl[javax.naming.NameNotFoundException: While trying to look up comp/env/service/hhs_wc_controls_SearchServiceControl in /app/webapp/WCWeb/5120123.; remaining name 'comp/env/service/hhs_wc_controls_SearchServiceControl'] '
    The service control is connecting a WSDL to consume a web service.
    Does the service control create a JNDI entry or some file is not getting built into the ear?
    We are using WLP 10.3
    Your help is much appreciated.
    Thanks,
    - Shankar
    Edited by: user1269940 on Nov 6, 2009 12:39 PM

    Hi Shankar
    When a WebService Control is created based on .wsdl file, it generates a .JAR file with all jaxb generated classes and .java files with service and port classes. This .jar file will be under web-inf/lib folder. Then I guess you are using this WebService control in your Pageflow and invoke webservice operations. So do you have like a portlet for this pageflow and testing from a portal. I have a similar scenario but I did not get any error that you are seeing. I consume SOA BPEL webservices in one of my pageflows using Service Controls.
    To debug, first test if the wsdl is working by directly invoking the wsdl operations using a utility servlet by name "wls_utc" which you can invoke from any of your wls/wlp domain. Start your domain assuming localhost and port is 7001. The url for testing webservices is:
    http://localhost:7001/wls_utc. This works if domain is in Dev Mode only. This page opens a jsp page, where you can type your wsdl url (http://host:port/context/a/b/xyx?wsdl). This page parses that wsdl and shows all operations and for each operation the fields for input parameters. See if this wsdl works fine.
    As for deployment, there is no additional step required. Just ear your application that has .war file and that has web-inf/lib folder with actual webservice control generate .jar file. I did no tconfigure any additional JNDI lookups like that.
    Thanks
    Ravi Jegga

  • Tooltips Not Appearing in Firefox

    I searched for answer to this problem, which I thought must be common, but didn't find anything.
    I added a tooltip using Dreamweaver CS4 insert Spry tooltip option.  The tooltip appears with Internet Explorer 8, but not Firefox 3.5.7.  The tooltip isn't blank, there's no sign of it. I tried it on two different systems running Windows 7.  I have another web page with Spry tabs that works just fine.
    Thanks for any help,
    Curt Rowe
    P.S. Here's the code
    <head>
    <script src="../SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <span id="sprytrigger1"><img ...></span>
    <div class="tooltipContent" id="sprytooltip1">The signature is from a marriage affadavit in the Cuyahoga County Marriage Book.</div>
    <script type="text/javascript">
    <!--
    var sprytooltip1 = new Spry.Widget.Tooltip("sprytooltip1", "#sprytrigger1");
    //-->
    </script>

    GuillermoCortes wrote:
    I tried adding the title and it works fine. It's also a lot less overhead on page loads. It even looks better than the default tooltip.  Does the title appear if the image display is turned off? If so I wouldn't need it and the alt description.
    I'd still like to solve the problem in case I need to use it again. I moved the image up and it works.  Totally strange.  I tried movng the image down a few lines at a time.  The tooltip appears to stay in the same place on the page.  When the image is at it's original location, I think the tooltip is displaying so far up the page that it's not visible. I tried adding a vertical off set to bring it down, but it has no effect.
    I also noticed that the tooltip works in Dreamweaver Live View without moving it.
    I am not sure about the title appears if the image is turned off; but for XHTML compliancy the alt attribute is required.
    If you want to know more on the title attribute have a look here and you will notice that this attribute is a very much overlooked one.This attribute because it can be used on most (X)HTML tags, makes the normal use of Spry tooltips redundant.
    As far as finding a solution for the FF/Spry Tooltip problem, I think the style rules need to be tweeked. At the moment they are geared towards IE, leaving the likes of FF in the lurch.
    Whatever, I do not need Spry tooltips.
    Ben

  • Append Extra Slash for Application Request through OHS

    Hello All,
    I am writing to request your help on the following blocking issue :
    In my attempt to configure End-End SSL between Browser->OHS Plugin->SSL Weblogic Managed Server ,
    Weblogic is giving me an incorrect response while constructing the absolute redirect.
    What i mean is :
    I am trying to excess an application deployed on an SSL Weblogic as :
    https://adc2110491.us.oracle.com:12004/Calendar
    But when i configure this through OHS, and then try to access the same application via URL :
    https://adc2110491.us.oracle.com:4443/test/Calendar - This doesnt work !
    Instead if i append an extra "Slash" in the URL, the application is accessible(This is a workaround and not an expected behavior) :
    https://adc2110491.us.oracle.com:4443/test/Calendar/ - This works !
    For such kind of configuration from OHS side, I enabled a property called "*WebLogic Plug-In Enabled*" from "WLS Managed Server -> General settings"
    Please note that, in case When above mentioned Weblogic-Server is NOT SSL, this works fine.
    This error is only in SSL case.
    Also, Pasting the log file below for one such failed request :
    +Tue Apr  9 11:47:12 2013 <1009513655332321> ================New Request: [GET /test/Calendar HTTP/1.1] =================+
    Tue Apr  9 11:47:12 2013 <1009513655332321> INFO: SSL is configured
    Tue Apr  9 11:47:12 2013 <1009513655332321> Using Uri /test/Calendar
    Tue Apr  9 11:47:12 2013 <1009513655332321> After trimming path: '/Calendar'
    Tue Apr  9 11:47:12 2013 <1009513655332321> The final request string is '/Calendar'
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseServerList: Socket Address hostnames  'adc2110491.us.oracle.com:12004'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Host extracted from serverlist is [adc2110491.us.oracle.com]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseServerList:  IP from socket Address [10.232.130.87]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Initializing lastIndex=0 for a list of length=1
    Tue Apr  9 11:47:12 2013 <1009513655332321> getListNode: created a new server node: id='adc2110491.us.oracle.com:12004' server_name='adc2110491.us.oracle.com', port='4443'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferred: availcookie=[s_nr=1365505876368; ADMINCONSOLESESSION=FGY9RkfPy7xrvwn4zYR0LqfTV0vGkBjPxhjxQbQGlkhjXJ22LHXJ!1111363896; _WL_AUTHCOOKIE_ADMINCONSOLESESSION=mSkOg.X9HBLf9jgkR.PJ; JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Found cookie from cookie header: JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397
    Tue Apr  9 11:47:12 2013 <1009513655332321> Parsing cookie JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397
    +Tue Apr  9 11:47:12 2013 <1009513655332321> getpreferredServersFromCookie: [-1304266397]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> primaryJVMID: [-1304266397], secondaryJVMID: []+
    Tue Apr  9 11:47:12 2013 <1009513655332321> No of JVMIDs found in cookie: 1
    Tue Apr  9 11:47:12 2013 <1009513655332321> Number of nodes in the list: 1
    Tue Apr  9 11:47:12 2013 <1009513655332321> SrvrInfo 0 with JVMID:
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferredFromCookie: Start Position is 0, listLen is 1
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferredFromCookie: Either JVMIDs not set or they are stale. Will try to get JVMIDs from WLS
    Tue Apr  9 11:47:12 2013 <1009513655332321> initJVMID: Iterating SrvrList from position 0
    Tue Apr  9 11:47:12 2013 <1009513655332321> ======internal request /bea_wls_internal/WLDummyInitJVMIDs======
    initJVMID: Trying Host[10.232.130.87] Port[12004] SecurePort[12004] useSSL [1] ioTimeout [30] socketTimeout [2]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Local Port of the socket is 22159
    Tue Apr  9 11:47:12 2013 <1009513655332321> Remote Host 10.232.130.87 Remote Port 12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::sendHeaders(): meth='HEAD' file='/bea_wls_internal/WLDummyInitJVMIDs' protocol='HTTP/1.0'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Connection]=[Close]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-Request-ClusterInfo]=[true]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-Force-JVMID]=[unset]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-KeepAliveSecs]=[30]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Need to send 167
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite sent 167, Error = 0
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite completed, sent 167
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: Value of parsedHeaders = [0]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    +Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: CompleteStatusLine set to [HTTP/1.1 404 Not Found]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: StatusLine set to [404 Not Found]
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Connection]=[close]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Date]=[Tue, 09 Apr 2013 18:47:12 GMT]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Content-Length]=[1214]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Content-Type]=[text/html; charset=UTF-8]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-WebLogic-Cluster-Hash]=[yo3Df7lxCy0/YU7vJMjHoUNLu9I]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-Powered-By]=[Servlet/2.5 JSP/2.1]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-WebLogic-Cluster-List]=[-1304266397!183009879!12003!12004]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parsed all headers OK
    Tue Apr  9 11:47:12 2013 <1009513655332321> Parsing cluster list: -1304266397!183009879!12003!12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseJVMID: Parsing JVMID '-1304266397!183009879!12003!12004'
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseJVMID: Actually parsing '-1304266397!183009879!12003!12004'
    Tue Apr  9 11:47:12 2013 <1009513655332321> ServerInfo struct for JVMID '-1304266397' populated, Server Details are: OrigHostInfo [10.232.130.87], isOrigHostInfoDNS [0], Host [10.232.130.87], Port [12003], SecurePort [12004]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Initializing lastIndex=0 for a list of length=1
    +Tue Apr  9 11:47:12 2013 <1009513655332321> initJVMID: Trying to locate Primary or Secondary using SrvrInfo with JVMID [-1304266397]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> initJVMID: Found Primary 10.232.130.87:12003:12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> .....internal request /bea_wls_internal/WLDummyInitJVMIDs.....processed
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferredFromCookie: Found 1 servers
    Tue Apr  9 11:47:12 2013 <1009513655332321> attempt #0 out of a max of 5
    Tue Apr  9 11:47:12 2013 <1009513655332321> trying connect to PRIMARY '10.232.130.87'/12003/12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPooledConn: found a host and port/securePort match
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPooledConn: No more connections in the pool for Host[10.232.130.87] Port[12003] SecurePort[12004]
    Tue Apr  9 11:47:12 2013 <1009513655332321> getConnection: Obtained a URL object from factory
    Tue Apr  9 11:47:12 2013 <1009513655332321> getConnection: Setting SSL properties on URL object
    Tue Apr  9 11:47:12 2013 <1009513655332321> Local Port of the socket is 22160
    Tue Apr  9 11:47:12 2013 <1009513655332321> Remote Host 10.232.130.87 Remote Port 12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> created a new connection to preferred server '10.232.130.87/12004' for '/Calendar', Local port:0
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Host]=[adc2110491.us.oracle.com:4443]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[User-Agent]=[Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.4) Gecko/20100101 Firefox/10.0.4]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Accept-Language]=[en-us,en;q=0.5]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Accept-Encoding]=[gzip, deflate]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Connection]=[keep-alive]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Cookie]=[s_nr=1365505876368; ADMINCONSOLESESSION=FGY9RkfPy7xrvwn4zYR0LqfTV0vGkBjPxhjxQbQGlkhjXJ22LHXJ!1111363896; _WL_AUTHCOOKIE_ADMINCONSOLESESSION=mSkOg.X9HBLf9jgkR.PJ; JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[ECID-Context]=[1.004qV7vEojhDsXY5HrG7yf0006Jj0000SH;kXjE1ZDLIPHHj4TPnKVB3HOR_UOPXIS]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parse_header is done
    Tue Apr  9 11:47:12 2013 <1009513655332321> Method is GET
    Tue Apr  9 11:47:12 2013 <1009513655332321> About to call parseHeaders
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: Value of parsedHeaders = [0]
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::sendHeaders(): meth='GET' file='/Calendar' protocol='HTTP/1.1'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Host]=[adc2110491.us.oracle.com:4443]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [User-Agent]=[Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.4) Gecko/20100101 Firefox/10.0.4]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Accept-Language]=[en-us,en;q=0.5]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Accept-Encoding]=[gzip, deflate]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Cookie]=[s_nr=1365505876368; ADMINCONSOLESESSION=FGY9RkfPy7xrvwn4zYR0LqfTV0vGkBjPxhjxQbQGlkhjXJ22LHXJ!1111363896; _WL_AUTHCOOKIE_ADMINCONSOLESESSION=mSkOg.X9HBLf9jgkR.PJ; JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [ECID-Context]=[1.004qV7vEojhDsXY5HrG7yf0006Jj0000SH;kXjE1ZDLIPHHj4TPnKVB3HOR_UOPXIS]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Connection]=[Keep-Alive]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [WL-Proxy-SSL]=[true]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [WL-PATH-TRIM]=[test]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [WL-Proxy-Client-IP]=[148.87.19.36]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Proxy-Client-IP]=[148.87.19.36]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-Forwarded-For]=[148.87.19.36]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-KeepAliveSecs]=[30]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-Request-ClusterInfo]=[true]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [x-weblogic-cluster-hash]=[yo3Df7lxCy0/YU7vJMjHoUNLu9I]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Need to send 889
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite sent 889, Error = 0
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite completed, sent 889
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    +Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: CompleteStatusLine set to [HTTP/1.1 302 Moved Temporarily]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: StatusLine set to [302 Moved Temporarily]
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Date]=[Tue, 09 Apr 2013 18:47:12 GMT]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Transfer-Encoding]=[chunked]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Location]=[http://adc2110491.us.oracle.com:4443/test/Calendar/]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-Powered-By]=[Servlet/2.5 JSP/2.1]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parsed all headers OK
    Tue Apr  9 11:47:12 2013 <1009513655332321> done with sendRequest
    Tue Apr  9 11:47:12 2013 <1009513655332321> sendResponse() : r->status = '302'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to client (add):[Date]=[Tue, 09 Apr 2013 18:47:12 GMT]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to client (add):[Location]=[http://adc2110491.us.oracle.com:4443/test/Calendar/]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to client (add):[X-Powered-By]=[Servlet/2.5 JSP/2.1]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 3 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=3 toRead=4093
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=5 toRead=4091
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 1 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 297 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 3 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=3 toRead=4093
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=5 toRead=4091
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 1 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> calling closeConn() with non-null URL* at 3882
    Tue Apr  9 11:47:12 2013 <1009513655332321> canRecycle: conn=1 status=302 isKA=1 clen=-1 isCTE=1
    Tue Apr  9 11:47:12 2013 <1009513655332321> closeConn: pooling for '10.232.130.87/12004'
    Tue Apr  9 11:47:12 2013 <1009513655332321> closeConn: pooling '0'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> request [Calendar] processed successfully..................+

    Hello All,
    I am writing to request your help on the following blocking issue :
    In my attempt to configure End-End SSL between Browser->OHS Plugin->SSL Weblogic Managed Server ,
    Weblogic is giving me an incorrect response while constructing the absolute redirect.
    What i mean is :
    I am trying to excess an application deployed on an SSL Weblogic as :
    https://adc2110491.us.oracle.com:12004/Calendar
    But when i configure this through OHS, and then try to access the same application via URL :
    https://adc2110491.us.oracle.com:4443/test/Calendar - This doesnt work !
    Instead if i append an extra "Slash" in the URL, the application is accessible(This is a workaround and not an expected behavior) :
    https://adc2110491.us.oracle.com:4443/test/Calendar/ - This works !
    For such kind of configuration from OHS side, I enabled a property called "*WebLogic Plug-In Enabled*" from "WLS Managed Server -> General settings"
    Please note that, in case When above mentioned Weblogic-Server is NOT SSL, this works fine.
    This error is only in SSL case.
    Also, Pasting the log file below for one such failed request :
    +Tue Apr  9 11:47:12 2013 <1009513655332321> ================New Request: [GET /test/Calendar HTTP/1.1] =================+
    Tue Apr  9 11:47:12 2013 <1009513655332321> INFO: SSL is configured
    Tue Apr  9 11:47:12 2013 <1009513655332321> Using Uri /test/Calendar
    Tue Apr  9 11:47:12 2013 <1009513655332321> After trimming path: '/Calendar'
    Tue Apr  9 11:47:12 2013 <1009513655332321> The final request string is '/Calendar'
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseServerList: Socket Address hostnames  'adc2110491.us.oracle.com:12004'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Host extracted from serverlist is [adc2110491.us.oracle.com]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseServerList:  IP from socket Address [10.232.130.87]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Initializing lastIndex=0 for a list of length=1
    Tue Apr  9 11:47:12 2013 <1009513655332321> getListNode: created a new server node: id='adc2110491.us.oracle.com:12004' server_name='adc2110491.us.oracle.com', port='4443'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferred: availcookie=[s_nr=1365505876368; ADMINCONSOLESESSION=FGY9RkfPy7xrvwn4zYR0LqfTV0vGkBjPxhjxQbQGlkhjXJ22LHXJ!1111363896; _WL_AUTHCOOKIE_ADMINCONSOLESESSION=mSkOg.X9HBLf9jgkR.PJ; JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Found cookie from cookie header: JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397
    Tue Apr  9 11:47:12 2013 <1009513655332321> Parsing cookie JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397
    +Tue Apr  9 11:47:12 2013 <1009513655332321> getpreferredServersFromCookie: [-1304266397]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> primaryJVMID: [-1304266397], secondaryJVMID: []+
    Tue Apr  9 11:47:12 2013 <1009513655332321> No of JVMIDs found in cookie: 1
    Tue Apr  9 11:47:12 2013 <1009513655332321> Number of nodes in the list: 1
    Tue Apr  9 11:47:12 2013 <1009513655332321> SrvrInfo 0 with JVMID:
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferredFromCookie: Start Position is 0, listLen is 1
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferredFromCookie: Either JVMIDs not set or they are stale. Will try to get JVMIDs from WLS
    Tue Apr  9 11:47:12 2013 <1009513655332321> initJVMID: Iterating SrvrList from position 0
    Tue Apr  9 11:47:12 2013 <1009513655332321> ======internal request /bea_wls_internal/WLDummyInitJVMIDs======
    initJVMID: Trying Host[10.232.130.87] Port[12004] SecurePort[12004] useSSL [1] ioTimeout [30] socketTimeout [2]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Local Port of the socket is 22159
    Tue Apr  9 11:47:12 2013 <1009513655332321> Remote Host 10.232.130.87 Remote Port 12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::sendHeaders(): meth='HEAD' file='/bea_wls_internal/WLDummyInitJVMIDs' protocol='HTTP/1.0'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Connection]=[Close]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-Request-ClusterInfo]=[true]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-Force-JVMID]=[unset]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-KeepAliveSecs]=[30]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Need to send 167
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite sent 167, Error = 0
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite completed, sent 167
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: Value of parsedHeaders = [0]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    +Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: CompleteStatusLine set to [HTTP/1.1 404 Not Found]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: StatusLine set to [404 Not Found]
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Connection]=[close]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Date]=[Tue, 09 Apr 2013 18:47:12 GMT]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Content-Length]=[1214]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Content-Type]=[text/html; charset=UTF-8]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-WebLogic-Cluster-Hash]=[yo3Df7lxCy0/YU7vJMjHoUNLu9I]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-Powered-By]=[Servlet/2.5 JSP/2.1]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-WebLogic-Cluster-List]=[-1304266397!183009879!12003!12004]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parsed all headers OK
    Tue Apr  9 11:47:12 2013 <1009513655332321> Parsing cluster list: -1304266397!183009879!12003!12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseJVMID: Parsing JVMID '-1304266397!183009879!12003!12004'
    Tue Apr  9 11:47:12 2013 <1009513655332321> parseJVMID: Actually parsing '-1304266397!183009879!12003!12004'
    Tue Apr  9 11:47:12 2013 <1009513655332321> ServerInfo struct for JVMID '-1304266397' populated, Server Details are: OrigHostInfo [10.232.130.87], isOrigHostInfoDNS [0], Host [10.232.130.87], Port [12003], SecurePort [12004]
    Tue Apr  9 11:47:12 2013 <1009513655332321> Initializing lastIndex=0 for a list of length=1
    +Tue Apr  9 11:47:12 2013 <1009513655332321> initJVMID: Trying to locate Primary or Secondary using SrvrInfo with JVMID [-1304266397]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> initJVMID: Found Primary 10.232.130.87:12003:12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> .....internal request /bea_wls_internal/WLDummyInitJVMIDs.....processed
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPreferredFromCookie: Found 1 servers
    Tue Apr  9 11:47:12 2013 <1009513655332321> attempt #0 out of a max of 5
    Tue Apr  9 11:47:12 2013 <1009513655332321> trying connect to PRIMARY '10.232.130.87'/12003/12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPooledConn: found a host and port/securePort match
    Tue Apr  9 11:47:12 2013 <1009513655332321> getPooledConn: No more connections in the pool for Host[10.232.130.87] Port[12003] SecurePort[12004]
    Tue Apr  9 11:47:12 2013 <1009513655332321> getConnection: Obtained a URL object from factory
    Tue Apr  9 11:47:12 2013 <1009513655332321> getConnection: Setting SSL properties on URL object
    Tue Apr  9 11:47:12 2013 <1009513655332321> Local Port of the socket is 22160
    Tue Apr  9 11:47:12 2013 <1009513655332321> Remote Host 10.232.130.87 Remote Port 12004
    Tue Apr  9 11:47:12 2013 <1009513655332321> created a new connection to preferred server '10.232.130.87/12004' for '/Calendar', Local port:0
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Host]=[adc2110491.us.oracle.com:4443]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[User-Agent]=[Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.4) Gecko/20100101 Firefox/10.0.4]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Accept-Language]=[en-us,en;q=0.5]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Accept-Encoding]=[gzip, deflate]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Connection]=[keep-alive]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[Cookie]=[s_nr=1365505876368; ADMINCONSOLESESSION=FGY9RkfPy7xrvwn4zYR0LqfTV0vGkBjPxhjxQbQGlkhjXJ22LHXJ!1111363896; _WL_AUTHCOOKIE_ADMINCONSOLESESSION=mSkOg.X9HBLf9jgkR.PJ; JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from clnt:[ECID-Context]=[1.004qV7vEojhDsXY5HrG7yf0006Jj0000SH;kXjE1ZDLIPHHj4TPnKVB3HOR_UOPXIS]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parse_header is done
    Tue Apr  9 11:47:12 2013 <1009513655332321> Method is GET
    Tue Apr  9 11:47:12 2013 <1009513655332321> About to call parseHeaders
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: Value of parsedHeaders = [0]
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::sendHeaders(): meth='GET' file='/Calendar' protocol='HTTP/1.1'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Host]=[adc2110491.us.oracle.com:4443]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [User-Agent]=[Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.4) Gecko/20100101 Firefox/10.0.4]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Accept-Language]=[en-us,en;q=0.5]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Accept-Encoding]=[gzip, deflate]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Cookie]=[s_nr=1365505876368; ADMINCONSOLESESSION=FGY9RkfPy7xrvwn4zYR0LqfTV0vGkBjPxhjxQbQGlkhjXJ22LHXJ!1111363896; _WL_AUTHCOOKIE_ADMINCONSOLESESSION=mSkOg.X9HBLf9jgkR.PJ; JSESSIONID=l2GkRkgJczv7vjf9p2dh892WhDTvHglTHdFMppJLLCxQL1pmyJJN!-1304266397]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [ECID-Context]=[1.004qV7vEojhDsXY5HrG7yf0006Jj0000SH;kXjE1ZDLIPHHj4TPnKVB3HOR_UOPXIS]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Connection]=[Keep-Alive]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [WL-Proxy-SSL]=[true]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [WL-PATH-TRIM]=[test]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [WL-Proxy-Client-IP]=[148.87.19.36]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [Proxy-Client-IP]=[148.87.19.36]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-Forwarded-For]=[148.87.19.36]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-KeepAliveSecs]=[30]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [X-WebLogic-Request-ClusterInfo]=[true]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to WLS: [x-weblogic-cluster-hash]=[yo3Df7lxCy0/YU7vJMjHoUNLu9I]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Need to send 889
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite sent 889, Error = 0
    Tue Apr  9 11:47:12 2013 <1009513655332321> SSLWrite completed, sent 889
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    +Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: CompleteStatusLine set to [HTTP/1.1 302 Moved Temporarily]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> URL::parseHeaders: StatusLine set to [302 Moved Temporarily]
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Date]=[Tue, 09 Apr 2013 18:47:12 GMT]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Transfer-Encoding]=[chunked]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[Location]=[http://adc2110491.us.oracle.com:4443/test/Calendar/]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs from WLS:[X-Powered-By]=[Servlet/2.5 JSP/2.1]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> parsed all headers OK
    Tue Apr  9 11:47:12 2013 <1009513655332321> done with sendRequest
    Tue Apr  9 11:47:12 2013 <1009513655332321> sendResponse() : r->status = '302'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to client (add):[Date]=[Tue, 09 Apr 2013 18:47:12 GMT]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to client (add):[Location]=[http://adc2110491.us.oracle.com:4443/test/Calendar/]+
    +Tue Apr  9 11:47:12 2013 <1009513655332321> Hdrs to client (add):[X-Powered-By]=[Servlet/2.5 JSP/2.1]+
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 3 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=3 toRead=4093
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=5 toRead=4091
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 1 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 297 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 3 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=3 toRead=4093
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=5 toRead=4091
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 1 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill(): first=0 last=0 toRead=4096
    Tue Apr  9 11:47:12 2013 <1009513655332321> Reader::fill() Remaining data length 2 is less than buffer size
    Tue Apr  9 11:47:12 2013 <1009513655332321> calling closeConn() with non-null URL* at 3882
    Tue Apr  9 11:47:12 2013 <1009513655332321> canRecycle: conn=1 status=302 isKA=1 clen=-1 isCTE=1
    Tue Apr  9 11:47:12 2013 <1009513655332321> closeConn: pooling for '10.232.130.87/12004'
    Tue Apr  9 11:47:12 2013 <1009513655332321> closeConn: pooling '0'
    +Tue Apr  9 11:47:12 2013 <1009513655332321> request [Calendar] processed successfully..................+

  • Passing Parameters between Portal and Forms 6i

    Hi,I'm new in Oracle Portal and I have a problem. I have a Portal's report and I need to pass a value from this report to Form 6i to perform the query. This form is a porlet including in the Portal page.
    please help me

    Hi, Im trying to do that you said, but doesn't work :-(, my code is something like this, in the portlet.xml(jboss portal 2.6) :
    <portlet-preferences>
    <preference>
    <name>stockSymbols</name>
    <value>BEAS</value>
    </preference>
    <preference>
    <name>refreshInterval</name>
    <value>600</value>
    </preference>
    </portlet-preferences>
    in the consumer(bea wlp 8.1 sp5), i dont see any portlet preference in the palette window, im doing something wrong?...thanks for your help.

  • Question about Load balancing with IISPROXY

              Hi,
              We are running WLS 5.1.0 SP5 on NT 4.0 SP6. We are not using clustering.
              We are able to round robin between multiple instances of the WLS successfully.
              Question: If one of the instances of WLS goes down, is there any way to configure
              the plugin to take it out of the loop automatically (without using clustering)?
              Thanks,
              Anil.
              

    This is not the syntax. Syntax is just this:
              MaxSkips=something.
              eg: MaxSkips=25
              The doc says:
              5:10:1000 for min:default:max
              By which we mean that default value is 10, max is 1000 and min is 5. I guess the
              docs are confusing about the syntax here. We will correct them.
              --Vinod.
              Anil Kommareddi wrote:
              > Vinod,
              > I could not find any documentation on the MaxSkips parameter except in the Service Pack
              > docs. The syntax is MaxSkips=min:default:max.
              >
              > how do the min and max parameters work?
              >
              > Vinod Mehra wrote:
              >
              > > Even if the servers in the WebLogicCluster list are non clustered you WILL be
              > > able to do load balancing. But the problem is if the servers go down the plugin
              > > will not remove them. But it not that bad. If an connection attempt fails the
              > > server is marked as bad and will be skipped for the next MaxSkips (default=10)
              > > cycles of load balancing. MaxSkips parameter is configurable for IISProxy
              > > (SP4 onwards, I think).
              > >
              > > -Vinod.
              > >
              > > Prasad Peddada wrote:
              > >
              > > > I believe there won't be any load balancing unless you use servers in a cluster. As
              > > > an alternative you can use hardware load balancers directly in a situation like this.
              > > >
              > > > Anil Kommareddi wrote:
              > > >
              > > > > Hi,
              > > > >
              > > > > We are running WLS 5.1.0 SP5 on NT 4.0 SP6. We are not using clustering.
              > > > > We are able to round robin between multiple instances of the WLS successfully.
              > > > >
              > > > > Question: If one of the instances of WLS goes down, is there any way to configure
              > > > > the plugin to take it out of the loop automatically (without using clustering)?
              > > > >
              > > > > Thanks,
              > > > > Anil.
              > > >
              > > > --
              > > > Cheers
              > > >
              > > > - Prasad
              

  • Portlets not displayed first time until refresh

    Hi,
    I have a strange bug when using WLP 8.1 sp5.
    When I go on a page for the first time, my page (Portal Page) is bad displayed : its title is diplayed but the inner portlet is not displayed.
    When I look at the source, I can see that the Portal rendering stopped at the page level (no HTML for the skeleton of portlets).
    If I refresh the page (just F5 or refresh button), the portlet "magically" appears.
    Do you have any idea ?

    For the both .portal and desktop
    It happens after login.
    I use a backing file with handlePostBackData method to check the login action.
    If everything is ok, I redirect the user to the private space.
    On this space, another backing file check that the user is authorized to access to the private space (so it checks for destroyed sessions, url hacks, ...).
    I can put the code of the backing files if you need it.
    After some tests, it seems to be a problem in relation with the page label. If the page label is a book , the portlet don't dipslay, but if the label is the full way to the page, it appears immediately.

  • Encoding in WSRP message - MarkupRequestState

    Hi all!
    I have successfully executed the different samples given at this location.
    http://edocs.bea.com/wlp/docs81/wsrp/custxfer.html
    I was especially intrested in testing the sample which allows the Consumer to send some arbitrary data to the Producer when a portlet is being refreshed.
    (com.bea.wsrp.ext.holders.MarkupRequestState)
    This all works behind the scene when the Producer and Consumer is WLS / WLP. However, I have a scenario where I have a .Net Producer and the WLP acts as a WSRP portlet Consumer.
    Then, I send the data to the .Net Producer and using the SOAP message monitor supplied by WLP I see the following.
    (I.e. an extract that represents the two attributes that I have put in the request using the MarkupRequestState.)
    <urn1:MarkupRequestState xmlns:urn1="urn:bea:wsrp:ext:v1:types">
    <urn1:state>rO0ABXNyACpjb20uYmVhLndzcnAuZXh0LmhvbGRlcnMuU2ltcGxlU3RhdGVIb2xkZXKnP+aldExARAIAAUwABGRhdGF0ABNMamF2YS91dGlsL0hhc2hNYXA7eHBzcgARamF2YS51dGlsLkhhc2hNYXAFB9rBwxZg0QMAAkYACmxvYWRGYWN0b3JJAAl0aHJlc2hvbGR4cD9AAAAAAAAMdwgAAAAQAAAAAnQAHnNlLnNsbC5iYXRwb3J0YWwud3NycC51c2VybmFtZXQABGFwYW50ACNzZS5zbGwuYmF0cG9ydGFsLndzcnAuaGFuZGljYXBzdHlsZXQAA2JpZ3g=</urn1:state>
    </urn1:MarkupRequestState>
    As you all can see the data enclosed with the <urn1:state> tag is encoded.
    I have tried to Base64 decode the string, but that does not give me a clean string whithout control characters so I suppose that the decoding must be done using a different algorithm.
    The question are:
    1)
    What encoding is used?
    2)
    How does the .Net Producer decode the data enclosed with the <urn1:state> tag?
    Thanks in advance!
    Best regards/ Thomas Lindbom :-)

    I have got it to work with Apache Soap. Much simpler to extract the reply body from the soap message too.
    Bill

  • Problem while starting Sample POrtal Server

    Hi,
    I have installed Web Logic Platform 8.1 from the bea site. When I try to run the
    Example portal server, it throws following error:
    <23-Jul-2003 12:52:25 o'clock BST> <Error> <JDBC> <BEA-001150> <Connection Pool
    "cgPool" deployment failed with the following error: 0:Could not create pool connection.
    The DBMS driver exception was: SQL-server rejected establishment of SQL-connection.
    Pointbase Server may not be running on localhost at port 9093..> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "p13n_dataSyncDataSource"
    deployment failed with the following error: DataSource(p13n.dataSyncDataSource)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "p13n_sequencerDataSource"
    deployment failed with the following error: DataSource(p13n.sequencerDataSource)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "p13n_trackingDataSource"
    deployment failed with the following error: DataSource(p13n.trackingDataSource)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "ebusinessPool"
    deployment failed with the following error: DataSource(weblogic.jdbc.jts.ebusinessPool)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "cgDataSource"
    deployment failed with the following error: DataSource(cgDataSource) can't be
    created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003 12:52:25
    o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "contentDataSource" deployment
    failed with the following error: DataSource(contentDataSource) can't be created
    with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003 12:52:25
    o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "commercePool" deployment
    failed with the following error: DataSource(weblogic.jdbc.jts.commercePool) can't
    be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "portalFrameworkPool"
    deployment failed with the following error: DataSource(portalFrameworkPool) can't
    be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Alert> <JMS> <BEA-040052> <JMSServer "cgJMSServer" store
    failed to open java.io.IOException: JMS JDBC store, connection pool = <cgPool>,
    prefix = <weblogic>: connection pool does not exist. java.io.IOException: JMS
    JDBC store, connection pool = <cgPool>, prefix = <weblogic>: connection pool does
    not exist at weblogic.jms.store.JDBCIOStream.throwIOException(JDBCIOStream.java:359)
    Does any body know the cause of the problem.
    Please help?
    Thanks Aydan

    If you haven't solved this yet, it looks as if your DB server is not
    running, hence any elements that rely on a db server, such as connection
    pools and elements that use those pools such as datasources are not
    going to start correctly.
    It seems that properties are not properly assigned in the
    startPointBase.cmd script on Windows NT (haven't verified behaviour on
    2000 although I know it works out of the box on Solaris). I'd suggest
    starting the pointbase server manually with the correct pointbase.ini
    file and then starting WLS/WLP afterwards.
    Aydan wrote:
    Hi,
    I have installed Web Logic Platform 8.1 from the bea site. When I try to run the
    Example portal server, it throws following error:
    <23-Jul-2003 12:52:25 o'clock BST> <Error> <JDBC> <BEA-001150> <Connection Pool
    "cgPool" deployment failed with the following error: 0:Could not create pool connection.
    The DBMS driver exception was: SQL-server rejected establishment of SQL-connection.
    Pointbase Server may not be running on localhost at port 9093..> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "p13n_dataSyncDataSource"
    deployment failed with the following error: DataSource(p13n.dataSyncDataSource)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "p13n_sequencerDataSource"
    deployment failed with the following error: DataSource(p13n.sequencerDataSource)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "p13n_trackingDataSource"
    deployment failed with the following error: DataSource(p13n.trackingDataSource)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "ebusinessPool"
    deployment failed with the following error: DataSource(weblogic.jdbc.jts.ebusinessPool)
    can't be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "cgDataSource"
    deployment failed with the following error: DataSource(cgDataSource) can't be
    created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003 12:52:25
    o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "contentDataSource" deployment
    failed with the following error: DataSource(contentDataSource) can't be created
    with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003 12:52:25
    o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "commercePool" deployment
    failed with the following error: DataSource(weblogic.jdbc.jts.commercePool) can't
    be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Error> <JDBC> <BEA-001151> <Data Source "portalFrameworkPool"
    deployment failed with the following error: DataSource(portalFrameworkPool) can't
    be created with non-existent Pool (connection or multi) (cgPool).> <23-Jul-2003
    12:52:25 o'clock BST> <Alert> <JMS> <BEA-040052> <JMSServer "cgJMSServer" store
    failed to open java.io.IOException: JMS JDBC store, connection pool = <cgPool>,
    prefix = <weblogic>: connection pool does not exist. java.io.IOException: JMS
    JDBC store, connection pool = <cgPool>, prefix = <weblogic>: connection pool does
    not exist at weblogic.jms.store.JDBCIOStream.throwIOException(JDBCIOStream.java:359)
    Does any body know the cause of the problem.
    Please help?
    Thanks Aydan

  • WebLogic Issue: Unable to download files more than 32 KB

    Hi all,
    When i am trying to download files which are having size more than 32 KB, i am getting the error " [WRITE_ERROR_TO_SERVER] (POST timed out to the server <IPAddress>:7006) raised at line 152 of ap_proxy.cpp
    Uploading is working fine and able to download files having size less thann 32 KB.
    The following is an excerpt from plug-in log file. I dont see any errors in the web logic logs.
    Tue Oct 09 12:52:50 2012 <241281349767069126> Remote Host <IPAddress> Remote Port 7006
    Tue Oct 09 12:52:50 2012 <241281349767069126> general list: created a new connection to '<IPAddress>'/7006 for '/metricstream/systemi/NewdownloadSingle?db_value=IIS7_WL10x_EGRCP6.x_ConfigurationGuide.pdf%23ms_attach_delimiter%23HZQS%2FVAL%2FBPCS%2F35606020&id=103771&proc=-1&attach_seq=28&id=103771&proc=-1&attach_seq=28', Local port:3525
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Host]=[<IPAddress>]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Connection]=[keep-alive]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Content-Length]=[113003]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Cache-Control]=[max-age=0]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Origin]=[http://s<IPAddress>]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[User-Agent]=[Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.92 Safari/537.4]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Content-Type]=[multipart/form-data; boundary=----WebKitFormBoundary9MAb9LW1aD3dPAXm]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Referer]=[http://simpro344/metricstream/systemi/Fastform?x_v29=157749&emd=4&id=103771&bare=Dmsmanagedocuments&x_v24=MSI_B1_Emp_1&inFlag=Dmsdocsearch&]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Accept-Encoding]=[gzip,deflate,sdch]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Accept-Language]=[en-US,en;q=0.8]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Accept-Charset]=[ISO-8859-1,utf-8;q=0.7,*;q=0.3]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs from clnt:[Cookie]=[MetricStream=bG9naW49am9obi5sb3Nla2UmZW50ZXJwcmlzZT1NZXRyaWNTdHJlYW0=; ADMINCONSOLESESSION=B6J3QzDK2NLkYj7HhqkpLb5JcVxPFDpjKWkjVnzhthyYZQnJH1p7!-1091718089; JSESSIONID=g0LDQzPLm6y2SWlGpvqp3mnJy2QSyGBT5p1xvy0SqVpq5gBjPWQQ!-1295364380; ys-gadgetpanel1=o%3Acollapsed%3Db%253A1; ys-databrowserpanel1=o%3Acollapsed%3Db%253A1]
    Tue Oct 09 12:52:50 2012 <241281349767069126> URL::sendHeaders(): meth='POST' file='/metricstream/systemi/NewdownloadSingle?db_value=IIS7_WL10x_EGRCP6.x_ConfigurationGuide.pdf%23ms_attach_delimiter%23HZQS%2FVAL%2FBPCS%2F35606020&id=103771&proc=-1&attach_seq=28&id=103771&proc=-1&attach_seq=28' protocol='HTTP/1.1'
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Host]=<IPAddress>]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Content-Length]=[113003]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Cache-Control]=[max-age=0]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Origin]=[http://<IPAddress>]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[User-Agent]=[Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.92 Safari/537.4]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Content-Type]=[multipart/form-data; boundary=----WebKitFormBoundary9MAb9LW1aD3dPAXm]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Accept]=[text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Referer]=[http://simpro344/metricstream/systemi/Fastform?x_v29=157749&emd=4&id=103771&bare=Dmsmanagedocuments&x_v24=MSI_B1_Emp_1&inFlag=Dmsdocsearch&]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Accept-Encoding]=[gzip,deflate,sdch]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Accept-Language]=[en-US,en;q=0.8]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Accept-Charset]=[ISO-8859-1,utf-8;q=0.7,*;q=0.3]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Cookie]=[MetricStream=bG9naW49am9obi5sb3Nla2UmZW50ZXJwcmlzZT1NZXRyaWNTdHJlYW0=; ADMINCONSOLESESSION=B6J3QzDK2NLkYj7HhqkpLb5JcVxPFDpjKWkjVnzhthyYZQnJH1p7!-1091718089; JSESSIONID=g0LDQzPLm6y2SWlGpvqp3mnJy2QSyGBT5p1xvy0SqVpq5gBjPWQQ!-1295364380; ys-gadgetpanel1=o%3Acollapsed%3Db%253A1; ys-databrowserpanel1=o%3Acollapsed%3Db%253A1]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Connection]=[Keep-Alive]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[WL-Proxy-SSL]=[false]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[WL-Proxy-Client-IP]=[<IPAddress>]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[Proxy-Client-IP]=[<IPAddress>]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[X-Forwarded-For]=[<IPAddress>]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[X-WebLogic-KeepAliveSecs]=[30]
    Tue Oct 09 12:52:50 2012 <241281349767069126> Hdrs to WLS:[X-WebLogic-Force-JVMID]=[-1295364380]
    Tue Oct 09 12:53:50 2012 <241281349767069126> URL->write() retValue = [-1], Last error = [10054]
    Tue Oct 09 12:53:50 2012 <241281349767069126> POST timed out to the server <IPAddress>:7006
    Tue Oct 09 12:53:50 2012 <241281349767069126> *******Exception type [WRITE_ERROR_TO_SERVER] (POST timed out to the server <IPAddress>:7006
    ) raised at line 152 of ap_proxy.cpp
    Tue Oct 09 12:53:50 2012 <241281349767069126> error sending headers or Post Data to WebLogic, sys err#: [0] sys errmsg [No error]
    Tue Oct 09 12:53:50 2012 <241281349767069126> Marking <IPAddress>:7006 as bad
    Tue Oct 09 12:53:50 2012 <241281349767069126> got exception in sendRequest phase: WRITE_ERROR_TO_SERVER [os error=10054,  line 152 of ap_proxy.cpp]: POST timed out to the server <IPAddress>:7006
    at line 2994
    Tue Oct 09 12:53:50 2012 <241281349767069126> Failing over after WRITE_ERROR_TO_SERVER exception in sendRequest()
    Tue Oct 09 12:53:50 2012 <241281349767069126> request [metricstream/systemi/NewdownloadSingle?db_value=IIS7_WL10x_EGRCP6.x_ConfigurationGuide.pdf%23ms_attach_delimiter%23HZQS%2FVAL%2FBPCS%2F35606020&id=103771&proc=-1&attach_seq=28&id=103771&proc=-1&attach_seq=28] did NOT process sucessfully..................
    Can some one please help me resolving this issue?
    Thanks in advance.
    Edited by: 970923 on Nov 15, 2012 5:41 PM

    Hi,
    Try to increase chunk size once and check you have issue still persist or not.
    set JAVA_PROPERTIES=%JAVA_PROPERTIES% -Dweblogic.Chunksize=8192 -Dweblogic.utils.io.chunkpoolsize=8192
    Regards,
    Kal

  • br tag on mobile safari

    Just noticed that </br> doesn't work on mobile Safari, although it does on other browsers including desktop Safari.
    However <br /> does work.  I guess it's just stricter XHTML compliance.

    For Apple to see your report, use
    http://www.apple.com/feedback

Maybe you are looking for

  • Client object model version clarification

    All, A bit of a daft question but, on one of our development systems we have a newer version of the client object model installed and we're not sure where it came from. All of our other dev systems have two versions installed as follows: Client Objec

  • Need to automate Recruitmenmt Process

    Experts, I need to automate the recruitment process in portal using Webdynpro ABAP and WORKFLOW. Can anyone give me an idea like how should i start with. Am bit confused since this project includes HR ABAP, webdynpro and workflow. And am new to all t

  • Employee Expense Voucher

    Hi Everyone, I have an issue with where I have to possibly eliminate the current manual spreadsheet entry process. Currently employee expense vouchers are submitted on spreadsheet  'Employee Expense Voucher' for approvals and ultimately entered into

  • Business catalyst ecommerce layout

    Hi guys, is there any easy way of setting up a basic ecommorce layout that will would match with the rest of the muse website The BC ecommerce seems really powerful but it gets a little complicated when it comes to shop lay out. I am a bit of a rooki

  • Blu-ray Error: "not enough fre storage". Code:"25", Note "Not enough space on media"

    I have a project a  Encore CS6 V6.0.1.013 for MAC. I tryng export do Blu-ray Disc, but ireceved this error message Blu-ray Error: "not enough fre storage". Code:"25", Note "Not enough space on media" But at "Disc Info" i have 14.71mb free