Forwarding a request with a EFFECT

can anyone help me on how to forward a request to a jsp from a servlet. I wanna the jsp file name to be seen on the web address bar and not the servlet name.
this is how i do the forwarding inside the servlet
request.setAttribute("jCustomer", custBean);
request.getRequestDispatcher("CreateAccount.jsp").forward(request, response);and this will appears on my address bar"http://localhost:8000/createAccountApp/JunYong'sServlet"
but can i have something like this "http://localhost:8000/createAccountApp/CreateAccount.jsp"
to make things clearly, when i clicks on Post New Question, i will be brought to this webaddress
"http://forum.java.sun.com/post.jsp" then i put in my queries. After i finsihed writing and clicks on Preview button, I am brought to another webaddress
"http://forum.java.sun.com/preview.jsp". Therefore, I as a user can see clearly where i am brought to and this is the effect i want to achieve.
So anyone want to help me on this?
Thanks sincerely

i tried your method and it works, the jsp name is displayed on the web address. but i think you get me wrong perhaps i didn't elaborate well enough.
1--> In simple words, the client first came to this jsp named "CreateAccount.jsp".
2--> He/she then enters their particulars and later clicks on the submit button when they are done.
3--> This jsp will follws the form action and came to this servlet.
4--> The servlet will do some processing on the data and lastly passed the results back to the client on the same jsp, "CreateAccount.jsp".
5--> Before sending, the servlet will set a javabean as an attribute req.setAttribute("jCustomer", custBean) and forwards it. req.getRequestDispatcher("CreateAccount.jsp").forward(req, res)6--> Back to the jsp, on the lower potion, the results are retrieved and displayed from that same javabean passed by the servlet.
I did use this method as suggested by jackychow "res.sendRedirect("CreateAccount.jsp")". It works as the jsp name are displayed on the web address bar. However, the javabean, "jCustomer" were not set because HttpResponse have no setAttribute() like the HttpRequest. This causes the result not to be displayed on "CreateAccount.jsp".
My ideal scenario is to dispaly the jsp name onto the webaddress bar and to retrieve information from the same javebean set by the servlet. Is is possible for this to be done on the same jsp???? :-]

Similar Messages

  • Forward a request with post data to another webApp

    Hello,
    I have a servlet that recieves data by post. I need to forward that request with the same info it recieves to another webApp in a different EAR
    I know it is possible to forward that request to another servlet in the same webapp, how to do that but to a different webApp in post method (No get method, do no sendRedirect)?
    Thanks.
    Jean-Philippe

    ServletContext otherContext =
    context.getContext("/otherWebApp");
    RequestDispatcher dispatcher =
    otherContext.getRequestDispatcher("/otherServlet");
    dispatcher.forward(request, response);Interesting. If I read this correctly you CAN actually use RequestDispatcher.forward() to redirect a user after they've contacted the web-server? i.e. Using the otherContext will cause the response that the web-server generates to come from /otherWebApp? That's cool...
    Brian

  • Libproxy.so eat out the last past of my request with space in the name

    Hi,
    I used the following 2 configurations:
    1. Solaris: iPlanet Web Server WebLogic 6.1
    2. W2000: IIS WebLogic 6.1
    Both of the web server just work as a gateway. All static and dynamic pages (images, JavaScript file, CSS file) are served by the WebLogic Server. (This sounds a little bit wierd. So we dropped this kind of configuration already.)
    I configured both the Web server to forward all requests with "*/portal/*" to WebLogic server. It works fine except the requests with space inside. For example:
    http://localhost:8080/portal/abc def.html
    (I encode space to when I type it in browser).
    And I got a 404 error. (The file is really there.) And I checked both web server's access log, I saw the request for "abc def.html", but when I checked WebLogic's access log, I saw the request for "abc". So I think Weblogic's proxy eats out the last part of my request: "def.html". Of course, WebLogic server could not find a file called "abc" in that directory.
    And finally, in order to test my observation, I created a file called "abc" in that directory. And then the browser shows the content of the file "abc".
    Does anyone see this kind of problem before? I think this is a bug in weblogic's proxy program.

    Hi.
    Are you seeing this in both configurations (ie both iPlanet and IIS)?
    Does the problem go away entirely when you hit the servers directly (ie iPlanet and IIS aren't involved)?
    Are you running any service packs? You should be using service pack 2. If you are not please upgrade and use the plugin from this latest service pack.
    Regards,
    Michael
    Xin Liu wrote:
    Hi,
    I used the following 2 configurations:
    1. Solaris: iPlanet Web Server WebLogic 6.1
    2. W2000: IIS WebLogic 6.1
    Both of the web server just work as a gateway. All static and dynamic pages (images, JavaScript file, CSS file) are served by the WebLogic Server. (This sounds a little bit wierd. So we dropped this kind of configuration already.)
    I configured both the Web server to forward all requests with "*/portal/*" to WebLogic server. It works fine except the requests with space inside. For example:
    http://localhost:8080/portal/abc def.html
    (I encode space to when I type it in browser).
    And I got a 404 error. (The file is really there.) And I checked both web server's access log, I saw the request for "abc def.html", but when I checked WebLogic's access log, I saw the request for "abc". So I think Weblogic's proxy eats out the last part of my request: "def.html". Of course, WebLogic server could not find a file called "abc" in that directory.
    And finally, in order to test my observation, I created a file called "abc" in that directory. And then the browser shows the content of the file "abc".
    Does anyone see this kind of problem before? I think this is a bug in weblogic's proxy program.--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Forward the request to a window with specific parameters

    page0.asp->page1.jsp
    When the user click submit button in page0.asp, it will post the form
    request to page1.jsp.
    page0.asp and page1.jsp are in separate machines. In page1.jsp, based
    on the parameter
    interfaceName, it will forward to different jsp pages. However, we want
    to forward the request
    to a window with parameter like the following, without the menu bar and
    toolbar.
    The question is how to forward the request to a window like that?
    window.open("test2.jsp",null,
    "height=500,width=500,status=yes,toolbar=no,menubar=no,location=no");
    //page1.jsp
    <%
    String interfaceName = request.getParameter("interfaceName");
    if (interfaceName != null)
    {        if (interfaceName.equalsIgnoreCase("id1"))
    url="/id1.jsp";
    else if (interfaceName.equalsIgnoreCase("id2"))
    url="/id2.jsp";
    else if (interfaceName.equalsIgnoreCase("id3"))
    url="/id3.jsp";
    //etc...
    request.getRequestDispatcher(url).forward(request,response);
    %>
    Please help and advise. thanks!!

    The server cannot decide where to send its response to. It can only send
    it to where the request came from.More specifically... to the server, the browser itself makes the request. Where the browser wants to put the response is entirely up to the browser.
    Unfortunately, you can't really use ECMAScript (JavaScript) after the response is returned to redirect it. I suppose you could copy the DOM contents of the response page into another frame's document or something, but that's just ugly.
    and don't cross-post...

  • Forwarding requests with JServ

    I have written a servlet that I would like to forward a request to a new page after doing some processing. However, I get ClassNotFound/MethodNotFound exceptions from JServ. I checked the documentation and found that JServ only supports the 2.0 Servlet Specification and I figure the RequestDispatcher interfaces I am trying to use are part of the Servlet 2.1 or 2.2 specification. I tried to set up Apache to run Tomcat, but I must have done something wrong in the setup because when I try to start Tomcat/Apache, Apache bails. Is there another way to get around this, so that my JSPs and servlet do what I want them to do. Also, does anyone know what/where mod_ose is and where/how to get it and make it run with Apache.
    Any help will be greatly appreciated.

    Hi you can use Odyssy calasses(cos.jar) to call the Servlet/Jsp from servlet. Thease classes are build on top of Servlet API 2.0. This is just for now. In the upcomming version Apache Jserv comming with servlet API 2.2.
    mod_oes is having Oeacle build servlet engine support fully Servlet API 2.2.

  • Help requested with the background of lighting effects

    I need help creating a light background when rendering with light effects.  I am selecting filter, then render, then lighting effects.  From there I am choosing an omni light to create a blue light shining from above on my project.  The problem I have is that the blue light fades into black or grey.  I need the blue light to disseminate or fade into a white background instead.  I have tried all sorts of options with changing the background in the lighting effects menu to no avail.  I have photoshop CS3.  Any help would be greatly appreciated!
    Jim

    Could you please post a screenshot with the pertinent Panels and dialog visible?

  • Currency translation differences with an effect on earnings

    Product Version: SAP R/3 46.C
    Componente: EC-CS-CSF-E Currency Translation
    In currency translation program of ECCS (tx CX40) the prior year portion of translation differences that affects earnings is posted in current period in the earnings retain item (ER) which according to SAP documentation "Currency translation differences with subsequent consolidations" is correct, however when we run the currency translation on subsequents periods this amount is posted again generating a multiplying of differences on each period.
    In accordance with section u201CBu201D of SAP note 553586, the carryforward item (retain earnings) was assigned to translation key 5, to avoid multiplications of this difference in every execution of currency translation for current period. This correction was applied successfully, however the problem is now generated when we run the currency translation in every subsequent period.
    SAP notes 582815 and 553586 was applied succesfully.
    We also verified SAP note 1045402 changing the translation key 5 to 1, for balance carryforward item (retained earnings) this avoids the difference effect on subsequents periods, but  generates a translation differential effect undesired on this item, since this is a historical item that not must be altered by currency translation.
    Additionally we read SAP note 509509 and we think that this issue corresponds whit symptom 2 of that note.
    Step by Step:
    Transaction: CX40
    Setting of Translation SET in translation method:
    1.- MARS-GAP-Monetary:
    1.1.- Items of balance sheet
    1.2.- Translation Key 1
    1.3.-  Item for differences: income statement item with an effect on earnings
    2.- MARS-GAP-NonMonetary
    2.1.- Items of balance sheet
    2.2.- Translation Key 6
    2.3.-  Item for differences: income statement item with an effect on earnings
    3.-MARS-MOR-Monetary
    3.1.- Items of P&L
    3.2.- Translation Key 5
    3.3.-  Item for differences: income statement item without an effect on earnings
    4.-MARS-MOR-NonMonetary
    4.1.- Items of P&L
    4.2.- Translation Key 6
    4.3.-  Item for differences: income statement item without an effect on earnings
    5.- MARS-HIST
    5.1.- Items of balance sheet
    5.2.- Translation Key 6
    5.3.-  Item for differences: Balance sheet item without an effect on earnings
    6.- ANI-BS-FX
    6.1.- Items of differences SET MARS-HIST and Carryforward Item for special items in transaction CXD3, the same item for the balance carryforward (retained earnings)
    6.2.- Translation Key 5
    6.3.-  Item for differences: Balance sheet item without an effect on earnings (the same item for the SET MARS-HIST)
    7.- ANI-BS
    7.1.- The special balance sheet item in Transaction CXD3
    7.2.- Translation Key 5
    7.3.-  Item for differences, the same item
    8.- ANI-IS
    8.1.- The special income statement item in Transaction CXD3
    8.2.- Translation Key 5
    8.3.-  Item for differences, The same item
    Note:
    1 .- According to the point A of the note  553586 was included the FS Item 484051011(difference item for SET MARS-HIST)  in the conversion SET ANI-BS-FX
    2 .- According to Section B of the note 553586 was included the account for carried forward  481000001 the special accounts set up in the transaction CXD3 in the conversion SET ANI-BS-FX
    3 .- According to Section C of  note 553586 are included special accounts set up in the transaction CXD3 390000 and 251200, in the conversion SET ANI-IS and ANI-BS respectively.
    When run the currency translation in the new year 1-2011, the prior year portion of translation differences that affects earnings is posted in current period a credit to earnings retain and debit to account difference in SET for this account. This amount is same on special balance sheet item 251200, in tx CXD3, also found on the statistical FS item.
    Then in subsequent periods, 2 - 2011 it posting another credit to earnings retain and debit to account difference in SET for this account, generating a multiplying of differences on each period, even though the difference for this account (ER) in the log of the translation currency is equal to the difference posted to the previous period, show this in transaction CX34 for items of translation (1) for this account until 1-2011.
    Edited by: Ana Brito on Jul 25, 2010 8:10 PM

    Hi,
    just a information how I did a workaround about this:
    The opening (movement type 100) of the balance sheet item "differences of currency translation" is customized with "don't change...".
    Every increase  to "differences  of currency translation" works with e.g. movement type 120 and will be carried forward to 100.
    Maybe this is a scenario you can use...
    BR

  • Error when creating a travel request with Advance amount

    Hi Gurus,
    When I create a travel request with an Advance amount and try to save the same, the system throws up an error msg : "Trip country does not exist in the system (T005).
    However, it allows me to create the travel request without this error if i dont enter any advance amount in the travel request.
    I checked the tables V_T706L and V_T706O and found my trip county to be existing.
    Regards
    Prakash

    Hello Prakash,
    The following are the prerequisites for transferring trip costs to accounting.  In other words when you try to create and save a travel request with advance you are involving accounting entries and therefore the following needed to be checked:
    1.Travel Management and Accounting are both at Release 4.5A. If at least one of the systems
    has a release level lower than 4.5A, follow the instructions in Customizing for ALE.
    2. For payment to be effected, vendor accounts must exist in Accounting for the respective
    personnel numbers.
    3. The following Accounting tables must be replicated in the Travel Management System using
    Customizing transports:
      Company Codes (T001)
      Countries (T005)
      Input Tax Codes (T007A, T007S)
      Document Types (T003)
    4. The transfer of settlement results
    More relevant in your case would be the point 3. Countries(T005) not defined in TM.
    Hope the above provided you more information.
    Rgds
    CONMJI

  • How to get JSP to forward a request over SSL?

    I'm new to JSP and servlets, although I've been working with Java for a long time. I'm trying to write a simple user registration and login system to teach myself JSP. I would like to set things up so that the user is able to login securely over https. I'm not sure how to do that, though. There seems to be no place in the relative URLs to indicate that you should be forwarding a request over SSL. I've got sample login page below - would anyone know how to modify it so that it happens securely?
    Also, do I need to install a certificate on my web server?
    index.jsp
    <html>
        <body>
            <h1>Index</h1>
            <a href="login.jsp">Login</a>
        </body>
    </html>login.jsp
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <body>
            <h1>Login</h1>
            <jsp:useBean id="userLogin"
                         class="com.kitfox.webrpg.UserLogin"/>
            <jsp:setProperty name="userLogin"
                             property="*"/>
            <%if (userLogin.isValid()) {%>
            <jsp:useBean id="userId"
                         class="com.kitfox.webrpg.UserIdent"
                         scope="session"/>
            <jsp:setProperty name="userId" property="*"/>
            <jsp:forward page="index.jsp"/>
            <%} else {%>
            <form action="login.jsp" method="post">
                <fieldset>
                    <legend>Enter login information</legend>
                    <label for="login">Login</label>
                    <input type="text" name="login" value="${userLogin.login}"/> <br/>
                    <label for="password">Password</label>
                    <input type="password" name="password"/> <br/>
                    <input type="submit" value="submit">
                </fieldset>
            </form>
            <%}%>
        </body>
    </html>

    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Secure Login</web-resource-name>
    <url-pattern>/login.jsp</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    This code is used basically for different authentication type . Forward to any jsp under any layer works with <jsp:forward> or else try with request.getRequestDispatcher(" url (can be absolute or accurate path)").forward(request,response);
    Edited by: user8483670 on Mar 13, 2011 9:46 PM

  • OHS forwarding page request to WebLogic

    I have WebLogic v10.3.3.0 installed and up and running with Clustering. It has two managed servers, and each managed server is set up with SSL. I have an application deployed to the two managed servers and can bring up the application if typing in the URL to the application server directly via URLs like:
    https://nn.nn.nnn.nnn:7003/englink/login.seam (non-ssl on MS1)
    https://nn.nn.nnn.nnn:7004/englink/login.seam (ssl on MS1)
    https://nn.nn.nnn.nnn:7005/englink/login.seam (non-ssl on MS2)
    https://nn.nn.nnn.nnn:7006/englink/login.seam (ssl on MS2)
    I also have OHS installed and up and running. I am trying to get it to redirect to the WebLogic server. Right now I get this error in the mod_wl_ohs.log on the Oracle HTTP server log:
    Sun May 13 23:49:09 2012 <2667113369550681> INFO: Closing SSL context
    Sun May 13 23:49:09 2012 <2671213369673416> Sleeping for 2 seconds
    Sun May 13 23:49:11 2012 <2671213369673416> attempt #5 out of a max of 5
    Sun May 13 23:49:11 2012 <2671213369673416> Trying a pooled connection for 'nn.nn.nnn.nnn/7002/7002'
    Sun May 13 23:49:11 2012 <2671213369673416> getPooledConn: found a host and port/securePort match
    Sun May 13 23:49:11 2012 <2671213369673416> getPooledConn: No more connections in the pool for Host[nn.nn.nnn.nnn] Port[7002] SecurePort[7002]
    Sun May 13 23:49:11 2012 <2671213369673416> general list: trying connect to 'nn.nn.nnn.nnn'/7002/7002 at line 3188 for '/console'
    Sun May 13 23:49:11 2012 <2671213369673416> Connect failed: 111
    Sun May 13 23:49:11 2012 <2671213369673416> *******Exception type [NO_RESOURCES] (apr_socket_connect call failed ) raised at line 1918 of ../nsapi/URL.cpp
    Another thing I want to point out is if I modify the mod_wl_ohs.conf file to turn off WLProxySSL to OFF and SecureProxy to OFF and change all the secure ports
    to the unsecure ports, then restart all the OHS processes that the OHS server forwards the request just fine when I want to hit the application by HTTP...
    Edited by: we**** on May 14, 2012 10:23 AM
    Edited by: we**** on May 14, 2012 10:26 AM

    we**** wrote:
    Sun May 13 23:49:11 2012 <2671213369673416> Trying a pooled connection for 'nn.nn.nnn.nnn/7002/7002'Re-check your config. It appears you have mis-configured the host and port entries for your weblogic server. The port number shouldn't be repeated.

  • I have a problem with the effect gallery and the saving libraries in Illustrator CS6

    Hi everybody
    I have a problem with the effect gallery and the saving libraries in Illustrator
    1. When you go to to effects > effect Gallery the the sketch filter always is black and white. Is this normal? In Photoshop you can set your background and foreground and the sketch effects takes those colors. Is there any way to do this in Illustrator? I have tried changing the colour of the fill and stroke but nothing...
    2. In the same area as before effects > effect Gallery .... In Photoshop you can add multiple filters with the create new button. Always is off is there anyway to make it available? or the only way is to by creating several individual ones and manage then in the appearance panel ...
    3. I saved a brush library and now it appears in the user defined area so I can get it in any document, that is good but any one knows how to delete a user undefined library?
    Many thanks in advance for the help .... I look forward for the reply =)

    I see that it is six months ago that I first posted this. Nothing has changed. When I use affixa to create a message with an attachment from my gmail account in firefox, the message is created in drafts, but the gmail window is closed and I have to re-open it. Not critical, but annoying.
    Now there is a plug-in on the affixa site that is supposed to be designed for Firefox, and which affixa support claims should take care of this. And I've downloaded it twice. When you download it and open it, it says that it will be installed when Firefox restarts, and gives you a button to restart Firefox. But after you click that button and firefox disappears and re-appears, the affixa plug-in is NOT in the plugin list.
    Please, somebody, HELP.

  • 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.

  • Help requested with White Balance

    This may come as a surprise to many, but here I am requesting your help, instead of giving it.
    I have filled out a feature request with the following content, already some time ago:
    Would it not be nice to be able to extract the WB settings in K  from the metadata and be able in post to change it to what you should have done during the shoot.
    Say your WB is set to 5600 K, you can extract that from the metadata and with the White Balance effect you can enter a desired setting of say 6100 K. During the shoot you can do that with the Canon XF series, but if you have forgotten to use a warm card instead of the white balance card, this would be a great effect to have. Or in the situation where you simply want a shot to be slightly cooler or warmer, this would be a great feature.
    Interface similar to the scale slider and fully keyframeable. The program monitor should reflect changes in color temperature immediately. Simple, easy to understand, like using a set of Warm Cards after the shoot.
    Retrieval of the color temperatures should not be difficult. It is contained in the metadata:
    It works both with AWB and manual for the XF series. If the camera does not record these data, the effect should be greyed out.
    I request your help to get this feature implemented, since it is pretty simple to implement, is a great help to have when doing multicam work, to fine tune different cameras or to change the atmosphere of a shot. It is far easier than the color correction effects we already have.
    If you agree with me, please fill out a similar feature request. The more requests made, the greater the chance of it being implemented.
    See Feature Request Form

    Harm, I've seen instances of multi-cam shoot cameras that were identical models, using a clone of the settings which still resulted in differences in color.  I've seen this blamed on the chips and the chip manufacturing process.  I've also seen multicam footage from analog cameras that were supposedly balanced before shooting that resulted in shifts.  And then, you have a situation where the atmospherics can alter the color, such as when one camera is close to the action, and the distant camera is shooting through fog or haze that has light shooting through it.
    So again, while you can get in the ballpark with certain regimes, when it comes time to finish, you have to trust your eyes.
    So, for my situation, it's not something that rises to the level of something I'd use enough to warrant a feature request.
    My biggest issue today is that I'd love to see Pr offering bottom-up rendering, the way Avid MC offers it with its Render All option vs. Smart Rendering, which is top down.  I don't like that I have to re-render entire sequences just because I made a little change to an upper layer clip.  That, to me, warrants a concerted campaign or pitchfork mob.
    But, I'll make a pact with you.  If you'll request bottom up rendering, I'll request WB metadata support, OK?

  • Forward a request from a filter

    Hi,
    I want to be able to access a page
    www.whatever.com/page.jsp?username=me&content=something
    with the url
    www.whatever.com/user/something
    I am thinking doing it with a filter that parses out 'user' and 'something' in the second url and forward the request to the first url. What's a way to forward a url in a filter, yet the other filters in the web app still executes?
    I have tried using the RequestDispatcher, however after the dispatcher I can not run the other filters or I will get illegleState exception. Any sugguestions? Thanks.

    From SRV.11.2 in the servlet spec:
    SRV.11.2 Specification of Mappings
    In theWeb application deployment descriptor, the following syntax is used to define mappings:
    " A string beginning with a / character and ending with a /* suffix is used for path mapping.
    " A string beginning with a *. prefix is used as an extension mapping.
    " A string containing only the / character indicates the "default" servlet of the application. In this case the servlet path is the request URI minus the context path and the path info is null.
    " All other strings are used for exact matches only.
    Filter mappings work the same way.
    The wildcards do not work the same way that they do in regular expressions.
    What you might want to do is use a mapping of *.do and then use a regular expression within your filter to decide which URL to act on and which to let pass untouched.

  • 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]

Maybe you are looking for

  • Artwork on iPod Nano (3rd Gen)

    Hey everyone, I just got a new iPod nano and when I transfered songs from my computer over to my iPod only some of the artwork appears, does anyone know what the problem is? I even have changed the pictures to no avail.

  • TS2734 how can i see my find my iphone location when the battery died more than 24 hours ago?

    I think i have lost my phone in the house, but i have looked absolutely everywhere. I know the battery has died as last time i had it (3 days ago) it had 5% battery left. Is there a way of seeing the last known location when it was mpre than 24 hours

  • Where is the GPS on the 3G?

    Just got the 3G and do not see any widget/app for GPS! Where is it? We see the Maps, but nothing about GPS. What are we missing???

  • Cisco Finesse - End user and LDAP sync.

    Hello, Does anybody know if it is possible to allow users to access finesse client using LDAP credentials? I haven't been able to find information about it. We have recently implemented one and it has a local database so users have different credenti

  • Fail to create External Application for Lotus Notes portlet (diiop_ior.txt)

    I've downloaded the PDK-January today and I'm trying the Lotus Notes Portlet. I have been following the document located in the PDK directory pdk\pdk\solutions\lotusnotes\installation.html. I encountered problem when I trying the section Publishing t