Not able to go to servlet page..

Hello everyone.
I am a new bee. I was trying to write a very simple sevlet code which takes form data from 1 html page and displays the form field on another page.
My code is something like this in MyEclipse.The Project name is ThreeServlets. The directory structure is
In order to make directory structure clear I am adding some comments which will be after "//" mark.
ThreeServlets // Project directory
+src                                         // source diretory
coreservlets //package coreservlets
ThreeParams.java // servlet
+JRE System Library[JRE] // library files
+J2EE 1.4 Libraries               
+Webroot                            // this contains metainf,webinf and ThreeParamsForm.xml                 
META-INF
WEB-INF // this contains lib and web.xml
lib
web.xml
ThreeParamsForm.html
These are the source code for the ThreeParams.java
package coreservlets;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class ThreeParams extends HttpServlet {
public void doGet(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
String title = "Reading Three Request Parameters";
String docType =
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 " +
"Transitional//EN\">\n";
out.println(docType +
"<HTML>\n" +
"<HEAD><TITLE>" + title + "</TITLE></HEAD>\n" +
"<BODY BGCOLOR=\"#FDF5E6\">\n" +
"<H1 ALIGN=\"CENTER\">" + title + "</H1>\n" +
"<UL>\n" +
" <LI><B>param1</B>: "
+ request.getParameter("param1") + "\n" +
" <LI><B>param2</B>: "
+ request.getParameter("param2") + "\n" +
" <LI><B>param3</B>: "
+ request.getParameter("param3") + "\n" +
"</UL>\n" +
"</BODY></HTML>");
This is the content of file web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<description>This is the description of my J2EE component</description>
<display-name>This is the display name of my J2EE component</display-name>
<servlet-name>ThreeParams</servlet-name>
<servlet-class>coreservlets.ThreeParams</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ThreeParams</servlet-name>
<url-pattern>/servlet/coreservlets.ThreeParams</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>ThreeParamsForm.html</welcome-file>
</welcome-file-list>
</web-app>
and this is the content of
ThreeParamsForm.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ThreeParamsForm.html</title>
</head>
<body>
<h1 align="center">Collecting three parameters</h1>
<form action="/servlet/coreservlets.ThreeParams">
First Paramter: <input type="text" name="param1" size="25"><br>
Second Paramter: <input type="text" name="param2" size="25"><br>
Third Paramter: <input type="text" name="param3" size="25"><br>
<center><input type="submit" value="Submit"></center>
</form>
</body>
</html>

The problem that I am having is when I start the web server I am able to go to the main page.
http://localhost:8080/ThreeServlets/
but when I click submit button it passed the parameters to the URL which becomes
http://localhost:8080/servlet/coreservlets.ThreeParams?param1=fjdskj&param2=dlds&param3=jdsj
but it is not able to display the page which displays the parameter.Instead it gives the IE pages which says
THE PAGE CANNOT BE DISPLAYED.
When I click in the view source of the page which should show the parameter it shows the following html code <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<style>
a:link               {font:8pt/11pt verdana; color:red}
a:visited          {font:8pt/11pt verdana; color:#4e4e4e}
</style>
<meta HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252">
<title>HTTP 400 - Bad Request</title>
</head>
<script>
function Homepage(){
// in real bits, urls get returned to our script like this:
// res://shdocvw.dll/http_404.htm#http://www.DocURL.com/bar.htm
    //For testing use
    //DocURL = "res://shdocvw.dll/http_404.htm#https://www.microsoft.com/bar.htm"
    DocURL=document.location.href;
    //this is where the http or https will be, as found by searching for :// but skipping the res://
    protocolIndex=DocURL.indexOf("://", 4);
    //this finds the ending slash for the domain server
    serverIndex=DocURL.indexOf("/", protocolIndex + 3);
    //for the href, we need a valid URL to the domain. We search for the # symbol to find the begining
    //of the true URL, and add 1 to skip it - this is the BeginURL value. We use serverIndex as the end marker.
    //urlresult=DocURL.substring(protocolIndex - 4,serverIndex);
    BeginURL=DocURL.indexOf("#",1) + 1;
    urlresult=DocURL.substring(BeginURL, serverIndex);
    if (protocolIndex - BeginURL > 7)
        urlresult=""
    //for display, we need to skip after http://, and go to the next slash
    displayresult=DocURL.substring(protocolIndex + 3, serverIndex);
    var aElement = document.createElement("A");
    aElement.innerText = displayresult;
    aElement.href = urlresult;
    homepageContainer.appendChild(aElement);
function doSearch()
    saOC.NavigateToDefaultSearch();
function initPage()
    document.body.insertAdjacentHTML("afterBegin","<object id=saOC CLASSID='clsid:B45FF030-4447-11D2-85DE-00C04FA35C89' HEIGHT=0 width=0></object>");
    Homepage();
</script>
<body bgColor="white" onload="initPage()">
<table width="400" cellpadding="3" cellspacing="5">
  <tr>
    <td id="tableProps" valign="top" align="left"><img id="pagerrorImg" SRC="pagerror.gif"
    width="25" height="33"></td>
    <td id="tableProps2" align="left" valign="middle" width="360"><h1 id="term1"
    style="COLOR: black; FONT: 13pt/15pt verdana"><span id="pageNotFound">The page cannot be found</span></h1>
    </td>
  </tr>
  <tr>
    <td id="tablePropsWidth" width="400" colspan="2"><font id="LID1"
    style="COLOR: black; FONT: 8pt/11pt verdana">The page you are looking for might have been
    removed, had its name changed, or is temporarily unavailable.</font></td>
  </tr>
  <tr>
    <td id="tablePropsWidth" width="400" colspan="2"><font id="LID2"
    style="COLOR: black; FONT: 8pt/11pt verdana"><hr color="#C0C0C0" noshade>
    <p id="LID3">Please try the following:</p><ul>
      <li ID="list1">If you typed the page address in the Address bar, make sure that it is
        spelled correctly.<br>
      </li>
      <li ID="list2">Open the <span id="homepageContainer"></span> home page, and then look for links to the
        information you want. </li>
           <li id="list3">Click the
           <a href="javascript:history.back(1)">
           <img valign=bottom border=0 src="back.gif"> Back</a> button to try another link. </li>
      <li ID="list4">Click <a href="javascript:doSearch()"><img border=0 src="search.gif" width="16" height="16" alt="search.gif (114 bytes)" align="center"> Search</a> to look for information on the Internet. </li>
    </ul>
    <p><br>
    </p>
    <h2 ID="errortext" style="COLOR: black; FONT: 8pt/11pt verdana">HTTP 400 - Bad Request<br>
    Internet Explorer </h2>
    </font></td>
  </tr>
</TBODY>
</table>
</body>
</html>

Similar Messages

  • Not able to get the login page after installing 12.1.1

    HI,
    i am not able to get the login page after installing in the 12.1.1. when i accessed from client machineo.Please help me in fixing out this problem.
    Thanks,
    venkat.

    Hi,
    What is the OS?
    What is the error message?
    Any errors in Apache/Database log files?
    Thanks,
    Hussein

  • Not able to see UWL Administration Page

    I have seen the UWL configuration document which said to register the workitem types in the "UWL administration" page, but I cannot see that in the path system administration->system configuration->knowledge management
    we are ep 6.0 and I have the super administration role.
    Can somebody tell why I am not able to see the administration page?

    To ask a silly question - I assume you have installed KM?
    What options do you see under system admin -> system config?

  • Why some coms not able to load certain JSP pages?

    Hi according to above,
    was thinking of creating jsp pages, but there seems to be occasional problems of not able to view jsp pages even though the computer has the updated JRE and has also try other browsers and had also reinstall JRE for a few times.
    Anyone know how to resolve this issue? The only method is I know is to format the computer and reinstall windows. Is this a windows issue or a jsp issue?

    i think you're confused. Applets need to have a local JRE on the client, JSP and servlets do not. All the java action in a JSP is performed on the SERVER, not the CLIENT. The server merely spits back to the client HTML (and possibly javascript) code just like any other static HTML page.
    Therefore, no web browser have ever not been able to view a JSP page. There may have been JSP pages that used JavaScript that doesn't work in all browsers, or JSP pages that returned invalid or browser specific HTML pages. But that's not JSPs fault.
    JSP --> No client JRE required.

  • Not able to pass portal login page with valid credentials using WebDispatch

    Hi,
    We are implementing SAP BillerDirect Portal. To make BillerDirect Portal available over the internet, we Configured SAP WebDispatcher with SSL termination.  We followed the steps mentioned in SAP Help Documentaion for SAP WebDispatcher with SSL termination.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/76/6d4fa247d0d647b5bd40745400d873/frameset.htm
    We created certificate  and send it to CA (TrustCenter CA). We received the CA response and we imported the certificate.
    AS mentioned in the help document, we configured the SAP Web Dispatcher profile to support SSL termination
    We tried to access our BillerDirect Portal over the internet using below link
    https://company.com/bd
    We are getting login page, once we enter correct user ID and Password, portal is not loading (not going to next page) portal remains on same login page.
    If we enter invalid credentials portal login page is giving u201CUser Authentication Failedu201D error.
    If we try to access any portal login pages which brings a pop-up for login, login gets succeeded and we are able to see next pages
    Examples
    1)     https://company.com/bd/admin/xcm/init.do
    2)     https://company.com/monitoring/SystemInfo
    All pages which bring up portal login page without pop-up, not able to pass through portal login screen.
    We Tried the ProxyMapping option on Dispatcher using Visual admin. This option also didnu2019t work for us.
    Here is the WebDispatcher Profile
    SAPSYSTEMNAME = xxx
    SAPGLOBALHOST = xxxxx
    SAPSYSTEM = 00
    INSTANCE_NAME = W00
    DIR_CT_RUN = $(DIR_EXE_ROOT)\$(OS_UNICODE)\NTI386
    DIR_EXECUTABLE = $(DIR_CT_RUN)
    Accesssability of Message Server
    rdisp/mshost = hostnameofportalserver with FQDN
    ms/http_port = 8101
    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=HTTPS,PORT=443
    icm/server_port_1 = PROT=HTTP,PORT=80
    icm/HTTPS/verify_client = 0
    SAP Web Dispatcher Web Administration
    icm/HTTP/admin_0 = PREFIX=/sap/wdisp/admin,DOCROOT=D:\usr\sap\xxx\W00\data\icmanroot\admin,AUTHFILE= D:\usr\sap\xxx\SYS\global\security\data\icmauth.txt
    Parameters for the SAP Cryptographic Library
    ssl/ssl_lib = D:\usr\sap\xxxW00\sapcrypto.dll
    ssl/server_pse = D:\usr\sap\xxx\W00\sec\SAPSSLS.pse
    ssf/name = D:\usr\sap\xxx\W00\sec\SAPSSLS.pse
    ssf/ssfapi_lib =  D:\usr\sap\xxx\W00\sapcrypto.dll
    sec/libsapsecu =  D:\usr\sap\xxx\W00\sapcrypto.dll
    wdisp/ssl_cred = D:\usr\sap\xxx\W00\sec\SAPSSLC.pse
    Parameters for Using SSL to the backend server
    wdisp/ssl_encrypt = 1
    wdisp/ssl_auth = 1
    wdisp/ssl_cred = D:\usr\sap\xxxW00\sec\SAPSSLC.pse
    wdisp/ssl_certhost = hostnameofportalserver with FQDN
    wdisp/ssl_ignore_host_mismatch = true
    #ICM Parameters
    icm/HTTP/j2ee_0 = PREFIX=/, HOST =hostnameofportalserver with FQDN PORT=50000,SPORT=50001, SSLENC=1,TYPE=1, CRED =D:\usr\sap\xxx\W00\sec\SAPSSLC.pse
    We also tried below options in WebDispatcher profile but we are getting same problem.
    wdisp/add_client_protocol_header = true
    wdisp/add_clientprotocol_header = 1
    wdisp/ssl_ignore_host_mismatch = true
    #ICM Parameters
    icm/HTTPS/forward_ccert_as_header = true
    icm/HTTPS/trust_client_with_issuer = *
    icm/HTTPS/trust_client_with_subject = *
    we also tried
    wdisp/ssl_encrypt = 0
    wdisp/ssl_auth = 0
    we also tried
    wdisp/ssl_encrypt = 2
    wdisp/ssl_auth = 2
    We are not able to resolve issue. Please help us on resolving this issue.
    Thanks
    Praveen

    ' in Host Names is not allowed. Our hosname has '_'.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/67/be9442572e1231e10000000a1550b0/frameset.htm

  • Not able to run the Jdeveloper Pages in Local Machine

    Dear All,
    I am developing Custom OAF Pages in R12. while am not able to run the page in Local Machine Currently i am using Remote VPN. same page i import into server am able to run in Application.
    The error says:
    1, Increae the time limit bye setting the JRAD.RUNREG.TIMEOUT Parameter in ide.parameters file loacted in System directory.
    I found the file . am not able to find the JRAD.RUNREG.TIMEOUT Parameter option
    2, Check the Host Name in the Preferances, Under Embeded OC4J.
    I Verified same and using the Default Local IP Address.
    I am using Jdeveloper Version : p8431482_R12_GENERIC.zip
    Please help me. I approciate before
    Thanks
    Venkat Reddy Pulichintha
    00971502644919
    [email protected]

    Dear Gaurav,
    Thanks for you quick replay
    For this Patch number (p8431482_R12_GENERIC.zip), there is no (JAVA Options: remove this statement: -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true)
    Please guide me furthe steps. any other settings requird.
    Thanks
    Venkat Reddy Pulichintha
    00971502644919
    [email protected]

  • Web Dynpro Java WIki - Not able to add a new page.

    Hi Experts,
                     I want to add a new wiki page in Web Dynpro Java, but i am not able to find corresponding button or action  to create a new page.Please guide me to add a new page.
    Thanks and Regards
    Fazal Ahamed

    Hi Fazal,
    This is probably due to the Expert Wki which was launched last week. Please see Craig's blog for more details: /people/community.user/blog/2009/06/17/welcome-the-expert-wiki
    BR,
    Hilit

  • Not able to open secure web pages

    Hi Members,
    Their seems to be some problem with my internet. I hope i can get some answer to it. After i had my firmware update for my macbook (leopard 10.5.2 combo updated), it became very slow and gave me kernel panic. Last week i had to format my HDD and re-installed Mac OSX. Now i see some very serious problem. Neither i can use my macbook to log in to dicussion forum and not able to open any secure websites like facebook.com, hi5.com and microsoft.com and support.apple.com. Its pulling my nerves.
    Kindly Help.
    Regards
    Vikram

    Thank you so much for the helpful information. Let me tell you in brief...
    "Hi,
    It has been an ongoing problem with my mac book. I have to use a PC to log in to my discussion forum to know about my questions. I am using a macbook (leopard 10.5.2 combo updated) and i had done a complete re-installtion of the Mac OSX as i had a kenel panic after i had created another account to check the problem with safari (as on a telephone call with apple support). Then i am not able to log into my account even on .mac account too. I had firefox but i had to do too much of "forced quit" when i had to close. Even my "SENDING ERROR REPORTS" FAILS everytime.
    All this started when i had some software updates from the website. How can i get rid of this problem. Further, while using any pc on the same network, i have the same problem. Is it a hardware / Mac OS software related problem or the Network (ISP) related problem....
    Plzzzzzzzzzzzzzzz Help. "

  • Not able to print T&C page at the end

    Hi Friends,
    I am working on a PO form. I need to print Terms & Conditions (Content of 2 pages) at the end of my printing.
    As of now I have two pages :
    FIRST
    NEXT  -  Copy of First
    After the MAIN window I am printing Digital Signature which is in a Secondary window.
    For my issue   I created a new page with one Secondary Window which reads the Standard Text to populate T&C.
    But this page is not at all triggering.
    Next Page attribute:
    FIRST   -   NEXT
    NEXT    -  TNC
    TNC      -    this is blank as we can not assign a page without MAIN window.
    Also checked in the debugging mode also    but  its not calling this page.
    Can anyone please help  me solvig this issue?
    Let me know if I am not clear anywhere.
    Thanks,
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Feb 19, 2010 8:52 AM

    Hi  ,
    Next Page attribute:
    FIRST - NEXT
    NEXT - TNC
    these are your next pag attributes
    try this ..
    Next Page attribute:
    FIRST - NEXT
    NEXT - NEXT
    TNC - blank
    in the NEXT page u have  your terms and condition page  forcibly because your terms and condition page is not having main window.
    for this u have to create command node and (nextpage will be TNC) after the main window of the NEXT page 
    Hope u solve your problem
    Let me know if any concerns ........

  • Not able to get the main page.

    Hi SDN,
    AM getting the 500 Internal server Error when i try to access my XI hope page:
    javax.xml.parsers.FactoryConfigurationError: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found.
    However i am able to access my sld exchangeProgile AdapterFramework and http://<server>:<port>/index.htl.
    I developer trace of disp+work.exe it shows JAVA not active.
    the dev_w<x> directories so various message :
    ======> Could not open file rfcexec.sec
    ABAP Programm: SAPLSLDAG (Transaction: )
    Called function module: RFC_REMOTE_PIPE
    User: DDIC (Client: 000)
    Destination: E:\usr\sap\NW2\SYS\exe\run/rfcexec (handle: 2, , {5D9E7E62-27DA-4BED-A211-BA687DECE672})
    SERVER> RFC Server Session (handle: 1, 73144718, {F71BA686-E915-48C9-9460-092B9EB62F42})
    SERVER> Caller host: iscsapapp4w_NW2_10
    SERVER> Caller transaction code:  (Caller Program: SLDAPPL_SERV)
    SERVER> Called function module: SLDAG_GET_COMPILED_BITS
    Trace file opened at 20050903 223718 India Standard , SAP-REL 640,0,43
    Can somebody give any clue ????
    Regards,
    Raghbir

    Hi Raghbir,
    the Java Stack must be active because you can access the
    SLD and the ExchangeProfile. They are on the same
    machine, aren't they?
    I assume that you are on XI 3.0. Is there any program
    that changed the value of the JAXP-variables because it
    needs the Xerces parser?
    Do you see exceptions in the J2EE-Engine logs?
    Regards,
    Hermann

  • Not able to run a OA page from jdeveloper

    Hi,
    I am getting the below error when i run the page from jdeveloper from my local machine. It says invalid user name and password. But i have given a valid user_name and password
    Please help me to resolve this error.
    Note: recently our DB passwords are made case sensitive.
    500 Internal Server Error
    oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1509)
         at oracle.apps.fnd.profiles.Profiles.getProfile(Profiles.java:362)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfileFromDB(ExtendedProfileStore.java:211)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getSpecificProfile(ExtendedProfileStore.java:171)
         at oracle.apps.fnd.profiles.ExtendedProfileStore.getProfile(ExtendedProfileStore.java:148)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureUsingDatabaseValues(DebugEventManager.java:1294)
         at oracle.apps.fnd.common.logging.DebugEventManager.configureLogging(DebugEventManager.java:1149)
         at oracle.apps.fnd.common.logging.DebugEventManager.internalReinit(DebugEventManager.java:1118)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1085)
         at oracle.apps.fnd.common.logging.DebugEventManager.reInitialize(DebugEventManager.java:1072)
         at oracle.apps.fnd.common.AppsLog.reInitialize(AppsLog.java:595)
         at oracle.apps.fnd.common.AppsContext.initLog(AppsContext.java:593)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:570)
         at oracle.apps.fnd.common.AppsContext.initializeContext(AppsContext.java:524)
         at oracle.apps.fnd.common.WebAppsContext.<init>(WebAppsContext.java:1140)
         at oracle.apps.fnd.common.WebRequestUtil.validateContext(WebRequestUtil.java:225)
         at _OAErrorPage._jspService(_OAErrorPage.java:62)
         [/OAErrorPage.jsp]
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:847)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:813)
         at _runregion._jspService(_runregion.java:193)
         [/runregion.jsp]
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object.
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1286)
         at oracle.apps.fnd.common.Pool.borrowObject(Pool.java:1027)
         at oracle.apps.fnd.security.DBConnObjPool.borrowObject(DBConnObjPool.java:583)
         at oracle.apps.fnd.security.AppsConnectionManager.borrowConnection(AppsConnectionManager.java:300)
         at oracle.apps.fnd.common.Context.borrowConnection(Context.java:1719)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnectionFinal(AppsContext.java:2266)
         at oracle.apps.fnd.common.AppsContext.getPrivateConnection(AppsContext.java:2203)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:2061)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1871)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1715)
         at oracle.apps.fnd.common.AppsContext.getJDBCConnection(AppsContext.java:1728)
         at oracle.apps.fnd.common.Context.getJDBCConnection(Context.java:1453)
         at oracle.apps.fnd.cache.GenericCacheLoader.load(GenericCacheLoader.java:170)
         at oracle.apps.fnd.profiles.Profiles.getProfileOption(Profiles.java:1500)
         ... 49 more
    Caused by: oracle.apps.fnd.common.AppsException: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1423)
         at oracle.apps.fnd.security.AppsConnectionManager.localAppsConnect(AppsConnectionManager.java:1218)
         at oracle.apps.fnd.security.AppsConnectionManager.localAppsConnect(AppsConnectionManager.java:1113)
         at oracle.apps.fnd.security.AppsConnectionManager.localAppsConnect(AppsConnectionManager.java:1102)
         at oracle.apps.fnd.security.AppsConnectionManager.makeGuestConnection(AppsConnectionManager.java:787)
         at oracle.apps.fnd.security.DBConnObj.<init>(DBConnObj.java:230)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.apps.fnd.common.Pool.createObject(Pool.java:1273)
         ... 62 more
    Caused by: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:277)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:272)
         at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOauth(T4CTTIoauthenticate.java:647)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:308)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:430)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:608)
         at java.sql.DriverManager.getConnection(DriverManager.java:525)
         at java.sql.DriverManager.getConnection(DriverManager.java:140)
         at oracle.apps.fnd.security.ConnectionManager.dbConnect(ConnectionManager.java:1410)
         ... 72 more
    Regards,
    Berchmans

    Hi Berchmans,
    You need to provide oracle application user name and password and any responsibility which is assigned to this user.
    Here no DB connection is made and tested.
    Whenever we login to oracle application we provide user name and password and then we see the responsibility list and then once you select any responsibility then list of functions.
    To run your page with same functional security JDeveloper needs user name and password with his valid responsibility key and responsibility application short name.
    Hope it is clear now.
    Regards,
    Sandeep M.

  • Not able to view my web pages in Safari

    I am having problems viewing my web pages in the Safari browser and wondered if anyone can help solve the mystery?
    The site was created in iWeb '08, and was loaded to .Mac. I did not want the site to be hosted on .Mac as I already have a domain, but the CNAME process that is described by .Mac is not supported by my hosting service, so I had to ask my hosting service (Freeola) to route the service to their servers and provide masking so the .Mac address would not show in the browser bar.
    This works absolutely fine in Firefox and the page loads up without a problem.
    However, when I enter the site address in the Safari browser, the name appears in the bar, and then the blue progress bar does 2 sweeps and then a blank page appears, but with the site mame at the top of the window. If I click the cursor on any point on the bank page, a grey horizontal line appears, and then disappears, but still no opening page!
    I cannot work out whether this is an issue with the original coding in iWeb '08 and a compatability issue with Safari ( I am using v2.0.4 on all my 3 machines, and the problem is the same), or it's something to do with the way my hosting service is routing the site.
    I have asked others to view the site on PC's using IE, and they do not seem to have a problem so far.
    I am not a web designer, and know absolutely nothing about writing code and HTML, hence using the simplicity of iWeb, but this seems a strange thing to happen. If I enter the original .Mac site hosting address in Safari, the site shows up just fine!!
    Has anybody else had this type of problem?? Any help would be gratefully received, as this thing is driving me crazy!!
    Cheers.

    Further to my earlier post, I have just read an entry noting that if you already own a domain name, and ask your hosting service to forward and mask your iWeb '08 created, web.mac.com site to your personal domain, chances are that due to the masking of the site on web.mac.com, Safari browsers interpret the masking as being the end of the site, and as such, just return a blank page?
    This may explain the problem. However, call me old fashioned, and possibly a little naive, but surely this cannot be the problem?? It's OK in Firefox!

  • With Firefox 5.0 I am not able to access my mail page at Google Mail: from the main page my personal page do not open, writing "Redirecting" but nothing happens. Thanks for help.

    After I have prunted my username and passworg Firefox is going to a https page, writing "redirectin" but nothin happens. With Internet Explorer everything works properly. How can I solve this problem. I like Firefox very much!

    It is possible to reset the zoom size.Have you tried [[Font size and zoom - increase the size of web pages|Firefox's zoom feature]]? This will help increase the size of web pages.
    * To make things bigger, press '''Ctrl''' and '''&#43''' at the same time.
    * To make things smaller, press '''Ctrl''' and '''-''' at the same time.
    * To reset the size back to normal, press '''Ctrl''' and '''0''' at the same time.
    You can also use the [https://addons.mozilla.org/en-US/firefox/addon/2592/ NoSquint]. add-on to change the default zoom level for all websites at once. After setting your global zoom level, you can still fine-tune the zoom on individual sites.
    '''Using NoSquint:'''
    #After installing NoSquint, make sure you have the Add-on Bar displayed:
    #*Right-click the new tab button ("+") or a blank area of the tab bar to the right of it and choose Add-on Bar from the shortcut menu.
    #Click the % on the Add-on Bar to call up site preferences, then click the Global Settings button, then the Zooming tab.
    #*You can experiment with sizes larger than 125%, but it's not recommended that you go higher than 150% unless you have a large high-resolution monitor.
    If there are particular sites that still present a problem, feel free to post their URLs.
    Please let us know if this helped you!
    Thank you.

  • Found cure for Acrobat 9 not able to select Printer in Page setup.

    This may already be covered in another thread. In fact I used this as suggestion to cure another problem in another thread. That was related to editing files in Acrobat 9. It cures this problem I brought up on forum a week after I installed acrobat 9.
    Every since I purchased by download Acrobat 9, I have been unable to slect a Printer in the Page setup. when clicking any printer your supposed to see a drop down list of all the print Drivers you have installed. I got
    nothing.
    I downloaded and installed Reader 9.0. Low and behold I am now able to select the desired printer. in Reader 9
    and Acrobat 9.
    So anyone having these issues. download and install Reader even if you never use it. The installer evidently inserts some code they forgot to put in Acrobat 9.

    Well, come to find out. It works on my G4-500 as stated on my OSX.4.11 Drive. But I updated on my Firewire drive and still have same issue with Acrobat. But Reader I am able to set printer.
    On my PowerBook 17 G4-1.67Gb Laptop neither works I don't know what to do. adobe is no help.

  • Why am I not able to see a home page for the itunes store?

    When I click on the itunes store to purchase songs...nothing shows up but a page to download a new software. It will not let me leave the page as well. I would like to purchase songs. What should I do?

    Thanks for your response.  I hadn't mentioned I was using a B9180 icc profice and since the 9180 can print up to 13x19 inches you'd think there'd be an option to do so, so I'll recheck it.  Thanks again.

Maybe you are looking for

  • How can I save different versions in iMovie 11 (plus angry rant)

    Sigh.  My fiancee is sitting in front of the computer crying because iMove just messed up her project.  The project that was basically done.  The project she has to hand in tomorrow morning (it is midnight right now).  Who knows what happened.  Thing

  • Adding minutes to a time in java.

    So far I have      Locale currentLocale= new Locale("en","CANADA");           Date today = new Date();      DateFormat formatter =DateFormat.getDateInstance(DateFormat.LONG, currentLocale);           String date = formatter.format(today);      DateFo

  • Setting speaker with Audigy 2 under Vi

    Hello, I've a problem under Win Vista with an Audigy 2. When I try to set the speaker to 4. or 5. the software doesn't save the settings. Someone knows how to solve this problem? Thanks Andy

  • Very slow speed and frequent disconnection

    I have been using BT broadband since 6/09/13 and my speed has been below par so far. I have only received 3mbit/s or less when my line is capable of 8mbit/s. Along with this, I disconnect frequently for seemingly no reason. When I contacted bt suppor

  • Calendars (MobleMe & Exchange) showing same 'color' on iOS4?

    Just changed to iOS4 on my iPhone 3GS. With OS3.x, my MobileMe calendar items showed as blue dots on my list view calendar, and my Exchange account items appeared as red dots. Now, in iOS4, all items are blue dots. I've deleted, then added back, both