XML ParserConfigurationException in Weblogic

Hi,
I am getting a SAXParseException in Weblogic 6.1 SP4.
I have put xerces.jar in the classpath but still it seems like it is taking xerces implementation in weblogic.jar.
Is that the reason for this parser error?
Here is the piece of code.
String inParam = stringBuffer.toString();
ByteArrayInputStream byteArrayInputStream =
new ByteArrayInputStream(inParam.getBytes());
org.xml.sax.InputSource source = new InputSource(byteArrayInputStream);
source.setEncoding("ISO8859_1");
ParserConfigurationException while parsing
org.xml.sax.SAXParseException: The encoding "ISO8859_1" is not supported. at weblogic.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1090)
at weblogic.apache.xerces.readers.DefaultEntityHandler.startReadingFromDocument(DefaultEntityHandler.java:549)
at weblogic.apache.xerces.framework.XMLParser.parseSomeSetup(XMLParser.java:318)
at weblogic.apache.xerces.framework.XMLParser.parse(XMLParser.java:974)
THIS WORKS IN OTHER WEBLOGIC INSTANCES IN THE SAME CLUSTER.
Thanks in advance
BGopal

Fixed it temporarily.
Go to the weblogic console, Select your web application in the left pane,
Click on Other tab in the right pane, Check 'Prefer Web Inf Classes', restart server.

Similar Messages

  • Xml parsing in weblogic 6.0: can't build tree

    Environment: weblogic 6.0
    Using: xalan.jar, jaxp.jar and crimson.jar.
    (but probably conflicting with other parsers included in weblogic??)
    I have a component that reads xml file working on weblogic 5.1. When
    migrated to 6.0, it seems it starts reading but doesnt build the whole
    tree (it just reads the root node).I seems that its parsing the xml
    file as its returning node name and number of children, but
    it doesnt go further reading other nodes.
    We placed in classpath our parser specific jars before weblogic's jars
    also.
    We have double-checked our source xml and dtd, and added an XML
    Registry in weblogic's console
    We dont know what xalan version this component uses. (1.X or 2.0.d6)
    Is there any problem with xalan versions or xml registration in
    weblogic?
    Please--- HELP.. :) thanks so much in advance..

    Please post this to the XML newsgroup.
    -- Rob
    seguia wrote:
    Environment: weblogic 6.0
    Using: xalan.jar, jaxp.jar and crimson.jar.
    (but probably conflicting with other parsers included in weblogic??)
    I have a component that reads xml file working on weblogic 5.1. When
    migrated to 6.0, it seems it starts reading but doesnt build the whole
    tree (it just reads the root node).I seems that its parsing the xml
    file as its returning node name and number of children, but
    it doesnt go further reading other nodes.
    We placed in classpath our parser specific jars before weblogic's jars
    also.
    We have double-checked our source xml and dtd, and added an XML
    Registry in weblogic's console
    We dont know what xalan version this component uses. (1.X or 2.0.d6)
    Is there any problem with xalan versions or xml registration in
    weblogic?
    Please--- HELP.. :) thanks so much in advance..

  • Problem in web.xml file with weblogic server 8.1

    Hi frnds,
    I was deployed one Enterprise Application,it deploys successfully. But in server side thows Exeception in web.xml file.
    Here the actual Exception
    <HTTP> <BEA-101248> <[Application:
    'G:\bea\user_projects\domains\mydomain\myserver\upload\jasmine.ear', Module: 'Ja
    smine']: Deployment descriptor "web.xml" is malformed. Check against the DTD: or
    g.xml.sax.SAXParseException: The content of element type "web-app" must match "(
    icon?,display-name?,description?,distributable?,context-param*,filter*,filter-ma
    pping*,listener*,servlet*,servlet-mapping*,session-config?,mime-mapping*,welcome
    -file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,security-constra
    int*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-ref*)". (line 61
    , column 11).>
    My web.xml file as follws....
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.4//EN"
    "http://java.sun.com/dtd/web-app_2_4.dtd">
    <web-app>
    <display-name>Jasmine Applications</display-name>
    <description>
    Jasmine Applications
    </description>
    <servlet>
    <servlet-name>LoginServlet</servlet-name>
    <servlet-class>examples.LoginServlet</servlet-class>
    <init-param>
    <param-name>java.naming.factory.initial</param-name>
    <param-value>weblogic.jndi.WLInitialContextFactory</param-value>
    </init-param>
    <init-param>
    <param-name>java.naming.provider.url</param-name>
    <param-value>t3://localhost:7001</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>ShowQuoteServlet</servlet-name>
    <servlet-class>examples.ShowQuoteServlet</servlet-class>
    <init-param>
    <param-name>java.naming.factory.initial</param-name>
    <param-value>weblogic.jndi.WLInitialContextFactory</param-value>
    </init-param>
    <init-param>
    <param-name>java.naming.provider.url</param-name>
    <param-value>t3://localhost:7001</param-value>
    </init-param>
    </servlet>
    <servlet>
    <servlet-name>CatalogServlet</servlet-name>
    <servlet-class>examples.CatalogServlet</servlet-class>
    <init-param>
    <param-name>java.naming.factory.initial</param-name>
    <param-value>weblogic.jndi.WLInitialContextFactory</param-value>
    </init-param>
    <init-param>
    <param-name>java.naming.provider.url</param-name>
    <param-value>t3://localhost:7001</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>LoginServlet</servlet-name>
    <url-pattern>/login/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>ShowQuoteServlet</servlet-name>
    <url-pattern>/showQuote/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>CatalogServlet</servlet-name>
    <url-pattern>/catalog/*</url-pattern>
    </servlet-mapping>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>My secure resources</web-resource-name>
    <description>Resources to be placed under security control.</description>
    <url-pattern>/private/*</url-pattern>
    <url-pattern>/registered/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>guest</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <realm-name>WebApp</realm-name>
    <form-login-config>
    <form-login-page>/login.jsp</form-login-page>
    <form-error-page>/error.jsp</form-error-page>
    </form-login-config>
    </login-config>
    <!-- Security roles referenced by this web application -->
    <security-role>
    <description>The role allowed to access our content</description>
    <role-name>guest</role-name>
    </security-role>
    </web-app>
    pls give me a good solution this exception.. I tried lot..
    Thanks in Advance
    Regards
    Priya

    Your DOCTYPE references 2.4, it should be 2.3. WLS 8.1 supports J2EE 1.3 which was servlet 2.3.
    Servlet 2.4 is part of J2EE 1.4 and is supported by WLS 9.0/9.1. Also it uses XML Schema not a DTD.
    -- Rob
    WLS Blog http://dev2dev.bea.com/blog/rwoollen/

  • XML Parsing in Weblogic

    Hi all,
    Am releatively new to weblogic and am migrating my web app from the tomcat container to weblogic 9.2
    I use a XerxesImpl jar to parse my XML using a DOMParser and I dont want to use any libraries provided by weblogic atleast now!!
    It always gives the SAXParserException, but the same bit of code works fine with the tomcat container.
    I have also checked for the well-formedness of the xml and the xml and the dtd looks fine.
    Any inputs on this would help!
    Thnx
    Cyrus

    The solution to this being that ---
    1. Whenever using the local jar file for any XML parsing such as XerxesImpl.jar the weblogic provided services may try to override it and hence must be added on to the classpath before the ap[plication is deployed.
    2.Also that somtimes the pageContext.getServletContext() returns a null and hence some other means mustbe found to find the corresponding xml file.(probably loading it as an initparam)
    3. Also make sure that your xml matches the dtd declarations since atomcat container doesnt validate this but the weblogic container.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • XML Beans and Weblogic Server 8.1

    Hi,
    Does anyone know if XML beans is shipped with Weblogic 8.x (or is it only part
    of the Weblogic Workshop) ?
    Thanks,
    Arun

    Greg,
    The classes required for running these command line tools are all there, but
    we have not put the script files in the version bundled with WebLogic
    server. Its very likely to be part of the next service pack release.
    Meanwhile, you can always run the classes from the command line, or write
    your own script. For instance, the dumpxsb.cmd has the following:
    set cp=
    set cp=%cp%;%XMLBEANDIR%\xbean.jar
    java -classpath %cp% com.bea.xbean.tool.XsbDumper %*
    So you can always write this on your own, or just run the concerned class
    from the command line.
    Let me know if you have any further queries.
    Regards,
    Anurag
    "Greg" <[email protected]> wrote in message news:1061965730.933286@ns1...
    Hi,
    Is it possible to use the version of xmlbeans bundled with workshop in a
    standalone sense? Are all the command line tools there? If so can yougive
    a pointer to where abouts in the Workshop download to look for this.
    The reason I ask is noting the following I saw -:
    Note: XQuery is currently only available with the version of XMLBeans
    included with WebLogic Platform. We hope to add these capabilities to the
    stand-alone version soon.
    Greg
    "Raj Alagumalai" <[email protected]> wrote in message
    news:[email protected]..
    Arun,
    WebLogic Platform 8.1 GA which includes Workshop does contain an
    xmlbeans
    implementation.
    We also have a stand alone implementation which is available on dev2dev.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Arun" <[email protected]> wrote in message
    news:3f38da48$[email protected]..
    Thanks. But what we have found out from BEA is that it does not shipwith Weblogic
    Server. You have to download it separately.
    "Dmitri Colebatch" <[email protected]> wrote:
    Does anyone know if XML beans is shipped with Weblogic 8.x (or is it
    only part of the Weblogic Workshop) ?yes, it is shipped in Platform 8.1 (I'm pretty sure its shipping in
    Server
    8.1
    too). Although the version is slightly older than the version
    available
    on the
    dev2dev site.
    cheers
    dim

  • How to make changes effect in log4j.xml without restarting weblogic server

    Hi ,
    I have successfully configured log4j in my weblogic server 8.1.
    Everytime i made a change in log4j.xml i need to restart the server
    is there any configuration or parameter to set without restarting server??
    Thanks in advance,
    CK

    I don't think you need to restart the server, atleast I never needed to when making changes to jsp pages. You only need to restart when you make changes to java classes. Some might argue jsp is converted to servlet which is a java class.....
    Try refreshing the page when you make any changes. This works for me, if it doesn't work try turning reloadable="true" in your context path in tomcat's server.xml

  • Info about logging.xml in JDeveloper weblogic domains? JDK Logging Control

    Is there any documentation on the file <DomainDir>/config/fmwconfig/servers/<ServerName>/logging.xml?
    It seems to control JDK 1.4 logging for my weblogic server and overrides settings from the logging.properties file.
    This is important new behaviour!
    Is it documented somewhere?

    I see some message about a proxy. Have you checked that you can use the proxy from you network?
    If not you should turn the proxy off.
    Timo

  • Ejb-jar.xml中的EJB QL和weblogic-cmp-rdbms-jar.xml中的WLQL

    我想问一下,在ejb-jar.xml文件中用EJB QL查询语言定义了相应的EJB QL查询语句后,在weblogic-cmp-rdbms-jar.xml文件中还需不需要用wlql语言来定义相应的查询语句呀?

    在Weblogic6.0中,如果你需要利用EJB2.0的EJBQL语言所不提供的
    ORDERBY排序功能,那么这时候可以在weblogic-cmp-rdbms-jar.xml中用WLQL覆盖它,一般情况下,在ejb-jar.xml中声明一个EJBQL方法就可以了,WLQL可有可无。

  • Strategy for International/XML App on Weblogic 6.1

    Folks,
    I will be architecting/developing an application as follows:
    1) Support for English/Spanish Presentation
    2) No Database Available
    3) All site data stored in flat files or XML files
    4) XML messages sent/received from third parties
    5) App Server will be Weblogic 6.1
    6) Use cookie to store user name, address, phone, etc...
    7) Use third party Applications (via HTTP) to book reservations, map
    vicinity etc...
    8) Need Admin Interface to Manage Spanish/English Content9) Development will
    be done on Windows 2000, Deployment on Solaris
    I would appreciate your experiences/ideas about the best way to Architect
    this application.
    Here are some things I've been thinking...
    1) We will Struts!!!
    2) Use ApplicationResources file to contain all presentation strings
    3) Is Log4J better than servletcontext.log()?
    4) Use SSL to transfer user credit card info
    5) Use JDOM/Digester to work with XML messages
    6) How to service XML (XML-RPC, Weblogic Services, Message Beans, Struts
    Actions via HTTP)???
    7) Which struts features can I use for Cookies? logic:present for testing,
    what about setting?
    8) I'm comfortable with DTDs, should I use schemas instead?9) Can I even use
    EJBs (Session or Message Beans) without DB support?
    Your ideas will be appreciated...
    Thanks,
    Robert Jackson

    Folks,
    I will be architecting/developing an application as follows:
    1) Support for English/Spanish Presentation
    2) No Database Available
    3) All site data stored in flat files or XML files
    4) XML messages sent/received from third parties
    5) App Server will be Weblogic 6.1
    6) Use cookie to store user name, address, phone, etc...
    7) Use third party Applications (via HTTP) to book reservations, map
    vicinity etc...
    8) Need Admin Interface to Manage Spanish/English Content9) Development will
    be done on Windows 2000, Deployment on Solaris
    I would appreciate your experiences/ideas about the best way to Architect
    this application.
    Here are some things I've been thinking...
    1) We will Struts!!!
    2) Use ApplicationResources file to contain all presentation strings
    3) Is Log4J better than servletcontext.log()?
    4) Use SSL to transfer user credit card info
    5) Use JDOM/Digester to work with XML messages
    6) How to service XML (XML-RPC, Weblogic Services, Message Beans, Struts
    Actions via HTTP)???
    7) Which struts features can I use for Cookies? logic:present for testing,
    what about setting?
    8) I'm comfortable with DTDs, should I use schemas instead?9) Can I even use
    EJBs (Session or Message Beans) without DB support?
    Your ideas will be appreciated...
    Thanks,
    Robert Jackson

  • XML Beans and Weblogic 7

    Hi - I am interested to use the XML Beans development kit - but I only have a
    WebLogic 7 app server to work with. Is there a way to get around the requirement
    for xqrl.jar to run the examples such as the easypo example? I found myself getting
    compilation errors for the src files that were generated by the schema compiler
    complaining about not being able to find some com.bea.xquery classes which I am
    assuming reside in this jar (xqrl.jar). Is it required that I download the whole
    WLS 8.1 platform just to get this jar? Thanks for any advice.

    Greg,
    The classes required for running these command line tools are all there, but
    we have not put the script files in the version bundled with WebLogic
    server. Its very likely to be part of the next service pack release.
    Meanwhile, you can always run the classes from the command line, or write
    your own script. For instance, the dumpxsb.cmd has the following:
    set cp=
    set cp=%cp%;%XMLBEANDIR%\xbean.jar
    java -classpath %cp% com.bea.xbean.tool.XsbDumper %*
    So you can always write this on your own, or just run the concerned class
    from the command line.
    Let me know if you have any further queries.
    Regards,
    Anurag
    "Greg" <[email protected]> wrote in message news:1061965730.933286@ns1...
    Hi,
    Is it possible to use the version of xmlbeans bundled with workshop in a
    standalone sense? Are all the command line tools there? If so can yougive
    a pointer to where abouts in the Workshop download to look for this.
    The reason I ask is noting the following I saw -:
    Note: XQuery is currently only available with the version of XMLBeans
    included with WebLogic Platform. We hope to add these capabilities to the
    stand-alone version soon.
    Greg
    "Raj Alagumalai" <[email protected]> wrote in message
    news:[email protected]..
    Arun,
    WebLogic Platform 8.1 GA which includes Workshop does contain an
    xmlbeans
    implementation.
    We also have a stand alone implementation which is available on dev2dev.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Arun" <[email protected]> wrote in message
    news:3f38da48$[email protected]..
    Thanks. But what we have found out from BEA is that it does not shipwith Weblogic
    Server. You have to download it separately.
    "Dmitri Colebatch" <[email protected]> wrote:
    Does anyone know if XML beans is shipped with Weblogic 8.x (or is it
    only part of the Weblogic Workshop) ?yes, it is shipped in Platform 8.1 (I'm pretty sure its shipping in
    Server
    8.1
    too). Although the version is slightly older than the version
    available
    on the
    dev2dev site.
    cheers
    dim

  • Toplink-ejb-jar.xml config with weblogic-ejb-jar.xml

    Hello,
    To use toplink with EJB's deployed in Weblogic.
    I changed weblogic-ejb-jar.xml :
    (Because, it does not allow me to change <type-identifier> and <type-version> elements)
    <type-identifier>WebLogic_CMP_RDBMS</type-identifier>
    <type-version>7.0</type-version>
    <type-storage>META-INF/toplink-ejb-jar.xml</type-storage>
    Here, is the toplink-ejb-jar.xml:
    (Because, I am asked to give PUBLIC value for Weblogic 8.1.0....)
    <!DOCTYPE toplink-ejb-jar PUBLIC "-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB RDBMS Persistence//EN" "file://D:/Toplink10g/toplink/config/dtds/toplink-wls-ejb-jar_10_0_3.dtd">
    <toplink-ejb-jar>
    <session>
    <name>myUniqueSession</name>
    <project-xml>META-INF/project.xml</project-xml>
    <login>
    <connection-pool>demoPool</connection-pool>
    </login>
    </session>
    </toplink-ejb-jar>
    1. I have also given full path to the "toplink-wls-ejb-jar_10_0_3.dtd", but I still get parsing error:
    "myBeans.jar": [EJB:011019]While reading META-INF/toplink-ejb-jar.xml, the persistence layer of the Entity EJB failed to deploy. The error was:
    "myBeans.jar": Error in descriptor line 5: Error parsing file at line: 5 column: 18. Element type "toplink-ejb-jar" must be declared..
    2. Also, How I can avoid the full path to the DTD???
    Thanks for your help in this regard!

    You are not properly configured to use TopLink with Weblogic. You need to place the TopLink_CMP_Descriptor.xml install file in your Weblogic lib/persistence directory. Add "TopLink_CMP_Descriptor.xml" to your persistence.install file and then update weblogic-ejb-jar.xml to reference the correct TopLink persistence type and versions, ie,
    <type-identifier>TopLink_CMP_2_0</type-identifier>
    <type-version>10</type-version>
    <type-storage>META-INF/toplink-ejb-jar.xml</type-storage>
    See the TopLink developer guide for more information and configuration details.
    http://download-east.oracle.com/docs/cd/B10464_05/web.904/b10313/pkg_depl.htm#1124524
    Cheers,
    Guy

  • WEB.XML gives me an error while deploying a Web Application in Weblogic 5.1

    I have a Web.xml which I copied the one from their documentation and edited for my servlet specific data. When I try to deploy it I am getting the following error.
              Wed Nov 15 17:10:37 EST 2000:<E> <HTTP> Error reading Web application 'C:/tomcat
              /webapps/La/'
              java.net.UnknownHostException: java.sun.com
              Can you throw some light on this? I have included the first three lines from the WEB,XML file where weblogic is choking.
              <?xml version="1.0" encoding="UTF-8"?>
              <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN'
              'http://java.sun.com/j2ee/dtds/webapp_2_2.dtd'>
              Thank You
              Trisula P. Siripurapu
              

              Hi Jacek,
              Thank you for your suggestion. I changed the Web App version to 1.2 instead of 2.2. It worked. Thanks once again for the timely response. I really do appreciate it.
              Trisula Pani Siripurapu.
              Jacek Laskowski <[email protected]> wrote:
              >"Trisula P. Siripurapu" wrote:
              >>
              >> I have a Web.xml which I copied the one from their documentation and edited for my servlet specific data. When I try to deploy it I am getting the following error.
              >> Wed Nov 15 17:10:37 EST 2000:<E> <HTTP> Error reading Web application 'C:/tomcat
              >> /webapps/La/'
              >> java.net.UnknownHostException: java.sun.com
              >
              >I remember having the same problem before I added the latest service
              >pack (SP 6). If you don't want to download it, just change DOCTYPE to
              >
              ><!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application
              >1.2//EN' 'http://java.sun.com/j2ee/dtds/webapp_2_2.dtd'>
              >
              >and it should work. Notice the change of Web Application version - 1.2
              >rather then 2.2. I'm (almost) sure, I saw one example - examples/webapp
              >(?) - with this header. Take a look at the accompanying examples.
              >
              >When you apply SP6, things should work as they suppose to.
              >
              >> Trisula P. Siripurapu
              >
              >Jacek Laskowski
              

  • Creation of Virtual Directory in weblogic.xml (OBIEE11 Weblogic)

    We are using OBIEE 11.1.1.6.4, we want to create a Virtual directory mapping in weblogic server so that we can place our static image files to access from the application URL.
    To do this activity, we have performed following steps -
    1) Navigated to C:\OBIEE11G\Oracle_BI1\bifoundation\jee
    2) Open analytics.ear file
    3) Existing code in weblogic.xml is: (if weblogic.xml is not present we need to create the file with below code)
    <?xml version = '1.0' encoding = 'US-ASCII'?>
    <weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app">
    <session-descriptor>
    <cookie-path>/analytics</cookie-path>
    </session-descriptor>
    </weblogic-web-app>
    4) We have added virtual-directory-mapping tag; After adding virtual directory mapping tag, the code in weblogic.xml is
    <?xml version = '1.0' encoding = 'US-ASCII'?>
    <weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app">
    <session-descriptor>
    <cookie-path>/analytics</cookie-path>
    </session-descriptor>
    <virtual-directory-mapping>
    <local-path>D:/virtualdirectory</local-path>
    <url-pattern>/images/*</url-pattern>
    <url-pattern>*.jpeg</url-pattern>
    </virtual-directory-mapping>
    </weblogic-web-app>
    5) We have created a folder virtualdirectory under D: drive. And then created a folder images within folder virtualdirectory.
    6) Then we have placed an image (lets say) test.jpeg within image folder.
    7) Restarted all BI services,
    8) Now when we try to access URL http://localhost:9704/analytics/images/test.gif. Now we are able to see the image, it’s working perfectly fine.
    If we paste the above URL in browser it will automatically displays the image without any authentication. So our requirement is, on pasting the URL in browser first it should redirect to OBIEE homepage and when authentication is done then it should display the image.
    Request you to please advise with your inputs.

    Why did you modify analytics.ear ?
    Should'nt you make changes here : Middleware_Home>\instances\instance1\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1
    \analyticsRes\WEB_INF\web.xml
    Follow this note : OBIEE 11g: How To Access Custom Files Through URL By Creating Virtual Directory In Weblogic Server? [ID 1408240.1]
    And you should be able to deploy that virtual directory and access it after authentication.
    HTH,
    SVS

  • Migration to Weblogic 10.3.5 + Java 1.6:  xml errors

    Hi all,
    I describe my scenario:
    I have a web application that works correctly on weblogic 8.1 + jdk 1.4.
    Now i'm trying to migrate this web app on RHEL5 + weblogic 10.3.5 + Java SE Runtime Environment (build 1.6.0_25-b06).
    Deploying stage gives me no errors (exploded folder), and application starting too.
    But when i go into a section of the application that handles xml files, there are several errors like these, and i can't go on:
    (package exception): Error calling (method)
    at mypackage...
    at mypackage...
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    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.ServletStubImpl.execute(ServletStubImpl.java:183)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3717)
    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)
    This is the list of xml jars involved in the application:
         - esheetxml.jar
         - jaxb-api_1_0.jar
         - jaxb-libs.jar
         - jaxb-ri.jar
         - serializer.jar
         - sunxmlextension.jar
         - xalan.jar (1.3)
         - xercesImpl.jar
         - xerces.jar
         - xml-apis.jar
         - xmlparser2015mod.jar
         - xmlParserAPIs.jar
    Main server log properties:
         -java.class.path = /home/weblogic10/patch_wls1035/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/java/jdk1.6.0_25/lib/tools.jar:/home/weblogic10/wlserver_10.3/server/lib/weblogic_sp.jar:/home/weblogic10/wlserver_10.3/server/lib/weblogic.jar:/home/weblogic10/modules/features/weblogic.server.modules_10.3.5.0.jar:/home/weblogic10/wlserver_10.3/server/lib/webservices.jar:/home/weblogic10/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/home/weblogic10/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/home/weblogic10/wlserver_10.3/common/derby/lib/derbyclient.jar:/home/weblogic10/wlserver_10.3/server/lib/xqrl.jar
         -java.class.version = 50.0
         -java.endorsed.dirs = /usr/java/jdk1.6.0_25/jre/lib/endorsed
         -java.ext.dirs = /usr/java/jdk1.6.0_25/jre/lib/ext:/usr/java/packages/lib/ext
         -java.home = /usr/java/jdk1.6.0_25/jre
         -java.io.tmpdir = /tmp
         -java.library.path = /usr/java/jdk1.6.0_25/jre/lib/i386/client:/usr/java/jdk1.6.0_25/jre/lib/i386:/usr/java/jdk1.6.0_25/jre/../lib/i386:/home/weblogic10/patch_wls1035/profiles/default/native:/home/weblogic10/wlserver_10.3/server/native/linux/i686:/home/weblogic10/wlserver_10.3/server/native/linux/i686/oci920_8:/usr/java/packages/lib/i386:/lib:/usr/lib
         -java.runtime.version = 1.6.0_25-b06
         -java.version = 1.6.0_25
         -javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
         -javax.xml.soap.MessageFactory = weblogic.webservice.core.soap.MessageFactoryImpl
         -org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
         -org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
         -org.xml.sax.driver = weblogic.xml.jaxp.RegistryXMLReader
         -org.xml.sax.parser = weblogic.xml.jaxp.RegistryParser
         -os.name = Linux
         -os.version = 2.6.18-128.el5
         -sun.boot.class.path = /usr/java/jdk1.6.0_25/jre/lib/resources.jar:/usr/java/jdk1.6.0_25/jre/lib/rt.jar:/usr/java/jdk1.6.0_25/jre/lib/sunrsasign.jar:/usr/java/jdk1.6.0_25/jre/lib/jsse.jar:/usr/java/jdk1.6.0_25/jre/lib/jce.jar:/usr/java/jdk1.6.0_25/jre/lib/charsets.jar:/usr/java/jdk1.6.0_25/jre/lib/modules/jdk.boot.jar:/usr/java/jdk1.6.0_25/jre/classes
         -sun.boot.library.path = /usr/java/jdk1.6.0_25/jre/lib/i386
         -weblogic.ext.dirs = /home/weblogic10/patch_wls1035/profiles/default/sysext_manifest_classpath
         -weblogic.management.discover = true
    I tried these actions, but without success:
    - run Classloader Analysis Tool and insert <prefer-application-packages> list in weblogic.xml;
    - copy these jars into java endorsed folder;
    - force different xml parser into jvm parameters;
    - tried proposed solutions about this topic in forum
    I'm afraid there's a conflict between jar WL and jar application (or a parsing problem), but i'm not sure.
    I hope in your help,
    thank you.
    George

    Solved.
    I removed glassfish.jaxb_1.0.0.0_2-1-12.jar from lib modules

  • Weblogic.servlet.reloadCheckSecs in web.xml not working

    Given the following web.xml file:
              <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
              1.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              <web-app>
              <context-param>
              <param-name>weblogic.servlet.reloadCheckSecs</param-name>
              <param-value>100</param-value>
              </context-param>
              <servlet>
              <servlet-name>CookieCounter</servlet-name>
              <servlet-class>servlets.CookieCounter</servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>CookieCounter</servlet-name>
              <url-pattern>monster</url-pattern>
              </servlet-mapping>
              <welcome-file-list>
              <welcome-file>hello.html</welcome-file>
              </welcome-file-list>
              <error-page>
              <error-code>404</error-code>
              <location>/error.jsp</location>
              </error-page>
              </web-app>
              It seems the weblogic.servlet.reloadCheckSecs property is not taking effect.
              The
              default value of -1 is always used. I did stop and restart weblogic.
              I also trid to set the servlet classpath in the web.xml file with
              weblogic.servlet.classpath
              property and it did not change the classpath for the servlet. It seems that
              other
              items are working such as adding new servletrs to the web application. Note
              that
              this is the cookie sample application that installes with the beta 2
              download.
              Thanks,
              Dan.
              

    Hi All:
    Thanks for all your help regarding the adfAuthentication success_url. Now I am able to configure to make this work. But now I am facing another issue i.e. I am getting 401 Not authorized message when the success_url is pointed to the jspx page.
    Note: I am using custom login module similar to DBProcOraDataSourceLoginModule so my roles are stored in the custom Role class. So I am not sure how to pass this role info to the security in ADF in order to authorize the page to be viewed.
    Could you please help and can you point me to any specific link.
    Thanks & Regards
    Sridhar Doki

Maybe you are looking for

  • Error messages in notification box

    Hi, I have a process that delete a selected record in a list. The process is triggered when the user click on a link in a list of status that put an ID in the session an assign 'DELETE' to &REQUEST. The process is located in the after-header section

  • Using iphone on TV to watch movies view images

    Info PR: ? I: ? L: ? LD: ? I: ? Rank: ? Age: ? I: ? whois source Robo: ? Sitemap: ? Rank: ? Price: ? Links: 22(8)|18 Density I have an LG TV. Tech changed settings and now it won't recognise device to watch movies or view images. TV recognises a usb

  • After Effects CS6 Will not open // Does not work with MAC OS X

    I recently installed and reinstalled CS6 Production Premium, numerous times. All of the programs work except for After Effects. I get a message saying that I cannot this version of Adobe After Effects CS6 with this version of OS X. You have Adobe Aft

  • Keynote Power Point Producer

    Can anyone tell me if Keynote is able to do what Powerpoint Producer will do..ie record video/audio linked to power point slides. Powerpoint producer is a free download from MS but doesn't seem to be availble for Mac office 2004?. I would prefer to u

  • Is 10g R2 a full version?

    Friends, ============ To download Oracle Database 10g Release 2 from OTN, point your browser (Firefox works well) to http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201linuxsoft.html. Fill out the Eligibility Export Res