Unable to access form parameter in servlet

What could be the possible reasons, If a server side program say a servlet, cannot access the request parameters.
I mean, i have a form and it uses get method. Now on submitting the form, I can see the query string in url but unable to access the same in servlet.
thank you all
Ravi

The most obvious reason might be that the servlet's
programmer wrote crappy code.
Show the code where you try to read the parameters,
please.Code is simple. To retrieve the form parameter I used the same
request.getParameter("paramname")
And in the form method used is get. After submission of form, I can see the form parameter appended to url
something like this:
http://localhost/servlets/Test?paramname=somevalue
But for somereason in servlet i.e at request.getParameter("paramname"), is hanging here.
I checked the paramname, no spelling mistakes as well :)
But i am not able to find out the reason why I am not able to get the paramname in servlet.
thanks
Ravi

Similar Messages

  • Unable to access forms

    Hi,
    i was installed 11.5.9 on windows 2003 . Installtion was complted successfully.
    when i was trying to connect forms, its unable to launch the forms.
    Any idea please let us know.
    Thanks,
    Madhu

    Hi hasswan,
    All services was up and running. autoconfig complted successfully.
    I able to login homepage also. once i select resopnsibility tab,then form was unable to open.
    How can we will fix this. is any jinitiator issue?
    Thanks,
    Madhu

  • Unable to detect any parameter in html (webresource) when value is passed from onload method of form

    Unable to detect any parameter in html (webresource) when value is passed from onload method of form
    I am trying out some stuff. For which I created a simple Entity. In the form of the entity I have added a simple web resource (html). And for the onload of the form I am calling the following function
    function HelpDeskActivityOnLoadhandler()
     var customParameters = encodeURIComponent("first=First Value&second=Second Value&third=Third Value");
        Xrm.Utility.openWebResource("tsi_scriptzz",customParameters);
    Here is the code for the  tsi_scriptzz.html
    <html>
     <body>
      <script type="text/javascript">
        var vals = new Array();
        if (location.search != "") {
         vals = location.search.substr(1).split("&");
         for (var i in vals) {
          vals[i] = vals[i].replace(/\+/g, " ").split("=");
      </script>
     </body>
    </html>
    MY PROBLEM IS -> location.search is always coming back with empty string. So, it not getting the parametrs I am passing from the load method of the form.
    Could someone kindly help me.
    Thanks,
    Hasib

    Hello, I tried it myself. I got a new_test.htm file and a new_test.js file. The loadWebResource function is called on the OnLoad event of an Entity.
    function loadWebResource()
    var params = encodeURIComponent('param1=value one&param2=value two&param3=value three');
    Xrm.Utility.openWebResource('new_test.htm', params);
    <html>
    <head>
    <title>Web Resource Parameter Example</title>
    <!-- Use ../ClientGlobalContext.js.aspx if your webresource is in a deeper folder on CRM -->
    <script src="ClientGlobalContext.js.aspx" type="text/javascript"></script>
    <script type="text/javascript">
    document.onreadystatechange = function () {
    if (document.readyState == 'complete') {
    var params = getParams();
    for(var i=0; i<params.length; i++)
    log(params[i].name + ' ' + params[i].value);
    // this functions puts the params in a 'dictionary format'
    // f.e params[0].name = param1 & params[0].value = 'value one'
    // You could customize this function or find some on the internet to retrieve a param fe by name...
    // This is just an example how to get the name and values
    function getParams(){
    var params = [];
    var querystring = Xrm.Page.context.getQueryStringParameters().Data;
    var querystringparts = querystring.split('&');
    for(var i=0; i<querystringparts.length;i++)
    var split = querystringparts[i].split('=');
    params.push({
    name: split[0],
    value: split[1]
    </script>
    </head>
    <body>
    </body>
    </html>
    Hope it helps now. Kind Regards

  • Unable to access values from database in login page..

    Hey all,
    Friends I have a login.jsp page and I want if i enter username and password then it will be accessed from database and after verifying the details it will open main.jsp.I made a database as "abc" and created DSN as 1st_login having table 1st_login. But the problem is that I am unable to access values from database.
    So Please help me.
    Following is my code:
    <HTML>
    <body background="a.jpg">
    <marquee>
                        <CENTER><font size="5" face="times" color="#993300"><b>Welcome to the"<U><I>XYZ</I></U>" of ABC</font></b></CENTER></marquee>
              <br>
              <br>
              <br>
              <br><br>
              <br>
         <form name="login_form">
              <CENTER><font size="4" face="times new roman">
    Username          
              <input name="username" type="text" class="inputbox" alt="username" size="20"  />
              <br>
         <br>
              Password          
              <input type="password" name="pwd" class="inputbox" size="20" alt="password" />
              <br/>
              <input type="hidden" name="option" value="login" />
              <br>
              <input type="SUBMIT" name="SUBMIT" class="button" value="Submit" onClick="return check();"> </CENTER>
              </td>
         </tr>
         <tr>
              <td>
              </form>
              </table>
    <%
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection connection = DriverManager.getConnection("jdbc:odbc:1st_login");
    Statement statement = connection.createStatement();
    String query = "SELECT username, password FROM 1st_login WHERE username='";
    query += request.getParameter("username") + "' AND password='";
    query += request.getParameter("password") + "';";
    ResultSet resSum = statement.executeQuery(query);
    //change: you gotta move the pointer to the first row of the result set.
    resSum.next();
    if (request.getParameter("username").equalsIgnoreCase(resSum.getString("username")) && request.getParameter("password").equalsIgnoreCase(resSum.getString("password")))
    %>
    //now it must connected to next page..
    <%
    else
    %>
    <h2>You better check your username and password!</h2>
    <%
    }catch (SQLException ex ){
    System.err.println( ex);
    }catch (Exception er){
    er.printStackTrace();
    %>
    <input type="hidden" name="op2" value="login" />
         <input type="hidden" name="lang" value="english" />
         <input type="hidden" name="return" value="/" />
         <input type="hidden" name="message" value="0" />
         <br>
              <br><br>
              <br><br>
              <br><br><br><br><br>
              <font size="2" face="arial" color="#993300">
         <p align="center"> <B>ABC &copy; PQR</B>
    </BODY>
    </HTML>
    and in this code i am getting following error
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:93: cannot find symbol_
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:93: cannot find symbol_
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:94: cannot find symbol_
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:95: cannot find symbol_
    4 errors
    C:\Project\SRS\nbproject\build-impl.xml:360: The following error occurred while executing this line:
    C:\Project\SRS\nbproject\build-impl.xml:142: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 6 seconds)

    As long as you're unable to compile Java code, please use the 'New to Java' forum. This is really trival.
    To ease writing, debugging and maintenance, I highly recommend you to write Java code in Java classes rather than JSP files. Start learning Servlets.

  • Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    i am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    i exported the application from apex.oracle.com and imported it to our environment
    import went fine, but when I ran the IR page I got
    ORA-20001: get_dbms_sql_cursor error ORA-00904: : invalid identifier
    evidently the problem is a lack of public execute on DBMS_LOB, which is used in the generated IR source.
    while waiting for the DBA to grant privs on DBMS_LOB, changing the dbms_lob.getlength call to length() fixes the IR.
    however, i am not getting the download link on the associated form page... changed templates, that's not the issue -- we'll see if that's a dbms_lob issue as well

  • APEX:Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    I am using Apex 4.2.2.00.11
    am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    336554,
    Looks like there is a 127-column limit on the number of report columns supported when using that wizard. Do you have more than that?
    57434

  • CRM APPLICATION error when trying to access forms

    hi Everyone,
    Kindly help out on this issue,
    After installing the Jinitiator Software,
    We click on the forms on the oraccle application and we get a list of errors and with a error box saying Exception Found.
    Below is the list of errors displayed in the Java Console:
    Oracle JInitiator: Version 1.3.1.21
    Using JRE version 1.3.1.21-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\valaseProxy Configuration: Manual Configuration Proxy: 10.0.20.28:8080 Proxy Overrides: http://crmapts1.gtbplc.com,https://gtibs2.gtbplc.com,intranet.gtbplc.com,infserver.gtbplc.com,10.*,crmapp1.gtbplc.com,crmapts1.gtbplc.com*.oracleads.com,*.us.oracle.com,*.oraclecorp.com,*.uk.oracle.com,*.sg.oracle.com,*.au.oracle.com,*.nz.oracle.com,*.ap.oracle.com,*.in.oracle.com,*.tw.oracle.com,*.jp.oracle.com,*.cn.oracle.com,*.kr.oracle.com,*.th.oracle.com,*.o,10.*,<local>JAR cache enabled
    Location: C:\Documents and Settings\valase\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0----------------------------------------------------
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    ----------------------------------------------------java.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.HttpUtils.followRedirects(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.isUpToDate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.loadFromCache(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: error reading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar from JAR cache.Downloading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndforms.jar to JAR cachejava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.decompress(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4000(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.util.zip.ZipException: The system cannot find the file specified     at java.util.zip.ZipFile.open(Native Method)     at java.util.zip.ZipFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.authenticate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4100(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: Unable to cache http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndforms.jarjava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.HttpUtils.followRedirects(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.isUpToDate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.loadFromCache(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: error reading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jar from JAR cache.Downloading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jar to JAR cachejava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.decompress(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4000(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.util.zip.ZipException: The system cannot find the file specified     at java.util.zip.ZipFile.open(Native Method)     at java.util.zip.ZipFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.authenticate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4100(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: Unable to cache http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndformsi18n.jarjava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.HttpUtils.followRedirects(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.isUpToDate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.loadFromCache(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: error reading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndewt.jar from JAR cache.Downloading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndewt.jar to JAR cachejava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.decompress(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4000(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.util.zip.ZipException: The system cannot find the file specified     at java.util.zip.ZipFile.open(Native Method)     at java.util.zip.ZipFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.authenticate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4100(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: Unable to cache http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndewt.jarjava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.HttpUtils.followRedirects(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.isUpToDate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.loadFromCache(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: error reading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndswing.jar from JAR cache.Downloading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndswing.jar to JAR cachejava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.decompress(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4000(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)java.util.zip.ZipException: The system cannot find the file specified     at java.util.zip.ZipFile.open(Native Method)     at java.util.zip.ZipFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at java.util.jar.JarFile.<init>(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.authenticate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4100(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: Unable to cache http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndswing.jarjava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.HttpUtils.followRedirects(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.isUpToDate(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.loadFromCache(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)     at oracle.jre.protocol.jar.JarCache.get(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)     at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)     at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)     at sun.misc.URLClassPath$2.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getLoader(Unknown Source)     at sun.misc.URLClassPath.getResource(Unknown Source)     at java.net.URLClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at java.net.URLClassLoader.findClass(Unknown Source)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)WARNING: error reading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndbalishare.jar from JAR cache.Downloading http://crmapts1.gtbplc.com:8001/OA_JAVA/oracle/apps/fnd/jar/fndbalishare.jar to JAR cachejava.io.IOException: Connection failure with 502     at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.decompress(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.access$4000(Unknown Source)     at oracle.jre.protocol.jar.JarCache$10.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at oracle.jre.protocol.jar.JarCache.privileged(Unknown Source)     at oracle.jre.protocol.jar.JarCache.access$2800(Unknown Source)     at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)     at

    Hi,
    Please have a look at the following note:
    Note: 428290.1 - Unable To Launch Forms Receive Exception Java.io.IOException: Connection failure with 407
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=428290.1
    Regards,
    Hussein

  • Unable to access Oracle Enterprise Manager in Oracle 10g AS Machine

    Hi All,
    We are working on oracle forms 10g in 3 tier architecture. I have installed oracle 10g Infrastructure (OraHome_1) followed by oracle 10g Application server (middle-tier,OraHome_2). I have copied all the forms to OraHome_2\forms folder and compiled them successfully.
    When i tried to access enterprise manager (Infrastructure)thru http://myappserver:18100, i was unable to do so. It displayed "page cannot be displayed".
    Also
    When i tried to access enterprise manager (middle-tier)thru http://172.16.1.1:18101, i was unable to do so. It displayed "page cannot be displayed".
    I checked for port status, thru “netstat –na” command, It was displaying
    172.16.1.1 18100 TIME_WAIT
    172.16.1.1 18101 TIME_WAIT
    172.16.1.1 7777 TIME_WAIT
    Why is that i am unable to access the Enterprise Manager?

    Hi All,
    I was able to resolve the issue. Thr was a proxy server enabled in the IE in AS machine. Once i checked the option for bypassing it and turned off the windows firewall(OS was win 2003 server). I was able to view the home page at http://myappserver, then was able to access EM also.

  • How to find users machine / IP who is accessing forms through Oracle AS

    Dear Gurus
    We need to know the users machine / IP who are accessing forms through Oracle 9i Application Server, how can we find that?
    thanks in advance
    regards
    Mehmood

    Mehmood,
    Set serverURL=/forms90/f90servlet/session in the Forms Web configuration default section or add it to the URL to start tracing host name and ip-addresses from clients. The output appears in the servlet log file application.log. sessionperf , perf and debug are the other options instead of session.
    regards,
    Bernhard Jongejan
    http://bernhardjongejan.spaces.live.com

  • Static NAT causes unable to access server via internal IP

    Hi all,
    Need some help. I running site-to-site IPsec VPN in Cisco 2811 IOS 12.4 both site. Here I encounter a problem to access server on  Site A from Site B
    Site A having Leased Line connected to router with Public IP. I have done static mapping 1 web server to Public IP (NAT). This to allow external users to access the server via Public IP. At the same time, users at Site B would need to access to same server via Internal IP since they have Site-to-Site VPN established. But once I done Static Mapping (NAT), user at Site B unable to access the server at Site A using its internal IP. But external user can access server via Public IP. What went wrong here. Do i need to add extra command to get this done? We really need this.

    Hi sheik,
    I'm accessing the server form Site B using its server's LAN IP.
    If I remove the static NAT statement from my router at Site A, everything works well. I can access the server from site B using its LAN IP via Site-to-Site VPN. But in this case, external users unable to access server via Public IP since no Static NAT statement.

  • Unable to access following endpoint(s) : url...New upgrade to 11g issue.

    [C:\Users\DELL\Desktop\error_description.txt]
    Dear All,
    Similar kind of issue is already there in another thread. but that solution is not suitable for this issue.
    We are migrating our BPEL processes from 10g to 11g.
    We are facing two critical issues as follows. Request you if anybody has idea on this issue, please let me know the solution.
    BPEL process invoke a remote webservice which required authentication with below properties.
    wsseOASIS2004Compliant
    wsseHeaders
    wsseUsername
    wssePassword
    In 10g code these details were given under partner Link Properties. It has been working fine.
    The remote webservice is in third party system(external) and there is no migration happen to this webservice.
    We installed remote server’s (external) certificates in our 11g weblogic server (soa_server).
    Now we are facing two issues.
    issue #1:
    Invoking remote webservice in BPEL process is giving following error.
    *"Unable to access following endpoint(s) : https://192.72......../webservice1/webservice1Proxy"*
    As per the previous issue whic is similar to this error, is due to certificate instalation and adding into trusted list was resolved the issue.
    But for this issue our admin team is verystongly saying certifactes instalation is perfect also reinstalled when we asked them.
    Also we are able to telnet the ipaddress/ hostname of the extenal server (webservice) from the soa_server unix box.
    Also above endpoint URL(external) we able access with ?wsdl from our soa_server unix box.
    Request you folks, please let me know your valuable thoughts on this issue. we are really struckup and reached the delivery date.
    Issue #2
    The authentication details are given as follows…
    Right click on the external reference service and select “Configure WS policies”
    * Under the security tab, click add button and select “oracle/wss_username_token_client_policy”
    * Now Open the property Inspector window and click the add button under “Binding properties” tab.
    * Include the “oracle.webservices.auth.username” and “oracle.webservices.auth.password properties.
    But these details are ineffective in runtime.
    Request you, please let me know your valuable thoughts on these 2 issues.
    Please let me know whether it is cerificte issue or any other issue.
    If it is certificate issue how to strongly inform to our admin team so that they will make the required changes?
    Please find the error log in the attachment.
    Thanks,
    Deol
    error log description
    sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:174)
    at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:238)
    at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:318)
    at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:217)
    at sun.security.validator.Validator.validate(Validator.java:218)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:126)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:209)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:249)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1185)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:137)
    at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:594)
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:529)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:893)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1139)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:632)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59

    Full error log for the above error:
    sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:174)
    at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:238)
    at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:318)
    at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:217)
    at sun.security.validator.Validator.validate(Validator.java:218)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:126)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:209)
    at com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:249)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1185)
    at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:137)
    at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:594)
    at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:529)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:893)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1139)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:632)
    at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59)
    at java.io.ByteArrayOutputStream.writeTo(ByteArrayOutputStream.java:109)
    at HTTPClient.HTTPConnection.sendRequest(HTTPConnection.java:3366)
    at HTTPClient.HttpOutputStream.closeImpl(HttpOutputStream.java:461)
    at HTTPClient.HttpOutputStream.access$000(HttpOutputStream.java:99)
    at HTTPClient.HttpOutputStream$1.run(HttpOutputStream.java:418)
    at HTTPClient.HttpClientConfiguration.doAction(HttpClientConfiguration.java:666)
    at HTTPClient.HttpOutputStream.close(HttpOutputStream.java:415)
    at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.sendMessage(HttpSOAPConnection.java:1060)
    at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.post2(HttpSOAPConnection.java:495)
    at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection$PrivilegedPost.run(HttpSOAPConnection.java:1262)
    at oracle.j2ee.ws.saaj.client.p2p.HttpSOAPConnection.call2(HttpSOAPConnection.java:229)
    at oracle.j2ee.ws.common.transport.HttpTransport.transmit(HttpTransport.java:75)
    at oracle.j2ee.ws.common.async.MessageSender.call(MessageSender.java:64)
    at oracle.j2ee.ws.common.async.Transmitter.transmitSync(Transmitter.java:134)
    at oracle.j2ee.ws.common.async.Transmitter.transmit(Transmitter.java:90)
    at oracle.j2ee.ws.common.async.RequestorImpl.transmit(RequestorImpl.java:275)
    at oracle.j2ee.ws.common.async.RequestorImpl.invoke(RequestorImpl.java:95)
    at oracle.j2ee.ws.client.jaxws.DispatchImpl.invoke(DispatchImpl.java:793)
    at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.synchronousInvocationWithRetry(OracleDispatchImpl.java:235)
    at oracle.j2ee.ws.client.jaxws.OracleDispatchImpl.invoke(OracleDispatchImpl.java:106)
    at oracle.integration.platform.blocks.soap.AbstractWebServiceBindingComponent.dispatchRequest(AbstractWebServiceBindingComponent.java:516)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.processOutboundMessage(WebServiceExternalBindingComponent.java:207)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.sendSOAPMessage(WebServiceExternalBindingComponent.java:826)
    at oracle.integration.platform.blocks.soap.WebServiceExternalBindingComponent.request(WebServiceExternalBindingComponent.java:603)
    at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
    at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:182)
    at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:154)
    at sun.reflect.GeneratedMethodAccessor1956.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:71)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy304.request(Unknown Source)
    at oracle.fabric.CubeServiceEngine.requestToMesh(CubeServiceEngine.java:824)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:263)
    at com.collaxa.cube.engine.ext.common.InvokeHandler.__invoke(InvokeHandler.java:1059)
    at com.collaxa.cube.engine.ext.common.InvokeHandler.handleNormalInvoke(InvokeHandler.java:586)
    at com.collaxa.cube.engine.ext.common.InvokeHandler.handle(InvokeHandler.java:130)
    at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:75)
    at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:158)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2543)
    at com.collaxa.cube.engine.CubeEngine._handleWorkItem(CubeEngine.java:1166)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1071)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:73)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:220)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:328)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4430)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4362)
    at com.collaxa.cube.engine.CubeEngine._createAndInvoke(CubeEngine.java:698)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:555)
    at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:103)
    at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:145)
    at com.collaxa.cube.engine.ejb.impl.bpel.BPELEngineBean.syncCreateAndInvoke(BPELEngineBean.java:111)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.jee.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:104)
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:94)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:81)
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:112)
    at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:105)
    at sun.reflect.GeneratedMethodAccessor856.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.jee.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:69)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy291.syncCreateAndInvoke(Unknown Source)
    at com.collaxa.cube.engine.ejb.impl.bpel.BPELEngineBean_51369e_ICubeEngineLocalBeanImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
    at com.collaxa.cube.engine.ejb.impl.bpel.BPELEngineBean_51369e_ICubeEngineLocalBeanImpl.syncCreateAndInvoke(Unknown Source)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.callCreateAndInvoke(DeliveryHandler.java:790)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:528)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:487)
    at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:162)
    at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.request(CubeDeliveryBean.java:493)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.jee.intercept.MethodInvocationInvocationContext.proceed(MethodInvocationInvocationContext.java:104)
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor$1.run(JpsAbsInterceptor.java:94)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor.runJaasMode(JpsAbsInterceptor.java:81)
    at oracle.security.jps.ee.ejb.JpsAbsInterceptor.intercept(JpsAbsInterceptor.java:112)
    at oracle.security.jps.ee.ejb.JpsInterceptor.intercept(JpsInterceptor.java:105)
    at sun.reflect.GeneratedMethodAccessor856.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.jee.intercept.JeeInterceptorInterceptor.invoke(JeeInterceptorInterceptor.java:69)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy287.request(Unknown Source)
    at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:39)
    at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.request(Unknown Source)
    at oracle.fabric.CubeServiceEngine.request(CubeServiceEngine.java:380)
    at oracle.integration.platform.blocks.mesh.SynchronousMessageHandler.doRequest(SynchronousMessageHandler.java:139)
    at oracle.integration.platform.blocks.mesh.MessageRouter.request(MessageRouter.java:182)
    at oracle.integration.platform.blocks.mesh.MeshImpl.request(MeshImpl.java:154)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at oracle.integration.platform.metrics.PhaseEventAspect.invoke(PhaseEventAspect.java:59)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at $Proxy304.request(Unknown Source)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.doMessageProcessing(WebServiceEntryBindingComponent.java:1280)
    at oracle.integration.platform.blocks.soap.WebServiceEntryBindingComponent.processIncomingMessage(WebServiceEntryBindingComponent.java:858)
    at oracle.integration.platform.blocks.soap.FabricProvider.processMessage(FabricProvider.java:113)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:1187)
    at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:1081)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:581)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:232)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:193)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:484)
    at oracle.integration.platform.blocks.soap.FabricProviderServlet.doPost(FabricProviderServlet.java:507)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)

  • Error :Unable to retrieve data from iHTML servlet for Request2 request

    I open bqyfile to use HTML in workspace.
    When I export report to excel in IR report.
    Then I press "back" button I get error"Unable to retrieve data from iHTML servlet for Request2 request "
    And I can not open any bqyfiles in workspace.
    Anybody gat the same question? Thanks~

    Hi,
    This link will be helpful, the changes is made in the TCP/IP parameter in the registry editor of Windwos machine. I tried the 32 bit setting for my 64 bit machine (DWORD..) and it worked fine for me..
    http://timtows-hyperion-blog.blogspot.com/2007/12/essbase-api-error-fix-geeky.html
    Hope this helps..

  • Unable to open forms error ...Premature end of script headers

    Hi
    we are using oracle11i(11.5.10.2) on windows 2000 and DB is 10.2.0.3
    we are unable to open forms
    getting below error
    Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    Full error in error_log file is
    2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 14:28:47 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 14:35:59 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:16:07 2011] [notice] FastCGI: process manager initialized
    [Thu Jul 21 15:20:50 2011] [notice] FastCGI: process manager initialized
    [Thu Jul 21 15:24:02 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:24:29 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:25:46 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:36:36 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:36:38 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:48:45 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:48:47 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:48:48 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:49:03 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:49:08 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:49:45 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:50:08 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:50:38 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:50:42 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:53:29 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:53:31 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:53:32 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:53:32 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 15:56:35 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 16:00:11 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 16:00:14 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 16:00:16 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 16:24:36 2011] [notice] FastCGI: process manager initialized
    [Thu Jul 21 16:34:13 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 16:34:14 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 16:34:16 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Thu Jul 21 16:36:34 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Fri Jul 22 10:33:40 2011] [error] [client 10.6.2.16] client denied by server configuration: e:/oracle/prodcomn/portal/prod_dpqeaps01
    [Fri Jul 22 10:33:40 2011] [error] [client 10.6.2.16] Invalid method in request €€
    [Fri Jul 22 10:33:40 2011] [error] [client 10.6.2.16] client denied by server configuration: e:/oracle/prodcomn/portal/prod_dpqeaps01
    [Fri Jul 22 10:33:45 2011] [error] [client 10.6.2.16] client denied by server configuration: e:/oracle/prodcomn/portal/prod_dpqeaps01
    [Fri Jul 22 10:44:24 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Fri Jul 22 10:44:28 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Fri Jul 22 11:24:13 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Fri Jul 22 11:24:17 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Fri Jul 22 11:24:18 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    [Sat Jul 23 07:39:46 2011] [notice] FastCGI: process manager initialized
    [Sat Jul 23 07:42:59 2011] [error] [client 10.1.9.14] Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    and i am  trying to run Autoconfig also it is also failing with below error
    Starting AutoConfig at Sat Jul 23 12:04:43 2011
    Using adconfig.pl version 115.78
    Classpath                   :
    ERROR: Version Conflicts utility failed.
    Terminate.
    The logfile for this session is located at: e:\oracle\prodappl\admin\PROD_dpqeaps01\log\07231204\adconfig.log
    Thanks
    With Regards
    A-Z

    we are unable to open forms
    getting below error
    Premature end of script headers: e:/oracle/prodora/8.0.6/tools/web60/cgi/ifcgi60.exe
    Please relink ifcgi60.exe and try then.
    Please see (Cannot Access Forms Server After CPU Jan 08 Patch - Premature End Of Script Headers [ID 753139.1]).
    and i am  trying to run Autoconfig also it is also failing with below error
    Starting AutoConfig at Sat Jul 23 12:04:43 2011
    Using adconfig.pl version 115.78
    Classpath                   :
    ERROR: Version Conflicts utility failed.
    Terminate.
    The logfile for this session is located at: e:\oracle\prodappl\admin\PROD_dpqeaps01\log\07231204\adconfig.log
    See these docs.
    Autoconfig Error "Version Conflicts utility failed" [ID 437441.1]
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/apps/ad/autoconfig/AutoConfigSynchronizerException [ID 1324088.1]
    Class Not Found oracle.apps.ad.tools.configuration.VersionConflictListGenerator when running autoconfig on database tier [ID 303928.1]
    Autoconfig Failed On Db Tier, The java class is not found: oracle.apps.ad.tools.configuration.VersionConflictListGenerator ERROR: Version Conflicts utility failed [ID 1212681.1]
    Thanks,
    Hussein

  • MS Access form bound to an Oracle OraDynaset?

    Hello,
    I need to write an MSAccess 2007 application as a front-end to an Oracle 11g database.
    Is it possible to bind a MS Access form to an Oracle OraDynaset?
    Regards,
    M.R.
    Edited by: user7047382 on Sep 22, 2010 4:46 PM

    Hi,
    Unless, you are writing dynamic queries, you might want to
    define your outerj SQL in MS Access and then issue a simple
    SELECT in Reports against the outerj MS Access query (to MS
    Access this query is just another pseudo table).
    TP.
    Bramanathan K (guest) wrote:
    : Rajeev Grover (guest) wrote:
    : : I wish to execute an outer join query in Reports 3.0 using
    MS
    : : Access at back end. Since MS Access has a different syntax
    of
    : : outer query than Oracle Sql, it is unable to parse it.
    : : What could be the alternative or probable solution to it.
    : Instead of outer join why don't you try with Union, I think
    Union
    : will go with both
    null

  • Access Context Parameter in Java Bean.

    Hi,
    I want to access the Context parameter set by the web.xml from a java bean or simple java class. For example, If I have database connection details in my web.xml and I want to get these in a Java Bean of a class which will pick up the values and create a Connection object and return to the guy calling it, either JSP or servlet.
    I have a idea of using InitialContext class. But I doubt it works for
    Context parameter defined in the web.xml.
    It worked if I use like this for DataSource object which is created in my application server.
    Context ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("OMSDataSource");
    return ds.DatabaseConnection.getConnection();
    So how can I access a parameter like this..
    <context-param>
    <param-name>Webmaster</param-name>
    <param-value>[email protected]</param-value>
    </context-param>
    Cheers.
    L G Goundalkar

    Greetings,
    Hi,
    I want to access the Context parameter set by the web.xml from a java bean or simple java class.The bean doesn't have direct access to the context object so that access must to supplied to it - i.e by calling getServletContext() and passing the resulting reference to the bean.
    For example, If I have database connection details in my web.xml and I want to get these in a Java
    Bean of a class which will pick up the values and create a Connection object and return to the guy
    calling it, either JSP or servlet.Why not write a DAO to handle the JSP or servlet's access needs? The DAO can be initialized at application start with a context listener and the initialized instance placed in the context where the JSP or servlet can get it directly. ;)
    I have a idea of using InitialContext class. But I doubt it works for Context parameter defined in the
    web.xml.Not for context parameters (a different "space" from the JNDI namespace ;). But, of course, it does work for "environment entries" which may also be placed in the web.xml DD (er, presuming your web container supports JNDI, of course).
    Cheers.
    L G GoundalkarRegards,
    Tony "Vee Schade" Cook

Maybe you are looking for

  • Suppress -signed on a Signed Document

    Whenever, I sign a document, then go to save it, it always has the document name with '-signed' at the end of it.  Is there a way to always suppress the '-signed' addition?

  • Error with MetConv in Office tools - Add-ins

    Hi, I have problem with office on my computer.  I have Win 7 and both Office 2007 and 2013. When I  try to open form with Add-ons, it shows me this message error : "An error has occurred in MetConv.txt file! Please view the MetConv.log for more infor

  • ITunes Author view

    In some cases (not all) when I have more than one audio book from an author, iTunes list them together under an "unknown" book title under the author's icon. For example: My books of Bill Bryson are all under an "Unknown" folder. They do not appear i

  • JbiValidator calls the setAttribute to the old value when validate fails

    I tried to implement a Custom Validator by extending a JboValidator Interface. I applied the validator to an attribute. I tested the the validation on a JSF page. When I input an invalid value on the attribute, the validator runs but the problem is t

  • Load testing in Oracle BPM

    Hi, Can anyone help me how to perform Load testing in Oracle BPM Regards, Jai