Weblogic server's bug

          see my code:
          package testpath;
          import javax.servlet.*;
          import javax.servlet.http.*;
          import java.io.*;
          import java.util.*;
          import java.net.*;
          public class Servlet1 extends HttpServlet {
          static final private String CONTENT_TYPE = "text/html; charset=GBK";
          //Initialize global variables
          public void init() throws ServletException {
          //Process the HTTP Get request
          public void doGet(HttpServletRequest request, HttpServletResponse response) throws
          ServletException, IOException {
          response.setContentType(CONTENT_TYPE);
          PrintWriter out = response.getWriter();
          out.println("<html>");
          out.println("<head><title>Servlet1</title></head>");
          out.println("<body>");
          out.println("<p>The servlet has received a GET. This is the reply.</p>");
          out.println("</body></html>");
          try {
          String path=getServletContext().getResource("/WEB-INF/classes/testpath/aa.properties").getPath();
          System.out.println(path);
          FileInputStream fin=new FileInputStream(path);
          catch (MalformedURLException ex) {
          ex.printStackTrace();
          //Clean up resources
          public void destroy() {
          when i debug it within the developing environment(jbuilder7+weblogic6.1),it works
          well,but when i pack it as war file and deploy it to weblogic server,it output
          as follow:
          <2002-8-30 &#19979;&#21320;01&#26102;49&#20998;59&#31186;> <Error> <HTTP> <[WebAppServletContext(5996995,testp
          ath,/testpath)] Servlet failed with IOException
          java.io.FileNotFoundException: E:/bea/wlserver6.1/config/mydomain/applications/.
          wlnotdelete/wl_comp33043.war/WEB-INF/classes/testpath/aa.properties (&#31995;&#32479;&#25214;&#19981;&#21040;
          &#25351;&#23450;&#30340;&#36335;&#24452;&#12290;
          at java.io.FileInputStream.open(Native Method)
          at java.io.FileInputStream.<init>(FileInputStream.java:64)
          at testpath.Servlet1.doGet(Servlet1.java:32)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          pl.java:265)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          pl.java:200)
          at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
          rvletContext.java:2495)
          at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
          pl.java:2204)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >
          but when i open the directory i find that the correct directory is:
          E:/bea/wlserver6.1/config/mydomain/applications/.wlnotdelete/wl_comp41635.war/W
          EB-INF/classes/testpath/aa.properties
          but if i tell the weblogic print the path,it display:
          E:/bea/wlserver6.1/config/mydomain/applications/.wlnotdelete/wl_comp41635.war!/W
          EB-INF/classes/testpath/aa.properties
          the weblogic add a "!" to the path(after wl_comp41635.war),if i remove the "!",it
          still can't find the path,but when i use "getResourceAsStream(path)",it works
          well,why?
          i think it's a bug of weblogic?
          who have the similar experience?
          

          Change the following lines:
          String path=getServletContext().getResource("/WEB-INF/classes/testpath/aa.properties").getPath();
          FileInputStream fin=new FileInputStream(path);
          to
          InputStream fin = getServletContext().getResourceAsStream("/WEB-INF/classes/testpath/aa.properties");
          Since the property file is archived into WAR, you cannot open it directly as a
          file.
          "Markus Eisele" <[email protected]> wrote:
          >
          >Guess you cannot read a file from a war-file
          >
          >Try expanding your war and deploy again.
          >
          >Greetings
          >Markus
          >
          >"zhebin cong" <[email protected]> wrote:
          >>
          >>see my code:
          >>
          >>package testpath;
          >>
          >>import javax.servlet.*;
          >>import javax.servlet.http.*;
          >>import java.io.*;
          >>import java.util.*;
          >>import java.net.*;
          >>
          >>public class Servlet1 extends HttpServlet {
          >>static final private String CONTENT_TYPE = "text/html; charset=GBK";
          >>//Initialize global variables
          >>public void init() throws ServletException {
          >>
          >>}
          >>//Process the HTTP Get request
          >>public void doGet(HttpServletRequest request, HttpServletResponse response)
          >>throws
          >>ServletException, IOException {
          >>response.setContentType(CONTENT_TYPE);
          >>PrintWriter out = response.getWriter();
          >>out.println("<html>");
          >>out.println("<head><title>Servlet1</title></head>");
          >>out.println("<body>");
          >>out.println("<p>The servlet has received a GET. This is the reply.</p>");
          >>out.println("</body></html>");
          >>try {
          >>String path=getServletContext().getResource("/WEB-INF/classes/testpath/aa.properties").getPath();
          >>System.out.println(path);
          >>FileInputStream fin=new FileInputStream(path);
          >>}
          >>catch (MalformedURLException ex) {
          >>ex.printStackTrace();
          >>}
          >>
          >>}
          >>//Clean up resources
          >>public void destroy() {
          >>}
          >>}
          >>
          >>when i debug it within the developing environment(jbuilder7+weblogic6.1),it
          >>works
          >>well,but when i pack it as war file and deploy it to weblogic server,it
          >>output
          >>as follow:
          >>
          >><2002-8-30 &#19979;&#21320;01&#26102;49&#20998;59&#31186;> <Error> <HTTP>
          >><[WebAppServletContext(5996995,testp
          >>ath,/testpath)] Servlet failed with IOException
          >>java.io.FileNotFoundException: E:/bea/wlserver6.1/config/mydomain/applications/.
          >>wlnotdelete/wl_comp33043.war/WEB-INF/classes/testpath/aa.properties
          >(&#31995;&#32479;&#25214;&#19981;&#21040;
          >>&#25351;&#23450;&#30340;&#36335;&#24452;&#12290;
          >>at java.io.FileInputStream.open(Native Method)
          >>at java.io.FileInputStream.<init>(FileInputStream.java:64)
          >>at testpath.Servlet1.doGet(Servlet1.java:32)
          >>at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          >>at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          >>at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          >>pl.java:265)
          >>at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          >>pl.java:200)
          >>at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
          >>rvletContext.java:2495)
          >>at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
          >>pl.java:2204)
          >>at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          >>at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >>>
          >>
          >>but when i open the directory i find that the correct directory is:
          >>E:/bea/wlserver6.1/config/mydomain/applications/.wlnotdelete/wl_comp41635.war/W
          >>EB-INF/classes/testpath/aa.properties
          >>
          >>
          >>but if i tell the weblogic print the path,it display:
          >>E:/bea/wlserver6.1/config/mydomain/applications/.wlnotdelete/wl_comp41635.war!/W
          >>EB-INF/classes/testpath/aa.properties
          >>
          >>the weblogic add a "!" to the path(after wl_comp41635.war),if i remove
          >>the "!",it
          >>still can't find the path,but when i use "getResourceAsStream(path)",it
          >>works
          >>well,why?
          >>
          >>i think it's a bug of weblogic?
          >>
          >>who have the similar experience?
          >>
          >>
          >
          

Similar Messages

  • Weblogic Server 8.1 SP1 bug?

    Hello,
              I have a problem when using XML JSP in combination with Struts tags, allthough I have the feeling that any other TLD will have the same problem.
              The <html:link page="http://www.home.nl">Home</html:link>
              is not rendered properly by WL. The result is:
              <a href="/ipmtoolhttp://www.home.nl"></a>
              Note the fact that the text 'Home' is missing in the anchor. This makes the link 'unclickable' in the browser.
              I have tested this code on Tomcat 5.0.27 as well and there the code renders properly.
              I think its a bug. The question is, has it been solved in SP2 or SP3?
              Below is the complete source:
              <?xml version="1.0" encoding="utf-8"?>
              <jsp:root xmlns="http://www.w3.org/1999/xhtml"
              xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2"
              xmlns:bean="/WEB-INF/tlds/struts-bean.tld"
              xmlns:html="/WEB-INF/tlds/struts-html.tld"
              xmlns:logic="/WEB-INF/tlds/struts-logic.tld"
              xmlns:tiles="/WEB-INF/tlds/struts-tiles.tld">
              <html>
              <body>
              <html:link page="http://www.home.nl">Home</html:link>
              <html:link page="http://www.home.nl">
              <jsp:text>Home</jsp:text></html:link>
              </body>
              </html>
              </jsp:root>
              -----------------------------

    What about Red Hat 7.2 ?
    I do not understand very well if this version has anything to do with the
    ones mentioned on supported platforms
    thanks
    "Raj Alagumalai" <[email protected]> escribió en el mensaje
    news:[email protected]..
    Campot,
    Unfortunately WLS 8.1 sp1 is not supported on RedHat 7.1
    http://e-docs.bea.com/wls/certifications/certs_810/overview.html#1043408
    should provide you more information on this.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Campot" <[email protected]> wrote in message
    news:[email protected]..
    Can I install WebLogic Server 8.1 SP1 on Linux Redhat 7.1?
    I looked the documentation and it is not clear if the server runs on
    this
    Linux version
    Thanks

  • Ecperf runtime bugs on BEA WebLogic Server

    I have deployed Ecperf on Weblogic server, Oracle DB on Win 2000 and tested it
    with the web client according to the Ecperf/README.html document, all the tests
    worked just fine. And I also did a data load using "loaddb.nt.bat" file, the load
    was successful. But, when I run the driver, I get the following error,
    Note: I have also tried deployed SequenceEnt to use a seperate connection pool
    with an isolation level of serializable to work correctly.
    (Special value for use in Weblogic with Oracle DBMS Only: TRANSACTION_READ_COMMITTED_FOR_UPDATE
    When this Isolation level is set for a method, the following happens: The Isolation
    Level is set to: TRANSACTION_READ_COMMITTED For duration of the Transaction, all
    SQL 'SELECT' statements executed in any method are executed with 'FOR UPDATE'
    appended to them. This causes the SELECTed rows to be locked for update. This
    isolation level can be used to avoid the error: java.sql.SQLException: ORA-08177:
    can't serialize access for this transaction which can happen when using the TRANSACTION_SERIALIZABLE
    isolation with Oracle DBMS )
    com.sun.ecperf.mfg.workorderent.ejb.WorkOrderBmpEJB_gfyuby_Impl at com.sun.ecper
    : SQLException: INSERT into M_workorder : Failed : ORA-00001: unique constraint
    (ECPERF.M_WO_IDX) violated
    java.sql.SQLException: ORA-00001: unique constraint (ECPERF.M_WO_IDX) violated
    at weblogic.db.oci.OciCursor.getCDAException(OciCursor.java:240)
    at weblogic.jdbc.oci.Statement.executeUpdate(Statement.java:990)
    at weblogic.jdbc.pool.Statement.executeUpdate(Statement.java:293)
    at weblogic.jdbc.rmi.internal.PreparedStatementImpl.executeUpdate(PreparedStatementImpl.java:66)
    at weblogic.jdbc.rmi.SerialPreparedStatement.executeUpdate(SerialPreparedStatement.java:57)
    at com.sun.ecperf.mfg.workorderent.ejb.WorkOrderBmpEJB.ejbCreate(WorkOrderBmpEJB.java:179)
    at com.sun.ecperf.mfg.workorderent.ejb.WorkOrderBmpEJB_gfyuby_Impl.ejbCreate(WorkOrderBmpEJB_gfyuby_Impl.java:212)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.ejb20.manager.DBManager.create(DBManager.java:492)
    at weblogic.ejb20.manager.DBManager.remoteCreate(DBManager.java:462)
    at weblogic.ejb20.internal.EntityEJBHome.create(EntityEJBHome.java:190)
    at com.sun.ecperf.mfg.workorderent.ejb.WorkOrderBmpEJB_gfyuby_HomeImpl.create(WorkOrderBmpEJB_gfyuby_HomeImpl.java:103)
    at com.sun.ecperf.mfg.workorderses.ejb.WorkOrderSesEJB.scheduleWorkOrder(WorkOrderSesEJB.java:78)
    at com.sun.ecperf.mfg.workorderses.ejb.WorkOrderSesEJB_gfz4hw_EOImpl.scheduleWorkOrder(WorkOrderSesEJB_gfz4hw_EOImpl.java:247)
    at com.sun.ecperf.mfg.workorderses.ejb.WorkOrderSesEJB_gfz4hw_EOImpl_WLSkel.invoke(Unknown
    Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:298)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:267)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Thanks,
    Srinath
    At 02:28 PM 1/22/2002 -0800, Shanti Subramanyam wrote:
    Please send email to j2ee-interest for support questions in the future.
    Your problem is probably because SequenceEnt has not been deployed
    correctly - this beans needs to be deployed using a seperate connection
    pool with an isolation level of serializable to work correctly.
    Shanti

    Your weblogic-application.xml is malformed. Just google for the solution.
    http://www.google.com/search?q=The+processing+instruction+target+matching+%22%5BxX%5D%5BmM%5D%5BlL%5D%22+is+not+allowed.
    leandro Fabiani wrote:
    Hi,
    I have deployed an ear application (LifeRay) on weblogic 8.1.
    Now I have some exceptions:
    weblogic.management.DeploymentException: Error while loading descriptors: Error parsing file 'META-INF/weblogic-application.xml' at line: 3 column: 6. weblogic.xml.process.XMLParsingException: Error parsing file 'META-INF/weblogic-application.xml' at line: 3 column: 6. The processing instruction target matching "[xX][mM][lL]" is not allowed. - with nested exception: [org.xml.sax.SAXParseException: The processing instruction target matching "[xX][mM][lL]" is not allowed.] - with nested exception: [org.xml.
    sax.SAXParseException: The processing instruction target matching "[xX][mM][lL]" is not allowed.]

  • BUG: Entering a "version" when deploying to a WebLogic server doesn't work

    By default when deploying to a weblogic server the "Version" is set to v2.0. If you change that to something like v2.1 when the application is deployed, the deployment logs still show the Version=2.0. What needs to be done to get the Version in deployment to accept the changes on the deployment form?

    Sorry, I wasn't clear. This is a Portal application deployed using MDS. So it doesn't have the file referenced in that blog post. The Version field I'm referring to is on the form that pops up to set the MDS repository. For reasons unknown it will always come up v2.0 even during the first deployment. Regardless of what I change it to the Version always equals 2.0 in the deployment logs.

  • Bug:WEB-INF/lib JARs not added to runtime classpath of WebLogic Server

    The JAR files packaged in the WEB-INF/lib directory of an application do not get installed to the runtime classpath of the Weblogic server.
    Edited by: dvohra16 on Feb 28, 2013 9:24 AM

    Some posts in which an external jar, usually a JDBC jar, had to be added to the startWebLogic script to be added to the runtime classpath of WebLogic server.
    Re: jdbc problem on MS SQL Server
    Re: MySQL JDBC driver w/11.1.2 where too now?
    Re: ADF Parameter form  - java.lang.NoClassDefFoundError: sqlj/runtime/ref/Defa
    Re: Cannot load driver class: com.microsoft.sqlserver.jdbc.SQLServerDriver
    Re: deploy a shared library
    Re: Cannot load driver class: com.microsoft.sqlserver.jdbc.SQLServerDriver
    Re: Help need in Adding External jar files.
    Re: NoClassDefFoundError  while Testing a JAX-WS Web Service
    Re: Unable to connect to SQL server 2008 from a deployed Weblogic application
    Re: Howo to add external jar - quick question
    Re: MySql connection with JDev 11.1.2.2 issues
    Re: Integration of MySQL with ADF application

  • Regarding datasource in weblogic server

    Hi All,
    while creating datasource i am getting the following error
    An error occurred during activation of changes, please see the log for details.
    weblogic.application.ModuleException:
    weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: invalid arguments in call
    i am connecting to oracle server and i am giving all The
    details eventhough i am getting exception
    i am using weblogic 10.0 version
    please help me as soon as possible
    thanks in advance'
    tirumal

    I am getting the same error as he is getting with Weblogic Server 10.0 MP1. We are going from Version 7.0 to 10 :
    I am configuring an Oracle Data Source from the console.
    I selected Other for Oracle driver
    I specify the following driver: oracle.jdbc.driver.OracleDriver.
    I test the new jdbc configuration and I get a successful Connection test.
    When I then assign it to my AdminServer and activate the changes is when I get the same error:
    weblogic.common.ResourceException: Could not create pool connection. The DBMS driver exception was: invalid arguments in call.
    I go to the \pending\jdbc\CtTxDataSource-3770-jdbc.xml
    Below is what the JDBC Datasource Configuration built:
    <?xml version='1.0' encoding='UTF-8'?>
    <jdbc-data-source xmlns="http://www.bea.com/ns/weblogic/90" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls" xsi:schemaLocation="http://www.bea.com/ns/weblogic/920 http://www.bea.com/ns/weblogic/920.xsd">
    <name>CtTxDataSource</name>
    <jdbc-driver-params>
    <url>jdbc:oracle:thin:@oims-npe-dev1:1521:oimsdev1</url>
    <driver-name>oracle.jdbc.driver.OracleDriver</driver-name>
    <password-encrypted>{3DES}oKK0HLMQ9oRN05wfBXY7sQ==</password-encrypted>
    </jdbc-driver-params>
    <jdbc-connection-pool-params>
    <test-table-name>SELECT * FROM APP</test-table-name>
    </jdbc-connection-pool-params>
    <jdbc-data-source-params>
    <jndi-name>CtTxDataSource</jndi-name>
    <global-transactions-protocol>EmulateTwoPhaseCommit</global-transactions-protocol>
    </jdbc-data-source-params>
    </jdbc-data-source>
    It didn't put in the <property> defining user logon and the database which I provided when I ran thru the configuration steps. Is this a bug on the 10.0 mp1 version of Weblogic? I had to manually add the property values to make it work. The same occurred when I configured a DB2 for ZOS.
    Thanks.

  • Deploying ADF application to a managed weblogic server - ADF security error

    Hi,
    Our group has written an ADF web application, which we are attempting to deploy to a managed weblogic server. Thus far, we have been unsuccessful. The application does successfully deploy to the AdminServer. Our setup:
    Weblogic version is 10.3.0. Domain name is adf_domain. We have installed the ADF (ADF version is 11.1.1.0.0), JSTL(1.2.0.1), and JSF(1.2.7.1) runtime libraries, and they are targeted to both the admin server AND the managed server, which is called CollabServer. This server communicates with the node manager and can be started and stopped via the admin console successfully. The AdminServer is on port 7101, and the CollabServer is on port 7104. We are not using SSL.
    application.xml:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_5.xsd"
    version="5" xmlns="http://java.sun.com/xml/ns/javaee">
    <display-name>OracleRetailCollaboration</display-name>
    <module>
    <web>
    <web-uri>orc.war</web-uri>
    <context-root>orc</context-root>
    </web>
    </module>
    </application>
    weblogic-application.xml (as taken from the ear file):
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <weblogic-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-application.xsd" xmln
    s="http://www.bea.com/ns/weblogic/weblogic-application">
    <listener>
    <listener-class>oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener</listener-class>
    </listener>
    <library-ref>
    <library-name>adf.oracle.domain</library-name>
    </library-ref>
    </weblogic-application>
    weblogic.xml (as taken from the war file):
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ww
    w.bea.com/ns/weblogic/weblogic-web-app http://www.bea.com/ns/weblogic/weblogic-web-app/1.0/weblogic-web-app.xsd">
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    <security-role-assignment>
    <role-name>valid-users</role-name>
    <principal-name>users</principal-name>
    </security-role-assignment>
    <library-ref>
    <library-name>jstl</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    <library-ref>
    <library-name>jsf</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    </weblogic-web-app>
    As I said, there are no deployment errors when we deploy to the admin server. However, we always see the following errors when deploying to the managed server:
    java.lang.ClassNotFoundException: oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener
    etc.
    This error occurs when deploying via the <wldeploy> ant task included with weblogic, and when deploying the application manually via the admin console.
    So I removed this from weblogic-application.xml:
    <listener>
    <listener-class>oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener</listener-class>
    </listener>
    Which resolved the initial error (I assume there is some sort of bug that causes this workaround to be necessary). The next error is this:
    java.lang.ClassNotFoundException: oracle.adf.share.security.authentication.AuthenticationServlet
    Again, we don't get this error when deploying to the AdminServer - ONLY the managed server CollabServer.
    web.xml:
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>adfAuthentication</servlet-name>
    <url-pattern>/adfAuthentication/*</url-pattern>
    </servlet-mapping>
    I then added some adf jar files to the ear file, finally get this error message:
    java.lang.ClassNotFoundException: oracle.adf.share.jsp.ADFLibUtils
    Any ideas on how to resolve this? Thanks.
    Edited by: user10451099 on Apr 15, 2009 12:10 PM

    Dan,
    thanks fro reminding me :-)
    Here are the steps we had to take to get a managed WLS to run an adf application without copying any jar in the domain/lib directory:
    1. you still have to install the adf runtime to any server you want the adf application to deploy to
    2. open the admin console, select the managed server, and select the 'server start' tab in configutation settings.
    3. add /u01/bea/patch_wls1030/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/bea/patch_jdev1111/profiles/default/sys_manifest_classpath/weblogic_patch.jar:
    /u01/bea/patch_cie660/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/bea/jrockit_160_05/lib/tools.jar:/u01/bea/wlserver_103/server/lib/weblogic_sp.jar:
    /u01/bea/wlserver_103/server/lib/weblogic.jar:/u01/bea/modules/features/weblogic.server.modules_10.3.0.0.jar:/u01/bea/wlserver_103/server/lib/webservices.jar:
    /u01/bea/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/u01/bea/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:/u01/bea/jdeveloper/modules/features/adf.share_11.1.1.jar:
    /u01/bea/wlserver_103/common/eval/pointbase/lib/pbclient57.jar:/u01/bea/wlserver_103/server/lib/xqrl.jar:
    /u01/bea/patch_wls1030/profiles/default/sysext_manifest_classpath/weblogic_ext_patch.jar to the classpath edit box you have to change '/u01/bea/' with your bea home. The classpath should be on one line without the CR/LF i put in to make it readable.
    4. add -Xms256m -Xmx512m -da -Dplatform.home=/u01/bea/wlserver_103 -Dwls.home=/u01/bea/wlserver_103/server -Dweblogic.home=/u01/bea/wlserver_103/server
    -Ddomain.home=/u01/bea/user_projects/domains/naa_qs -Doracle.home=/u01/bea/jdeveloper -Doracle.security.jps.config=/u01/bea/user_projects/domains/naa_qs/config/oracle/jps-config.xml
    -Doracle.dms.context=OFF -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.management.discover=false -Dweblogic.management.server=http://localhost:7001
    -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=
    -Dweblogic.ext.dirs=/u01/bea/patch_wls1030/profiles/default/sysext_manifest_classpath:/u01/bea/patch_jdev1111/profiles/default/sysext_manifest_classpath:/u01/bea/patch_cie660/profiles/default/sysext_manifest_classpath
    -Dweblogic.management.username=weblogic -Dweblogic.management.password=******** -Dweblogic.Name=GESTIS_QS
    -Djava.security.policy=/u01/bea/wlserver_103/server/lib/weblogic.policy to the 'Arguments' edit box. As with the calsspath change '/u01/bea' to your bea home and change the domain name (in our case 'naa_qs') to your domain name. change the managementuser and passwort to your needs. As whith the classpath I put some CR/LF into the code section to make it readable.
    5. save the changes and restart the server
    Essentially all we copied the arguments from the admin server start script in addition to adding the class path.
    Timo

  • Weblogic Server 10.3.3.0 fatal error

    Hi,
    I am installing weblogic server 10.3.3.0 on IBM AIX 6.1. After i except the default location (/u01/app/oracle/middleware/wlserver_10.3) for Weblogic Server and Oracle Coherence (/u01/app/oracle/middleware/wlserver_10.3) i get this error msg.
    *"A fatal error has occurred. This application will terminate."*
    It's a generic error msg and Metalink doesn't have any notes regarding this. Has anyone seen this issue before?
    Any help would be appreciated.
    Thanks.
    Shawn

    I get the same error msg when i try to install 10.3.2.0. I know that is clearly mentioned in the note for upgrading OEM GC 10g to 11g but i thought this version might have some bugs so i tried to install the most latest one.
    Unfortunately they don't have many notes on Weblogic Server installation and issues.

  • Upgrading Weblogic server to move from jdeveloper 11.1.1.1.0 to 11.1.1.4.0

    Hello, I would need clear direction to what I should do to upgrade my target weblogic server when I move my development environment from jdeveloper 11.1.1.1.0 to 11.1.1.4.0
    Initial ADF project was developed with jdeveloper 11.1.1.1.0 and deployed on a WLS 10.3.0
    Now we are upgrating the application and we decided to move the project to jdeveloper 11.1.1.1.4
    I need help on what I should upgrade on the target WLS server.
    How do we move from WLS 10.3.0 to WLS 10.3.4?
    Is it a reinstall or a upgrade? How do we upgrade?
    And what about just upgrating the ADF run time? Is it the way to go?
    At following link we see
    http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html there is a Application development runtime is it the runtime that we install on the server or not?
    I am confused if the ADF run time is tied with the WLS version or not, can someone give me a clear description of what is the ADF Runtime and how we upgrade it on the servers? Any Oracle documentation describing this process that I can provide to my server administrators?
    At the end what is the best practice to upgrade the WLS servers when you would lilke to move like me from an older version of jdeveloper to a newer version. is there an Oracle document describing the steps to be done?
    Thanks

    I'll echo Timo's question - why upgrade to 11.1.1.4 and not to the latest and greatest 11.1.1.6 (released yesterday)?
    Upgrading to an older version basically means that you are setting yourself for another upgrade later on - so why not enjoy all the bug fixes and new features of the newer versions?
    In terms of the upgrade process - if you look in the documentation tab of JDeveloper you'll see the book "Upgrade Guide for Oracle SOA Suite, WebCenter, and ADF" which gives the steps you can follow.
    For 11.1.1.6 the book is here:
    http://docs.oracle.com/cd/E23943_01/upgrade.1111/e10127/toc.htm
    In the same documentation tab you'll find the certification matrix that explains which ADF version works with which WLS version:
    http://www.oracle.com/technetwork/developer-tools/jdev/index-091111.html

  • Weblogic Server 9.2 - JMS File Store not working as expected.

    Hi,
    I am facing a problem at the server startup possibly due to huge size of the JMS File Store created.
    My question is that our application receives messages via MDB (container managed),
    Even after successfully processing the message, the message which is logged in the File Store is not deleted.
    How can i make sure that a message which is successfully processed is not logged in the file store?
    (considering container managed transactions do not require acknowledgement-mode set in the descriptor, altough i have it specified)
    Find the the stack trace on the server log below:
    ####<Dec 10, 2008 11:45:30 AM CST> <Error> <JMS> <xlqwls01> <ACSServer1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tu
    ning)'> <<WLS Kernel>> <> <> <1228931130485> <BEA-040123> <Failed to start JMS Server "SDBJMSServer1" due to weblogic.jms.common.JMSException: web
    logic.messaging.kernel.KernelException: Unexpected store exception in messaging kernel recovery.
    weblogic.jms.common.JMSException: weblogic.messaging.kernel.KernelException: Unexpected store exception in messaging kernel recovery
    at weblogic.jms.backend.BackEnd.open(BackEnd.java:963)
    at weblogic.jms.deployer.BEAdminHandler.activate(BEAdminHandler.java:180)
    at weblogic.management.utils.GenericManagedService.activateDeployment(GenericManagedService.java:237)
    at weblogic.management.utils.GenericServiceManager.activateDeployment(GenericServiceManager.java:131)
    at weblogic.management.internal.DeploymentHandlerHome.invokeHandlers(DeploymentHandlerHome.java:589)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:450)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:430)
    at weblogic.management.deploy.internal.DeploymentAdapter$2.doPrepare(DeploymentAdapter.java:100)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:177)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    weblogic.messaging.kernel.KernelException: Unexpected store exception in messaging kernel recovery
    at weblogic.messaging.kernel.internal.PersistenceImpl.recover(PersistenceImpl.java:839)
    at weblogic.messaging.kernel.internal.KernelImpl.open(KernelImpl.java:235)
    at weblogic.jms.backend.BackEnd.open(BackEnd.java:961)
    at weblogic.jms.deployer.BEAdminHandler.activate(BEAdminHandler.java:180)
    at weblogic.management.utils.GenericManagedService.activateDeployment(GenericManagedService.java:237)
    at weblogic.management.utils.GenericServiceManager.activateDeployment(GenericServiceManager.java:131)
    at weblogic.management.internal.DeploymentHandlerHome.invokeHandlers(DeploymentHandlerHome.java:589)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:450)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:430)
    at weblogic.management.deploy.internal.DeploymentAdapter$2.doPrepare(DeploymentAdapter.java:100)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:177)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    weblogic.store.PersistentStoreException: [Store:280020]There was an error while reading from the log file
    at weblogic.store.io.file.Heap.read(Heap.java:648)
    at weblogic.store.io.file.FileStoreIO.readInternal(FileStoreIO.java:224)
    at weblogic.store.io.file.FileStoreIO.access$000(FileStoreIO.java:31)
    at weblogic.store.io.file.FileStoreIO$Cursor.nextInternal(FileStoreIO.java:573)
    at weblogic.store.io.file.FileStoreIO$Cursor.next(FileStoreIO.java:547)
    at weblogic.store.internal.PersistentStoreConnectionImpl$CursorImpl.next(PersistentStoreConnectionImpl.java:266)
    at weblogic.messaging.kernel.internal.PersistenceImpl.recoverHeaders(PersistenceImpl.java:1148)
    at weblogic.messaging.kernel.internal.PersistenceImpl.recover(PersistenceImpl.java:814)
    at weblogic.messaging.kernel.internal.KernelImpl.open(KernelImpl.java:235)
    at weblogic.jms.backend.BackEnd.open(BackEnd.java:961)
    at weblogic.jms.deployer.BEAdminHandler.activate(BEAdminHandler.java:180)
    at weblogic.management.utils.GenericManagedService.activateDeployment(GenericManagedService.java:237)
    at weblogic.management.utils.GenericServiceManager.activateDeployment(GenericServiceManager.java:131)
    at weblogic.management.internal.DeploymentHandlerHome.invokeHandlers(DeploymentHandlerHome.java:589)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:450)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:430)
    at weblogic.management.deploy.internal.DeploymentAdapter$2.doPrepare(DeploymentAdapter.java:100)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:177)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.io.IOException: Error reading from file, No such file or directory, errno=2
    at weblogic.store.io.file.direct.DirectIONative.read(Native Method)
    at weblogic.store.io.file.direct.DirectFileChannel.read(DirectFileChannel.java:133)
    at weblogic.store.io.file.StoreFile.read(StoreFile.java:281)
    at weblogic.store.io.file.Heap.read(Heap.java:646)
    at weblogic.store.io.file.FileStoreIO.readInternal(FileStoreIO.java:224)
    at weblogic.store.io.file.FileStoreIO.access$000(FileStoreIO.java:31)
    at weblogic.store.io.file.FileStoreIO$Cursor.nextInternal(FileStoreIO.java:573)
    at weblogic.store.io.file.FileStoreIO$Cursor.next(FileStoreIO.java:547)
    at weblogic.store.internal.PersistentStoreConnectionImpl$CursorImpl.next(PersistentStoreConnectionImpl.java:266)
    at weblogic.messaging.kernel.internal.PersistenceImpl.recoverHeaders(PersistenceImpl.java:1148)
    at weblogic.messaging.kernel.internal.PersistenceImpl.recover(PersistenceImpl.java:814)
    at weblogic.messaging.kernel.internal.KernelImpl.open(KernelImpl.java:235)
    at weblogic.jms.backend.BackEnd.open(BackEnd.java:961)
    at weblogic.jms.deployer.BEAdminHandler.activate(BEAdminHandler.java:180)
    at weblogic.management.utils.GenericManagedService.activateDeployment(GenericManagedService.java:237)
    at weblogic.management.utils.GenericServiceManager.activateDeployment(GenericServiceManager.java:131)
    at weblogic.management.internal.DeploymentHandlerHome.invokeHandlers(DeploymentHandlerHome.java:589)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:450)
    at weblogic.management.internal.DeploymentHandlerHome.activateInitialDeployments(DeploymentHandlerHome.java:430)
    at weblogic.management.deploy.internal.DeploymentAdapter$2.doPrepare(DeploymentAdapter.java:100)
    at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:177)
    at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:233)
    at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:173)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:89)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Edited by: user5823244 on Dec 14, 2008 2:59 AM

    Hi,
    It seems there are two problems going on here:
    (1) Forceful shutdowns should not (must not) normally corrupt the file store. There may be a bug in WL, or it may be the admin is arbitrarily deleting some file store files while leaving others in place (not supported).
    (2) "Even after successfully processing the message, the message which is logged in the File Store is not deleted."
    This is a strong indicator that there's an application error and the message is not actually getting deleted. The file store size is proportional to the number of current messages (successfully processing/acknowledging/committing a received message frees space for new messages), and is not proportional to the number of successfully processed messages.
    I think it's likely that the application isn't actually successfully processing the message but is instead receiving a message somehow and is either:
    (A) throwing an exception from within an XA-or-non-XA-MDB or auto-ack-onMessage() and somehow forcing the message into a state where its not being redelivered for reprocessing
    (B) specifying a transacted session and failing to call session.commit()
    (C) specifying an XA transaction capable receive and failing to call commit
    (D) specifying a "client acknowledge" mode and failing to call acknowledge .
    For evidence, check the console statistics for the destination after "successfully processing" all sent messages: the value of "current" + "pending" should be zero once all processing completes, the value of "received (aka total)" should match the sent message count. If the "current" + "pending" value is non-zero, then this is an indication there are messages that were not successfully processed.
    Tom Barnes
    WebLogic Server Messaging Developer Team

  • Unable to uninstall Weblogic server from windows 7 64 bit machine

    I am trying to uninstall weblogic server 10.3.6 from my local windows 7 machine and i am getting a crash when I click on uninstall button or from command prompt.
    Error:
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000007714ec75, pid=6384, tid=7004
    # JRE version: 7.0_01-b08
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (21.1-b02 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # C [ntdll.dll+0x4ec75]
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    # If you would like to submit a bug report, please visit:
    # http://bugreport.sun.com/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0000000007af1800): JavaThread "AWT-EventQueue-0" [_thread_in_Java, id=7004, stack(0x000000000a800000,0x000000000a900000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0xffffffffffffffff
    Registers:
    RAX=0x000000000a8fd548, RBX=0x0000000000000002, RCX=0x000000000a8fd618, RDX=0x000000000a8fd588
    RSP=0x000000000a8fd538, RBP=0x000007fee8881bf0, RSI=0x0000000000000020, RDI=0x0000000000000000
    R8 =0x000000000a8f5000, R9 =0x0000000000000003, R10=0x0000000000000000, R11=0x000000000000a2d6
    R12=0x0000000000000000, R13=0x0000000000000050, R14=0x0000000000000003, R15=0x0000000007af1800
    RIP=0x000000007714ec75, EFLAGS=0x0000000000010202
    Top of Stack: (sp=0x000000000a8fd538)
    0x000000000a8fd538: 0000000000000202 0000000077107549
    0x000000000a8fd548: 000007fffff92000 0000000000000000
    0x000000000a8fd558: 0000000007af1801 000000000804ade0
    0x000000000a8fd568: 00000000593bac48 000000000b92f340
    0x000000000a8fd578: 00000000eb6c2c58 0000000000000051
    0x000000000a8fd588: 000000000a900000 000000000a8f5000
    0x000000000a8fd598: 0000000000000000 000000000a8fd750
    0x000000000a8fd5a8: 00000000029b26fa 0000000000000008
    0x000000000a8fd5b8: 000000000b902270 000000000a8fddb0
    0x000000000a8fd5c8: 00000000029d743a 00000000029d73d0
    0x000000000a8fd5d8: 0000000000000000 0000000000000000
    0x000000000a8fd5e8: 000000000a8fddb0 00000001eaf0b258
    0x000000000a8fd5f8: 000000000b9022c0 000000000a8fde20
    0x000000000a8fd608: 00000000029a6330 00000000029a5350
    0x000000000a8fd618: 0000000000000000 00000000fb03fe30
    0x000000000a8fd628: 000000000a8fde20 000000000a8fde20
    Instructions: (pc=0x000000007714ec75)
    0x000000007714ec55: d0 00 00 00 4c 89 a1 d8 00 00 00 4c 89 a9 e0 00
    0x000000007714ec65: 00 00 4c 89 b1 e8 00 00 00 4c 89 b9 f0 00 00 00
    0x000000007714ec75: 0f ae 81 00 01 00 00 0f 29 81 a0 01 00 00 0f 29
    0x000000007714ec85: 89 b0 01 00 00 0f 29 91 c0 01 00 00 0f 29 99 d0
    Register to memory mapping:
    RAX=0x000000000a8fd548 is pointing into the stack for thread: 0x0000000007af1800
    RBX=0x0000000000000002 is an unknown value
    RCX=0x000000000a8fd618 is pointing into the stack for thread: 0x0000000007af1800
    RDX=0x000000000a8fd588 is pointing into the stack for thread: 0x0000000007af1800
    RSP=0x000000000a8fd538 is pointing into the stack for thread: 0x0000000007af1800
    RBP=0x000007fee8881bf0 is an unknown value
    RSI=0x0000000000000020 is an unknown value
    RDI=0x0000000000000000 is an unknown value
    R8 =0x000000000a8f5000 is pointing into the stack for thread: 0x0000000007af1800
    R9 =0x0000000000000003 is an unknown value
    R10=0x0000000000000000 is an unknown value
    R11=0x000000000000a2d6 is an unknown value
    R12=0x0000000000000000 is an unknown value
    R13=0x0000000000000050 is an unknown value
    R14=0x0000000000000003 is an unknown value
    R15=0x0000000007af1800 is a thread
    Stack: [0x000000000a800000,0x000000000a900000], sp=0x000000000a8fd538, free space=1013k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x4ec75] RtlCaptureContext+0x85
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    v blob 0x00000000029d74ff
    j java.lang.String.equals(Ljava/lang/Object;)Z+8
    j javax.swing.ArrayTable.get(Ljava/lang/Object;)Ljava/lang/Object;+44
    j javax.swing.JComponent.getClientProperty(Ljava/lang/Object;)Ljava/lang/Object;+45
    j sun.swing.SwingUtilities2.stringWidth(Ljavax/swing/JComponent;Ljava/awt/FontMetrics;Ljava/lang/String;)I+23
    j javax.swing.SwingUtilities.layoutCompoundLabelImpl(Ljavax/swing/JComponent;Ljava/awt/FontMetrics;Ljava/lang/String;Ljavax/swing/Icon;IIIILjava/awt/Rectangle;Ljava/awt/Rectangle;Ljava/awt/Rectangle;I)Ljava/lang/String;+197
    j javax.swing.SwingUtilities.layoutCompoundLabel(Ljavax/swing/JComponent;Ljava/awt/FontMetrics;Ljava/lang/String;Ljavax/swing/Icon;IIIILjava/awt/Rectangle;Ljava/awt/Rectangle;Ljava/awt/Rectangle;I)Ljava/lang/String;+159
    j javax.swing.plaf.basic.BasicGraphicsUtils.getPreferredButtonSize(Ljavax/swing/AbstractButton;I)Ljava/awt/Dimension;+102
    j javax.swing.plaf.basic.BasicButtonUI.getPreferredSize(Ljavax/swing/JComponent;)Ljava/awt/Dimension;+10
    j workshop.core.plaf.JbButtonUI.getPreferredSize(Ljavax/swing/JComponent;)Ljava/awt/Dimension;+21
    j javax.swing.JComponent.getPreferredSize()Ljava/awt/Dimension;+26
    j com.bea.plateng.common.ui.gui.GUIUtilities.sameSizeButtons([Ljavax/swing/JButton;)V+42
    j com.bea.plateng.wizard.GUIContext$UpdateGUI.run()V+324
    j java.awt.event.InvocationEvent.dispatch()V+47
    j java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+21
    j java.awt.EventQueue.access$000(Ljava/awt/EventQueue;Ljava/awt/AWTEvent;Ljava/lang/Object;)V+3
    j java.awt.EventQueue$3.run()Ljava/lang/Void;+12
    j java.awt.EventQueue$3.run()Ljava/lang/Object;+1
    v ~StubRoutines::call_stub
    j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j java.security.ProtectionDomain$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;+28
    j java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+46
    j java.awt.EventDispatchThread.pumpOneEventForFilters(I)Z+245
    j java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V+35
    j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11
    j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j java.awt.EventDispatchThread.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0000000007c19800 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=5980, stack(0x000000000b050000,0x000000000b150000)]
    =>0x0000000007af1800 JavaThread "AWT-EventQueue-0" [_thread_in_Java, id=7004, stack(0x000000000a800000,0x000000000a900000)]
    0x0000000007aef800 JavaThread "Image Fetcher 0" daemon [_thread_blocked, id=412, stack(0x000000000a620000,0x000000000a720000)]
    0x0000000007a8b000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=5012, stack(0x00000000084a0000,0x00000000085a0000)]
    0x0000000007a8a800 JavaThread "AWT-Shutdown" [_thread_blocked, id=6776, stack(0x00000000083a0000,0x00000000084a0000)]
    0x0000000007a89800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=6912, stack(0x0000000008240000,0x0000000008340000)]
    0x0000000006350800 JavaThread "Service Thread" daemon [_thread_blocked, id=5756, stack(0x0000000007230000,0x0000000007330000)]
    0x000000000634f800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=6696, stack(0x0000000006fb0000,0x00000000070b0000)]
    0x0000000006346800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=3956, stack(0x0000000007100000,0x0000000007200000)]
    0x0000000006346000 JavaThread "Attach Listener" daemon [_thread_blocked, id=3888, stack(0x0000000006e60000,0x0000000006f60000)]
    0x0000000006336800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=6204, stack(0x0000000006c80000,0x0000000006d80000)]
    0x0000000006254000 JavaThread "Finalizer" daemon [_thread_blocked, id=5544, stack(0x0000000006920000,0x0000000006a20000)]
    0x0000000006247000 JavaThread "Reference Handler" daemon [_thread_blocked, id=5128, stack(0x0000000006a50000,0x0000000006b50000)]
    0x00000000026db000 JavaThread "main" [_thread_in_Java, id=4076, stack(0x00000000028a0000,0x00000000029a0000)]
    Other Threads:
    0x000000000623a800 VMThread [stack: 0x00000000067e0000,0x00000000068e0000] [id=4104]
    0x0000000006363800 WatcherThread [stack: 0x0000000007420000,0x0000000007520000] [id=5560]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 18496K, used 9847K [0x00000000faab0000, 0x00000000fbf50000, 0x0000000100000000)
    eden space 15872K, 62% used [0x00000000faab0000,0x00000000fb44df08,0x00000000fba30000)
    from space 2624K, 0% used [0x00000000fbcc0000,0x00000000fbcc0000,0x00000000fbf50000)
    to space 2624K, 0% used [0x00000000fba30000,0x00000000fba30000,0x00000000fbcc0000)
    PSOldGen total 42240K, used 0K [0x00000000f0000000, 0x00000000f2940000, 0x00000000faab0000)
    object space 42240K, 0% used [0x00000000f0000000,0x00000000f0000000,0x00000000f2940000)
    PSPermGen total 21248K, used 11043K [0x00000000eae00000, 0x00000000ec2c0000, 0x00000000f0000000)
    object space 21248K, 51% used [0x00000000eae00000,0x00000000eb8c8c68,0x00000000ec2c0000)
    Code Cache [0x00000000029a0000, 0x0000000002c10000, 0x00000000059a0000)
    total_blobs=460 nmethods=56 adapters=356 free_code_cache=48538Kb largest_free_block=49679808
    Dynamic libraries:
    0x000000013fdf0000 - 0x000000013fe23000      C:\PROGRA~1\Java\JDK17~1.0_0\bin\javaw.exe
    0x0000000077100000 - 0x00000000772ac000      C:\Windows\SYSTEM32\ntdll.dll
    0x0000000076fe0000 - 0x00000000770ff000      C:\Windows\system32\kernel32.dll
    0x000007fefd3c0000 - 0x000007fefd42c000      C:\Windows\system32\KERNELBASE.dll
    0x000007feff0e0000 - 0x000007feff1bb000      C:\Windows\system32\ADVAPI32.dll
    0x000007fefee80000 - 0x000007fefef1f000      C:\Windows\system32\msvcrt.dll
    0x000007fefe810000 - 0x000007fefe82f000      C:\Windows\SYSTEM32\sechost.dll
    0x000007fefef20000 - 0x000007feff04e000      C:\Windows\system32\RPCRT4.dll
    0x0000000076ee0000 - 0x0000000076fda000      C:\Windows\system32\USER32.dll
    0x000007fefebe0000 - 0x000007fefec47000      C:\Windows\system32\GDI32.dll
    0x000007feff050000 - 0x000007feff05e000      C:\Windows\system32\LPK.dll
    0x000007feff1c0000 - 0x000007feff28a000      C:\Windows\system32\USP10.dll
    0x000007fefb9d0000 - 0x000007fefbbc4000      C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7600.16661_none_fa62ad231704eab7\COMCTL32.dll
    0x000007feff060000 - 0x000007feff0d1000      C:\Windows\system32\SHLWAPI.dll
    0x000007fefcf30000 - 0x000007fefcf87000      C:\Windows\system32\apphelp.dll
    0x000007fef0500000 - 0x000007fef055a000      C:\Windows\AppPatch\AppPatch64\AcLayers.DLL
    0x000007fef7880000 - 0x000007fef78f0000      C:\Windows\system32\WINSPOOL.DRV
    0x000007fef7860000 - 0x000007fef7878000      C:\Windows\system32\MPR.dll
    0x000007fee8610000 - 0x000007fee8a77000      C:\Windows\AppPatch\AppPatch64\AcXtrnal.DLL
    0x000007feebda0000 - 0x000007feebdf1000      C:\Windows\AppPatch\AppPatch64\AcGenral.DLL
    0x000007fefcf00000 - 0x000007fefcf25000      C:\Windows\system32\SspiCli.dll
    0x000007fefe480000 - 0x000007fefe682000      C:\Windows\system32\ole32.dll
    0x000007fefd480000 - 0x000007fefe206000      C:\Windows\system32\SHELL32.dll
    0x0000000071820000 - 0x0000000071823000      C:\Windows\system32\sfc.dll
    0x000007fef8eb0000 - 0x000007fef8ec0000      C:\Windows\system32\sfc_os.DLL
    0x000007fefc390000 - 0x000007fefc3ae000      C:\Windows\system32\USERENV.dll
    0x000007fefd060000 - 0x000007fefd06f000      C:\Windows\system32\profapi.dll
    0x000007fefb3d0000 - 0x000007fefb3e8000      C:\Windows\system32\dwmapi.dll
    0x000007feff2b0000 - 0x000007feff2de000      C:\Windows\system32\IMM32.DLL
    0x000007fefe210000 - 0x000007fefe319000      C:\Windows\system32\MSCTF.dll
    0x000000006aa60000 - 0x000000006ab31000      C:\PROGRA~1\Java\JDK17~1.0_0\jre\bin\msvcr100.dll
    0x0000000059220000 - 0x00000000598ed000      C:\PROGRA~1\Java\JDK17~1.0_0\jre\bin\server\jvm.dll
    0x000007fef85b0000 - 0x000007fef85b9000      C:\Windows\system32\WSOCK32.dll
    0x000007fefee30000 - 0x000007fefee7d000      C:\Windows\system32\WS2_32.dll
    0x000007fefe970000 - 0x000007fefe978000      C:\Windows\system32\NSI.dll
    0x000007fefad30000 - 0x000007fefad6b000      C:\Windows\system32\WINMM.dll
    0x00000000772c0000 - 0x00000000772c7000      C:\Windows\system32\PSAPI.DLL
    0x00000000706e0000 - 0x00000000706ef000      C:\PROGRA~1\Java\JDK17~1.0_0\jre\bin\verify.dll
    0x000000006d100000 - 0x000000006d128000      C:\PROGRA~1\Java\JDK17~1.0_0\jre\bin\java.dll
    0x000000006fb10000 - 0x000000006fb25000      C:\PROGRA~1\Java\JDK17~1.0_0\jre\bin\zip.dll
    0x0000000060020000 - 0x00000000601b3000      C:\Program Files\Java\jdk1.7.0_01\jre\bin\awt.dll
    0x000007fefe320000 - 0x000007fefe3f7000      C:\Windows\system32\OLEAUT32.dll
    0x000007fefcf90000 - 0x000007fefcf9f000      C:\Windows\system32\CRYPTBASE.dll
    0x000007feea6b0000 - 0x000007feea8af000      C:\Windows\system32\d3d9.dll
    0x000007fefc570000 - 0x000007fefc57c000      C:\Windows\system32\VERSION.dll
    0x000007fefbbe0000 - 0x000007fefbbe7000      C:\Windows\system32\d3d8thk.dll
    0x000007fee7a10000 - 0x000007fee8604000      C:\Windows\system32\nvd3dumx.dll
    0x000007fefbc00000 - 0x000007fefbc2c000      C:\Windows\system32\powrprof.dll
    0x000007fefec50000 - 0x000007fefee27000      C:\Windows\system32\SETUPAPI.dll
    0x000007fefd110000 - 0x000007fefd146000      C:\Windows\system32\CFGMGR32.dll
    0x000007fefd230000 - 0x000007fefd24a000      C:\Windows\system32\DEVOBJ.dll
    0x000000006f130000 - 0x000000006f164000      C:\Program Files\Java\jdk1.7.0_01\jre\bin\fontmanager.dll
    0x000000006d0c0000 - 0x000000006d0f9000      C:\Program Files\Java\jdk1.7.0_01\jre\bin\kcms.dll
    0x000000006ec10000 - 0x000000006ec29000      C:\Program Files\Java\jdk1.7.0_01\jre\bin\net.dll
    0x000007fefc8d0000 - 0x000007fefc924000      C:\Windows\system32\mswsock.dll
    0x000007fefc8c0000 - 0x000007fefc8c7000      C:\Windows\System32\wship6.dll
    0x000000006aff0000 - 0x000000006b001000      C:\Program Files\Java\jdk1.7.0_01\jre\bin\nio.dll
    0x000000006ac10000 - 0x000000006ac51000      C:\Program Files\Java\jdk1.7.0_01\jre\bin\t2k.dll
    VM Arguments:
    jvm_args: -Xmx256m -Djava.library.path=C:\Oracle\Middleware\utils\uninstall -Dhome.dir=C:\Oracle\Middleware -Dinstall.dir=
    java_command: C:\Oracle\Middleware\utils\uninstall\uninstall.jar
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\PROGRA~1\Java\JDK17~1.0_0
    CLASSPATH=C:\Program Files (x86)\QuickTime\QTSystem\QTJava.zip;
    PATH=C:\Oracle\oraclexe\app\oracle\product\11.2.0\server\bin;;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\QuickTime\QTSystem\
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows Vista , 64 bit Build 6000
    CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 37 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 4052816k(1182472k free), swap 8103732k(4659796k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (21.1-b02) for windows-amd64 JRE (1.7.0_01-b08), built on Oct 3 2011 01:39:25 by "java_re" with unknown MS VC++:1600
    time: Thu Jul 26 18:28:23 2012
    elapsed time: 0 seconds
    Two issues now
    1) How do I get rid of weblogic from my machine manually so that I can do fresh install of 10.3.5?
    2) How do I confirm if it is completely removed because after doing the complete SOA suite installation process, JDeveloper throws me errors that it is not compatible with 10.3.6
    Appreciate your help in this regard

    Hi
    I am glad your original issue is resolved. For this new SOA installation, you can post a new thread and preferably in SOA Forums and not here in WLS Forums for quicker response: SOA Suite
    1. To begin with, looks like you have a 64 bit machine, so I would recommend first to install 64 bit JDK. Then install Weblogic using weblogic generic installer (.jar). This means if you already have WLS installed using .exe, you may have to delete that and start over.
    2. Worst case even if you want to continue as it is (32 bit), the location of java is kind of not ok having a space in one of the folder names like "Program Files". And is this java installed by you or did it came with machine and if so. If came with machine it will be older version.
    I would recommend, uninstall existing JDK and install fresh latest JDK in a path something like shown below that do not have any spaces:
    1. C:\Oracle\Java\jdk1.6.0_24_64Bit = Will have JDK 64 bit
    2. C:\Oracle\Middleware116BPM = Will have WLS 10.3.6. Here you install SOA later on
    3. C:\Oracle\Middleware\Jdeveloper116 = Will have JDeveloper 11.6 installed here.
    Now, coming to your actual installation error, do NOT use this command "setup -jreLoc %JAVA_HOME%". Instead just double click on Setup.exe or open a dos window, navigate to that folder and just type setup.exe. The point is do not give -jreLoc. NOW it will prompt to enter full JDK Path. Here you carefuly type full jdk path something like this "C:\Oracle\Java\jdk1.6.0_24_32Bit" (this is on my side...). It should work now.
    Caution. While installing any oracle software do not use folder names with spaces. Like c:\Program Files\ etc. Spaces in folder names may be an issue. So avoid that.
    Since you are starting all this fresh, I would recommend doing it in the right and correct way to avoid any future issues. It may take few hours of extra time that is totally worth.
    Re: Weblogic 10.3.5 install on Windows
    Thanks
    Ravi Jegga

  • Dr. Watson Error on exiting weblogic server 6.1

    Hi,
    I sometimes get the Dr.watson error when I stop my weblogic server.
    The details are given below.
    I have weblogic 6.1
    Windows 2000 5.00.2195 Service pack 2
    Memory=392mb
    The message from Dr. Watson is:-
    "Dr. watson was unable to attach to the process. It is possible that process exited
    before Dr. Watson could attach to it.
    Windows 2000 error code=87 The parameter is incorrect."
    The message from the console is:-
    <Jan 15, 2002 5:08:10 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '9' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:10 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '0' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:11 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '1' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:11 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '2' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:11 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '3' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:12 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '4' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:12 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '5' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:12 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '6' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:12 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '7' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '8' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '10' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '11' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '14' for queue: 'default'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '0' for queue: '__weblogic_admin_html_queue'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '1' for queue: '__weblogic_admin_html_queue'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '0' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    <Jan 15, 2002 5:08:13 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '1' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    <Jan 15, 2002 5:08:14 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '2' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    <Jan 15, 2002 5:08:14 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '3' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    <Jan 15, 2002 5:08:14 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '4' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    <Jan 15, 2002 5:08:14 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '5' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    <Jan 15, 2002 5:08:14 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '6' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    <Jan 15, 2002 5:08:14 PM CST> <Critical> <Kernel> <Execute Thread: 'ExecuteThread:
    '7' for queue: '__weblogic_admin_rmi_queue'' stopped.>
    C:\bea\wlserver6.1>goto finish
    C:\bea\wlserver6.1>cd config\mydomain
    C:\bea\wlserver6.1\config\mydomain>ENDLOCAL
    C:\bea\wlserver6.1\config\mydomain>

    I talked with Sun today about this issue and they stated that the error I received is the result of a bug. Sun Bug ID: 6650667
    Synopsis: Cannot repack the changelog after trimming. libdb: DB_ENV->log_put: record larger than maximum file
    We can see the the following lines in your error log:
    [05/Jan/2010:00:05:03 -0500] - DEBUG - conn=-1 op=-1 msgId=-1 - libdb: DB_ENV->log_put: record larger than maximum file size (15956384 > 10485760)
    [05/Jan/2010:00:05:03 -0500] - Repacking backend 'changelog', LDAP entries error Invalid argument (22).
    [05/Jan/2010:00:05:03 -0500] - Repacking backend 'changelog' ended.
    There is no fix, and a workaround is listed as follows:
    Work Around:
    Increase nsslapd-db-logfile-size in dse.ldif (In entry "cn=config,cn=ldbm database,cn=plugins,cn=config" )
    This attribute is not present by default in the file.
    Its default value is 10485760.
    Which would make it the default as stated in the bug workaround.
    Make the change as directed above, perform the repack again and let me know the results.

  • Problem in loading OPSS security provider: Cannot read from policy store  Error getting while starting weblogic server

    [JavaPolicyProvider]: System Property [java.vendor => Sun Microsystems Inc.]
    [JavaPolicyProvider]: System Property [oracle.deployed.app.ext => \-]
    [JavaPolicyProvider]: System Property [sun.java.launcher => SUN_STANDARD]
    [JavaPolicyProvider]: System Property [sun.management.compiler => HotSpot Client Compiler]
    [JavaPolicyProvider]: System Property [java.security.debug => jpspolicy]
    [JavaPolicyProvider]: System Property [oracle.core.ojdl.logging.usercontextprovider => oracle.core.ojdl.logging.impl.UserContextImpl]
    [JavaPolicyProvider]: System Property [os.name => Windows 7]
    [JavaPolicyProvider]: System Property [sun.boot.class.path => D:\ORACLE~1.6_M\JDK160~1\jre\lib\resources.jar;D:\ORACLE~1.6_M\JDK160~1\jre\lib\rt.jar;D:\ORACLE~1.6_M\JDK160~1\jre\lib\sunrsasign.jar;D:\ORACLE~1.6_M\JDK160~1\jre\lib\jsse.jar;D:\ORACLE~1.6_M\JDK160~1\jre\lib\jce.jar;D:\ORACLE~1.6_M\JDK160~1\jre\lib\charsets.jar;D:\ORACLE~1.6_M\JDK160~1\jre\lib\modules\jdk.boot.jar;D:\ORACLE~1.6_M\JDK160~1\jre\classes]
    [JavaPolicyProvider]: System Property [sun.desktop => windows]
    [JavaPolicyProvider]: System Property [java.vm.specification.vendor => Sun Microsystems Inc.]
    [JavaPolicyProvider]: System Property [java.runtime.version => 1.6.0_24-b50]
    [JavaPolicyProvider]: System Property [igf.arisidbeans.carmlloc => D:\JDevSys\SYSTEM~1.92_\DEFAUL~1\config\FMWCON~1\carml]
    [JavaPolicyProvider]: System Property [oracle.domain.config.dir => D:\JDevSys\SYSTEM~1.92_\DEFAUL~1\config\FMWCON~1]
    [JavaPolicyProvider]: System Property [weblogic.Name => DefaultServer]
    [JavaPolicyProvider]: System Property [user.name => SudhanshuG]
    [JavaPolicyProvider]: System Property [DebugOPSSPolicyLoading => true]
    [JavaPolicyProvider]: System Property [java.naming.factory.initial => weblogic.jndi.WLInitialContextFactory]
    [JavaPolicyProvider]: System Property [user.language => en]
    [JavaPolicyProvider]: System Property [jrockit.optfile => D:\ORACLE~1.6_M\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt]
    [JavaPolicyProvider]: System Property [sun.boot.library.path => D:\ORACLE~1.6_M\JDK160~1\jre\bin]
    [JavaPolicyProvider]: System Property [domain.home => D:\JDevSys\SYSTEM~1.92\DEFAUL~1]
    [JavaPolicyProvider]: System Property [igf.arisidstack.home => D:\JDevSys\SYSTEM~1.92_\DEFAUL~1\config\FMWCON~1\arisidprovider]
    [JavaPolicyProvider]: System Property [wlw.testConsole => ]
    [JavaPolicyProvider]: System Property [wlw.iterativeDev => ]
    [JavaPolicyProvider]: System Property [jps.combiner.optimize => true]
    [JavaPolicyProvider]: System Property [jps.auth => ACC]
    [JavaPolicyProvider]: System Property [java.version => 1.6.0_24]
    [JavaPolicyProvider]: System Property [user.timezone => Asia/Calcutta]
    [JavaPolicyProvider]: System Property [sun.arch.data.model => 32]
    [JavaPolicyProvider]: System Property [javax.rmi.CORBA.UtilClass => weblogic.iiop.UtilDelegateImpl]
    [JavaPolicyProvider]: System Property [java.endorsed.dirs => D:\ORACLE~1.6_M\JDK160~1\jre\lib\endorsed]
    [JavaPolicyProvider]: System Property [vde.home => D:\JDevSys\system11.1.1.6.38.61.92\DefaultDomain\servers\DefaultServer\data\ldap]
    [JavaPolicyProvider]: System Property [jps.combiner.optimize.lazyeval => true]
    [JavaPolicyProvider]: System Property [sun.cpu.isalist => pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86]
    [JavaPolicyProvider]: System Property [sun.jnu.encoding => Cp1252]
    [JavaPolicyProvider]: System Property [file.encoding.pkg => sun.io]
    [JavaPolicyProvider]: System Property [wlw.logErrorsToConsole => ]
    [JavaPolicyProvider]: System Property [file.separator => \]
    [JavaPolicyProvider]: System Property [java.specification.name => Java Platform API Specification]
    [JavaPolicyProvider]: System Property [java.class.version => 50.0]
    [JavaPolicyProvider]: System Property [weblogic.home => D:\ORACLE~1.6_M\WLSERV~1.3\server]
    [JavaPolicyProvider]: System Property [user.country => IN]
    [JavaPolicyProvider]: System Property [java.home => D:\ORACLE~1.6_M\JDK160~1\jre]
    [JavaPolicyProvider]: System Property [platform.home => D:\ORACLE~1.6_M\WLSERV~1.3]
    [JavaPolicyProvider]: System Property [java.vm.info => mixed mode]
    [JavaPolicyProvider]: System Property [os.version => 6.1]
    [JavaPolicyProvider]: System Property [org.omg.CORBA.ORBSingletonClass => weblogic.corba.orb.ORB]
    [JavaPolicyProvider]: System Property [path.separator => ;]
    [JavaPolicyProvider]: System Property [java.vm.version => 19.1-b02]
    [JavaPolicyProvider]: System Property [weblogic.alternateTypesDirectory => D:\ORACLE~1.6_M\ORACLE~1\modules\oracle.ossoiap_11.1.1,D:\ORACLE~1.6_M\ORACLE~1\modules\oracle.oamprovider_11.1.1]
    [JavaPolicyProvider]: System Property [user.variant => ]
    [JavaPolicyProvider]: System Property [java.protocol.handler.pkgs => oracle.mds.net.protocol|weblogic.net]
    [JavaPolicyProvider]: System Property [oracle.deployed.app.dir => D:\JDevSys\SYSTEM~1.92\DEFAUL~1\servers\DefaultServer\tmp\_WL_user]
    [JavaPolicyProvider]: System Property [wc.oracle.home => D:\Oracle_Jdev11.1.1.6_Middleware_Home\jdeveloper]
    [JavaPolicyProvider]: System Property [java.awt.printerjob => sun.awt.windows.WPrinterJob]
    [JavaPolicyProvider]: System Property [java.security.policy => D:\ORACLE~1.6_M\WLSERV~1.3\server\lib\weblogic.policy]
    [JavaPolicyProvider]: System Property [sun.io.unicode.encoding => UnicodeLittle]
    [JavaPolicyProvider]: System Property [awt.toolkit => sun.awt.windows.WToolkit]
    [JavaPolicyProvider]: System Property [weblogic.jdbc.remoteEnabled => false]
    [JavaPolicyProvider]: System Property [weblogic.nodemanager.ServiceEnabled => true]
    [JavaPolicyProvider]: System Property [java.naming.factory.url.pkgs => weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url]
    [JavaPolicyProvider]: System Property [oracle.webcenter.tagging.scopeTags => false]
    [JavaPolicyProvider]: System Property [user.home => C:\Users\SudhanshuG]
    [JavaPolicyProvider]: System Property [wls.home => D:\ORACLE~1.6_M\WLSERV~1.3\server]
    [JavaPolicyProvider]: System Property [java.specification.vendor => Sun Microsystems Inc.]
    [JavaPolicyProvider]: System Property [oracle.server.config.dir => D:\JDevSys\SYSTEM~1.92_\DEFAUL~1\config\FMWCON~1\servers\DefaultServer]
    [JavaPolicyProvider]: System Property [java.library.path => D:\ORACLE~1.6_M\JDK160~1\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;D:\ORACLE~1.6_M\patch_wls1035\profiles\default\native;D:\ORACLE~1.6_M\patch_jdev1111\profiles\default\native;D:\ORACLE~1.6_M\WLSERV~1.3\server\native\win\32;D:\ORACLE~1.6_M\WLSERV~1.3\server\bin;D:\ORACLE~1.6_M\modules\ORGAPA~1.1\bin;D:\ORACLE~1.6_M\JDK160~1\jre\bin;D:\ORACLE~1.6_M\JDK160~1\bin;D:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;D:\ORACLE~1.6_M\WLSERV~1.3\server\native\win\32\oci920_8]
    [JavaPolicyProvider]: System Property [java.vendor.url => http://java.sun.com/]
    [JavaPolicyProvider]: System Property [jps.policystore.hybrid.mode => false]
    [JavaPolicyProvider]: System Property [USE_JAAS => false]
    [JavaPolicyProvider]: System Property [java.vm.vendor => Sun Microsystems Inc.]
    [JavaPolicyProvider]: System Property [java.runtime.name => Java(TM) SE Runtime Environment]
    [JavaPolicyProvider]: System Property [java.class.path => D:\ORACLE~1.6_M\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;D:\ORACLE~1.6_M\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\ORACLE~1.6_M\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\ORACLE~1.6_M\JDK160~1\lib\tools.jar;D:\ORACLE~1.6_M\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\ORACLE~1.6_M\WLSERV~1.3\server\lib\weblogic.jar;D:\ORACLE~1.6_M\modules\features\weblogic.server.modules_10.3.5.0.jar;D:\ORACLE~1.6_M\WLSERV~1.3\server\lib\webservices.jar;D:\ORACLE~1.6_M\modules\ORGAPA~1.1/lib/ant-all.jar;D:\ORACLE~1.6_M\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\JDevSys\SYSTEM~1.92\DEFAUL~1\wcps-lib\derby-10.6.1.0.jar;D:\JDevSys\SYSTEM~1.92\DEFAUL~1\wcps-lib\derbytools-10.6.1.0.jar;D:\Oracle_Jdev11.1.1.6_Middleware_Home\jdeveloper\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;D:\ORACLE~1.6_M\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;D:\Oracle_Jdev11.1.1.6_Middleware_Home\jdeveloper\webcenter\modules\wcps_11.1.1.4.0\wcps-connection-mbeans.jar;D:\ORACLE~1.6_M\WLSERV~1.3\common\derby\lib\derbyclient.jar;D:\ORACLE~1.6_M\WLSERV~1.3\server\lib\xqrl.jar]
    [JavaPolicyProvider]: System Property [oracle.security.jps.config => D:\JDevSys\SYSTEM~1.92\DEFAUL~1\config\fmwconfig\jps-config.xml]
    [JavaPolicyProvider]: System Property [java.vm.specification.name => Java Virtual Machine Specification]
    [JavaPolicyProvider]: System Property [javax.rmi.CORBA.PortableRemoteObjectClass => weblogic.iiop.PortableRemoteObjectDelegateImpl]
    [JavaPolicyProvider]: System Property [java.vm.specification.version => 1.0]
    [JavaPolicyProvider]: System Property [sun.cpu.endian => little]
    [JavaPolicyProvider]: System Property [sun.os.patch.level => Service Pack 1]
    [JavaPolicyProvider]: System Property [portlet.oracle.home => D:\Oracle_Jdev11.1.1.6_Middleware_Home\jdeveloper]
    [JavaPolicyProvider]: System Property [java.io.tmpdir => C:\Users\SUDHAN~1\AppData\Local\Temp\]
    [JavaPolicyProvider]: System Property [jrf.version => 11.1.1]
    [JavaPolicyProvider]: System Property [oracle.webcenter.analytics.disable-native-partitioning => false]
    [JavaPolicyProvider]: System Property [java.vendor.url.bug => http://java.sun.com/cgi-bin/bugreport.cgi]
    [JavaPolicyProvider]: System Property [jps.app.credential.overwrite.allowed => true]
    [JavaPolicyProvider]: System Property [os.arch => x86]
    [JavaPolicyProvider]: System Property [java.awt.graphicsenv => sun.awt.Win32GraphicsEnvironment]
    [JavaPolicyProvider]: System Property [java.ext.dirs => D:\ORACLE~1.6_M\JDK160~1\jre\lib\ext;C:\Windows\Sun\Java\lib\ext]
    [JavaPolicyProvider]: System Property [user.dir => D:\JDevSys\system11.1.1.6.38.61.92\DefaultDomain]
    [JavaPolicyProvider]: System Property [common.components.home => D:\ORACLE~1.6_M\ORACLE~1]
    [JavaPolicyProvider]: System Property [weblogic.ext.dirs => D:\ORACLE~1.6_M\patch_wls1035\profiles\default\sysext_manifest_classpath;D:\ORACLE~1.6_M\patch_jdev1111\profiles\default\sysext_manifest_classpath]
    [JavaPolicyProvider]: System Property [wsm.repository.path => D:\JDevSys\SYSTEM~1.92\DEFAUL~1\oracle\store\gmds]
    [JavaPolicyProvider]: System Property [line.separator =>
    [JavaPolicyProvider]: System Property [java.vm.name => Java HotSpot(TM) Client VM]
    [JavaPolicyProvider]: System Property [org.apache.commons.logging.Log => org.apache.commons.logging.impl.Jdk14Logger]
    [JavaPolicyProvider]: System Property [weblogic.management.discover => true]
    [JavaPolicyProvider]: System Property [org.omg.CORBA.ORBClass => weblogic.corba.orb.ORB]
    [JavaPolicyProvider]: System Property [file.encoding => Cp1252]
    [JavaPolicyProvider]: System Property [weblogic.classloader.preprocessor => weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor]
    [JavaPolicyProvider]: System Property [java.specification.version => 1.6]
    [JavaPolicyProvider]: System Property [javax.net.ssl.trustStore => D:\Oracle_Jdev11.1.1.6_Middleware_Home\wlserver_10.3\server\lib\DemoTrust.jks]
    policy: reading file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/server/lib/weblogic.policy
    java.lang.IllegalArgumentException: null KeyStore name
        at sun.security.util.PolicyUtil.getKeyStore(PolicyUtil.java:65)
        at sun.security.provider.PolicyFile.init(PolicyFile.java:635)
        at sun.security.provider.PolicyFile.access$400(PolicyFile.java:266)
        at sun.security.provider.PolicyFile$3.run(PolicyFile.java:546)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.security.provider.PolicyFile.initPolicyFile(PolicyFile.java:519)
        at sun.security.provider.PolicyFile.initPolicyFile(PolicyFile.java:505)
        at sun.security.provider.PolicyFile.init(PolicyFile.java:464)
        at sun.security.provider.PolicyFile.<init>(PolicyFile.java:309)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at java.security.Policy.getPolicyNoCheck(Policy.java:167)
        at java.security.ProtectionDomain.implies(ProtectionDomain.java:224)
        at java.security.AccessControlContext.checkPermission(AccessControlContext.java:352)
        at java.security.AccessController.checkPermission(AccessController.java:546)
        at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:458)
        at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:518)
        at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:544)
        at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:643)
        at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.containsCredential(SspCredentialStore.java:320)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker$3.run(FileKeyStoreIntegrityChecker.java:176)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker$3.run(FileKeyStoreIntegrityChecker.java:174)
        at java.security.AccessController.doPrivileged(Native Method)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker.CsContainsHash(FileKeyStoreIntegrityChecker.java:174)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker.<init>(FileKeyStoreIntegrityChecker.java:81)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.<init>(FileKeyStoreManager.java:165)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.getInstance(FileKeyStoreManager.java:146)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.doInit(FileKeyStoreServiceImpl.java:95)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:76)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:66)
        at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:157)
        at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:64)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191)
        at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132)
        at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:127)
        at oracle.security.jps.internal.policystore.PolicyUtil$2.run(PolicyUtil.java:2827)
        at oracle.security.jps.internal.policystore.PolicyUtil$2.run(PolicyUtil.java:2821)
        at java.security.AccessController.doPrivileged(Native Method)
        at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPDPService(PolicyUtil.java:2821)
        at oracle.security.jps.internal.policystore.PolicyUtil.getPDPService(PolicyUtil.java:3097)
        at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:164)
        at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:369)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
        at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
        at weblogic.security.SecurityService.start(SecurityService.java:141)
        at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/server/lib/-
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/../modules/-
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/server/ext/-
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/common/lib/ext/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/ORACLE~1.6_M/patch_wls1035/profiles/default/sysext_manifest_classpath%3bD:/ORACLE~1.6_M/patch_jdev1111/profiles/default/sysext_manifest_classpath/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/common/eval/pointbase/lib/-
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/ORACLE~1.6_M/ORACLE~1/modules/oracle.jps_11.1.1/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/ORACLE~1.6_M/ORACLE~1/modules/oracle.pki_11.1.1/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:/weblogic/application/defaults/EJB
    policy:   (java.lang.RuntimePermission queuePrintJob)
    policy:   (java.net.SocketPermission * connect,resolve)
    policy:   (java.util.PropertyPermission * read)
    policy:   (java.io.FilePermission WEBLOGIC-APPLICATION-ROOT\- read)
    policy:   (java.lang.management.ManagementPermission control)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:/weblogic/application/defaults/Web
    policy:   (java.lang.RuntimePermission loadLibrary)
    policy:   (java.lang.RuntimePermission queuePrintJob)
    policy:   (java.net.SocketPermission * connect,resolve)
    policy:   (java.io.FilePermission WEBLOGIC-APPLICATION-ROOT\- read,write)
    policy:   (java.io.FilePermission WEBLOGIC-APPLICATION-ROOT\..\- read)
    policy:   (java.util.PropertyPermission * read)
    policy:   (java.lang.management.ManagementPermission control)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:/weblogic/application/defaults/Connector
    policy:   (java.net.SocketPermission * connect,resolve)
    policy:   (java.io.FilePermission WEBLOGIC-APPLICATION-ROOT\- read,write)
    policy:   (java.io.FilePermission WEBLOGIC-APPLICATION-ROOT\..\- read)
    policy:   (java.util.PropertyPermission * read)
    policy:   (java.lang.management.ManagementPermission control)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:/D:/ORACLE~1.6_M/JDK160~1/jre/lib/ext/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:/C:/Windows/Sun/Java/lib/ext/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:D:/ORACLE~1.6_M/JDK160~1/jre/lib/ext/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase null
    policy:   weblogic.security.principal.WLSGroupImpl/Administrators
    policy:   (javax.management.MBeanPermission * addNotificationListener)
    policy:   (javax.management.MBeanPermission * removeNotificationListener)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase null
    policy:   weblogic.security.principal.WLSGroupImpl/Deployers
    policy:   (javax.management.MBeanPermission * addNotificationListener)
    policy:   (javax.management.MBeanPermission * removeNotificationListener)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase null
    policy:   weblogic.security.principal.WLSGroupImpl/Operators
    policy:   (javax.management.MBeanPermission * addNotificationListener)
    policy:   (javax.management.MBeanPermission * removeNotificationListener)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase null
    policy:   weblogic.security.principal.WLSGroupImpl/Monitors
    policy:   (javax.management.MBeanPermission * addNotificationListener)
    policy:   (javax.management.MBeanPermission * removeNotificationListener)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase null
    policy:   weblogic.security.principal.WLSKernelIdentity/*
    policy:   (javax.management.MBeanPermission * addNotificationListener)
    policy:   (javax.management.MBeanPermission * removeNotificationListener)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase null
    policy:   (java.util.PropertyPermission java.version read)
    policy:   (java.util.PropertyPermission java.vendor read)
    policy:   (java.util.PropertyPermission java.vendor.url read)
    policy:   (java.util.PropertyPermission java.class.version read)
    policy:   (java.util.PropertyPermission os.name read)
    policy:   (java.util.PropertyPermission os.version read)
    policy:   (java.util.PropertyPermission os.arch read)
    policy:   (java.util.PropertyPermission file.separator read)
    policy:   (java.util.PropertyPermission path.separator read)
    policy:   (java.util.PropertyPermission line.separator read)
    policy:   (java.util.PropertyPermission java.specification.version read)
    policy:   (java.util.PropertyPermission java.specification.vendor read)
    policy:   (java.util.PropertyPermission java.specification.name read)
    policy:   (java.util.PropertyPermission java.vm.specification.version read)
    policy:   (java.util.PropertyPermission java.vm.specification.vendor read)
    policy:   (java.util.PropertyPermission java.vm.specification.name read)
    policy:   (java.util.PropertyPermission java.vm.version read)
    policy:   (java.util.PropertyPermission java.vm.vendor read)
    policy:   (java.util.PropertyPermission java.vm.name read)
    policy:
    policy: reading file:/D:/ORACLE~1.6_M/JDK160~1/jre/lib/security/java.policy
    java.lang.IllegalArgumentException: null KeyStore name
        at sun.security.util.PolicyUtil.getKeyStore(PolicyUtil.java:65)
        at sun.security.provider.PolicyFile.init(PolicyFile.java:635)
        at sun.security.provider.PolicyFile.access$400(PolicyFile.java:266)
        at sun.security.provider.PolicyFile$3.run(PolicyFile.java:587)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.security.provider.PolicyFile.initPolicyFile(PolicyFile.java:519)
        at sun.security.provider.PolicyFile.initPolicyFile(PolicyFile.java:505)
        at sun.security.provider.PolicyFile.init(PolicyFile.java:464)
        at sun.security.provider.PolicyFile.<init>(PolicyFile.java:309)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at java.security.Policy.getPolicyNoCheck(Policy.java:167)
        at java.security.ProtectionDomain.implies(ProtectionDomain.java:224)
        at java.security.AccessControlContext.checkPermission(AccessControlContext.java:352)
        at java.security.AccessController.checkPermission(AccessController.java:546)
        at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:458)
        at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:518)
        at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:544)
        at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:643)
        at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.containsCredential(SspCredentialStore.java:320)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker$3.run(FileKeyStoreIntegrityChecker.java:176)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker$3.run(FileKeyStoreIntegrityChecker.java:174)
        at java.security.AccessController.doPrivileged(Native Method)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker.CsContainsHash(FileKeyStoreIntegrityChecker.java:174)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker.<init>(FileKeyStoreIntegrityChecker.java:81)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.<init>(FileKeyStoreManager.java:165)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.getInstance(FileKeyStoreManager.java:146)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.doInit(FileKeyStoreServiceImpl.java:95)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:76)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:66)
        at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:157)
        at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:64)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191)
        at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132)
        at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:127)
        at oracle.security.jps.internal.policystore.PolicyUtil$2.run(PolicyUtil.java:2827)
        at oracle.security.jps.internal.policystore.PolicyUtil$2.run(PolicyUtil.java:2821)
        at java.security.AccessController.doPrivileged(Native Method)
        at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPDPService(PolicyUtil.java:2821)
        at oracle.security.jps.internal.policystore.PolicyUtil.getPDPService(PolicyUtil.java:3097)
        at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:164)
        at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:369)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
        at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
        at weblogic.security.SecurityService.start(SecurityService.java:141)
        at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:/D:/ORACLE~1.6_M/JDK160~1/jre/lib/ext/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase file:/C:/Windows/Sun/Java/lib/ext/*
    policy:   (java.security.AllPermission <all permissions> <all actions>)
    policy:
    policy: Adding policy entry:
    policy:   signedBy null
    policy:   codeBase null
    policy:   (java.lang.RuntimePermission stopThread)
    policy:   (java.net.SocketPermission localhost:1024- listen,resolve)
    policy:   (java.util.PropertyPermission java.version read)
    policy:   (java.util.PropertyPermission java.vendor read)
    policy:   (java.util.PropertyPermission java.vendor.url read)
    policy:   (java.util.PropertyPermission java.class.version read)
    policy:   (java.util.PropertyPermission os.name read)
    policy:   (java.util.PropertyPermission os.version read)
    policy:   (java.util.PropertyPermission os.arch read)
    policy:   (java.util.PropertyPermission file.separator read)
    policy:   (java.util.PropertyPermission path.separator read)
    policy:   (java.util.PropertyPermission line.separator read)
    policy:   (java.util.PropertyPermission java.specification.version read)
    policy:   (java.util.PropertyPermission java.specification.vendor read)
    policy:   (java.util.PropertyPermission java.specification.name read)
    policy:   (java.util.PropertyPermission java.vm.specification.version read)
    policy:   (java.util.PropertyPermission java.vm.specification.vendor read)
    policy:   (java.util.PropertyPermission java.vm.specification.name read)
    policy:   (java.util.PropertyPermission java.vm.version read)
    policy:   (java.util.PropertyPermission java.vm.vendor read)
    policy:   (java.util.PropertyPermission java.vm.name read)
    policy:
    policy: reading file:/C:/Users/SudhanshuG/.java.policy
    policy: error parsing file:/C:/Users/SudhanshuG/.java.policy
    policy: java.io.FileNotFoundException: C:\Users\SudhanshuG\.java.policy (The system cannot find the file specified)
    java.io.FileNotFoundException: C:\Users\SudhanshuG\.java.policy (The system cannot find the file specified)
        at java.io.FileInputStream.open(Native Method)
        at java.io.FileInputStream.<init>(FileInputStream.java:106)
        at java.io.FileInputStream.<init>(FileInputStream.java:66)
        at sun.security.util.PolicyUtil.getInputStream(PolicyUtil.java:43)
        at sun.security.provider.PolicyFile.init(PolicyFile.java:626)
        at sun.security.provider.PolicyFile.access$400(PolicyFile.java:266)
        at sun.security.provider.PolicyFile$3.run(PolicyFile.java:587)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.security.provider.PolicyFile.initPolicyFile(PolicyFile.java:519)
        at sun.security.provider.PolicyFile.initPolicyFile(PolicyFile.java:505)
        at sun.security.provider.PolicyFile.init(PolicyFile.java:464)
        at sun.security.provider.PolicyFile.<init>(PolicyFile.java:309)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at java.security.Policy.getPolicyNoCheck(Policy.java:167)
        at java.security.ProtectionDomain.implies(ProtectionDomain.java:224)
        at java.security.AccessControlContext.checkPermission(AccessControlContext.java:352)
        at java.security.AccessController.checkPermission(AccessController.java:546)
        at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:458)
        at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:518)
        at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:544)
        at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:643)
        at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.containsCredential(SspCredentialStore.java:320)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker$3.run(FileKeyStoreIntegrityChecker.java:176)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker$3.run(FileKeyStoreIntegrityChecker.java:174)
        at java.security.AccessController.doPrivileged(Native Method)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker.CsContainsHash(FileKeyStoreIntegrityChecker.java:174)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreIntegrityChecker.<init>(FileKeyStoreIntegrityChecker.java:81)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.<init>(FileKeyStoreManager.java:165)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.getInstance(FileKeyStoreManager.java:146)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.doInit(FileKeyStoreServiceImpl.java:95)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:76)
        at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:66)
        at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:157)
        at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:64)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170)
        at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191)
        at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132)
        at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:127)
        at oracle.security.jps.internal.policystore.PolicyUtil$2.run(PolicyUtil.java:2827)
        at oracle.security.jps.internal.policystore.PolicyUtil$2.run(PolicyUtil.java:2821)
        at java.security.AccessController.doPrivileged(Native Method)
        at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPDPService(PolicyUtil.java:2821)
        at oracle.security.jps.internal.policystore.PolicyUtil.getPDPService(PolicyUtil.java:3097)
        at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:164)
        at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:369)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
        at java.lang.Class.newInstance0(Class.java:355)
        at java.lang.Class.newInstance(Class.java:308)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
        at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
        at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
        at weblogic.security.SecurityService.start(SecurityService.java:141)
        at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    policy: getPermissions:
        PD CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
        PD ClassLoader: sun.misc.Launcher$AppClassLoader@1172e08
        PD Principals: <no principals>
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/server/lib/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/modules/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/server/ext/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/common/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/patch_wls1035/profiles/default/sysext_manifest_classpath%3bD:/ORACLE~1.6_M/patch_jdev1111/profiles/default/sysext_manifest_classpath/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/common/eval/pointbase/lib/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: []
        Active Principals: []
    policy:   granting (java.security.AllPermission <all permissions> <all actions>)
    policy: evaluation (codesource/principals) passed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.pki_11.1.1/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/weblogic/application/defaults/EJB <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/weblogic/application/defaults/Web <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/weblogic/application/defaults/Connector <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/jdk160_24/jre/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/C:/Windows/Sun/Java/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/jdk160_24/jre/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Administrators]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Deployers]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Operators]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Monitors]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSKernelIdentity/*]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: []
        Active Principals: []
    policy:   granting (java.util.PropertyPermission java.version read)
    policy:   granting (java.util.PropertyPermission java.vendor read)
    policy:   granting (java.util.PropertyPermission java.vendor.url read)
    policy:   granting (java.util.PropertyPermission java.class.version read)
    policy:   granting (java.util.PropertyPermission os.name read)
    policy:   granting (java.util.PropertyPermission os.version read)
    policy:   granting (java.util.PropertyPermission os.arch read)
    policy:   granting (java.util.PropertyPermission file.separator read)
    policy:   granting (java.util.PropertyPermission path.separator read)
    policy:   granting (java.util.PropertyPermission line.separator read)
    policy:   granting (java.util.PropertyPermission java.specification.version read)
    policy:   granting (java.util.PropertyPermission java.specification.vendor read)
    policy:   granting (java.util.PropertyPermission java.specification.name read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.version read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.vendor read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.name read)
    policy:   granting (java.util.PropertyPermission java.vm.version read)
    policy:   granting (java.util.PropertyPermission java.vm.vendor read)
    policy:   granting (java.util.PropertyPermission java.vm.name read)
    policy: evaluation (codesource/principals) passed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/jdk160_24/jre/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/C:/Windows/Sun/Java/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-api.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: []
        Active Principals: []
    policy:   granting (java.lang.RuntimePermission stopThread)
    policy:   granting (java.net.SocketPermission localhost:1024- listen,resolve)
    policy:   granting (java.util.PropertyPermission java.version read)
    policy:   granting (java.util.PropertyPermission java.vendor read)
    policy:   granting (java.util.PropertyPermission java.vendor.url read)
    policy:   granting (java.util.PropertyPermission java.class.version read)
    policy:   granting (java.util.PropertyPermission os.name read)
    policy:   granting (java.util.PropertyPermission os.version read)
    policy:   granting (java.util.PropertyPermission os.arch read)
    policy:   granting (java.util.PropertyPermission file.separator read)
    policy:   granting (java.util.PropertyPermission path.separator read)
    policy:   granting (java.util.PropertyPermission line.separator read)
    policy:   granting (java.util.PropertyPermission java.specification.version read)
    policy:   granting (java.util.PropertyPermission java.specification.vendor read)
    policy:   granting (java.util.PropertyPermission java.specification.name read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.version read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.vendor read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.name read)
    policy:   granting (java.util.PropertyPermission java.vm.version read)
    policy:   granting (java.util.PropertyPermission java.vm.vendor read)
    policy:   granting (java.util.PropertyPermission java.vm.name read)
    policy: evaluation (codesource/principals) passed
    policy: getPermissions:
        PD CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
        PD ClassLoader: sun.misc.Launcher$AppClassLoader@1172e08
        PD Principals: <no principals>
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/server/lib/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/modules/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/server/ext/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/common/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/patch_wls1035/profiles/default/sysext_manifest_classpath%3bD:/ORACLE~1.6_M/patch_jdev1111/profiles/default/sysext_manifest_classpath/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/wlserver_10.3/common/eval/pointbase/lib/- <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: []
        Active Principals: []
    policy:   granting (java.security.AllPermission <all permissions> <all actions>)
    policy: evaluation (codesource/principals) passed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.pki_11.1.1/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/weblogic/application/defaults/EJB <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/weblogic/application/defaults/Web <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/weblogic/application/defaults/Connector <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/jdk160_24/jre/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/C:/Windows/Sun/Java/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/jdk160_24/jre/lib/ext/* <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluation (codesource) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Administrators]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Deployers]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Operators]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSGroupImpl/Monitors]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: [weblogic.security.principal.WLSKernelIdentity/*]
        Active Principals: []
    policy: evaluation (principals) failed
    policy: evaluate codesources:
        Policy CodeSource: (null <no signer certificates>)
        Active CodeSource: (file:/D:/Oracle_Jdev11.1.1.6_Middleware_Home/oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar <no signer certificates>)
    policy: evaluate principals:
        Policy Principals: []
        Active Principals: []
    policy:   granting (java.util.PropertyPermission java.version read)
    policy:   granting (java.util.PropertyPermission java.vendor read)
    policy:   granting (java.util.PropertyPermission java.vendor.url read)
    policy:   granting (java.util.PropertyPermission java.class.version read)
    policy:   granting (java.util.PropertyPermission os.name read)
    policy:   granting (java.util.PropertyPermission os.version read)
    policy:   granting (java.util.PropertyPermission os.arch read)
    policy:   granting (java.util.PropertyPermission file.separator read)
    policy:   granting (java.util.PropertyPermission path.separator read)
    policy:   granting (java.util.PropertyPermission line.separator read)
    policy:   granting (java.util.PropertyPermission java.specification.version read)
    policy:   granting (java.util.PropertyPermission java.specification.vendor read)
    policy:   granting (java.util.PropertyPermission java.specification.name read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.version read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.vendor read)
    policy:   granting (java.util.PropertyPermission java.vm.specification.name read)
    policy:   granting (java.util.PropertyPermission java.vm.version read)
    policy:   granting (java.util.PropertyPermission java.vm.vendor read)
    policy:   granting (java.util.PropertyPermission java.vm.name read)
    policy: evaluation (codesource/principals) passed
    policy: evaluate codesources

    Hi,
    Your issue is something similar to the issue described in below metalink id. Please check below metalink id, you issue may be resolved.
    Start OMS failed with "javax.xml.stream.XMLStreamException: Premature end of file encountered" [ID 1481158.1]
    Mark if this helps you.
    Regards,
    Kishore

  • Warning BEA-2156203 JEE5 Version in Weblogic Server 10.3.6

    Hi, when I start the Weblogic Admin Server for studio domain, there appears the below warning:
    <27-nov-2013 13H34' CET> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in C:\OEID_Installers\endecastudio\endeca-portal-weblogic-3.1.14220.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    <27-nov-2013 13H34' CET> <Warning> <Munger> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in
    C:\Oracle\Middleware\user_projects\domains\endeca_studio_domain\servers\AdminServer\tmp\_WL_user\endeca-portal-weblogic-3\diq5s7/METAINF/application.xml.
    A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    Wls: 10.3.6
    JEE: 7u40
    Windows x64
    I know that this same error appears when the JEE version is JEE6 and that is a bug which is fixed by the patch:
    11720907: SU Patch [2IE6]: <A VERSION ATTRIBUTE WAS NOT FOUND IN ELEMENT PERSISTENCE ..>
    Exist any patch for JEE7? or this warning is solved by other way?

    Hi Julia,
    I'm using java 7 upgrade 40.
    It is better if I uninstall java version 7 and install version 6 upgrade 43?
    I supposed that it was better install the lastest java version, but if you tell me that is better use version 6, I will do it
    Mercy

  • Weblogic server 10.3.6 or 10.3.5?

    Hi
    We are currently on web logic server 10.3.5. JDK 1.6 is certified for this.
    As part of OBIEE upgrade from 11.1.1.5 to 11.1.1.6.2 we are looking at upgrading web logic server to 10.3.6.
    If we do this then we must also upgrade JDK to 1.7.
    Has anyone done this? Are there significant benefits to doing so, or should we just leave WLS to 10.3.5 and save ourselves having to upgrade JDK too?
    Thanks for any tips,
    DA.

    Hi,
    For the Oracle Certification Matrix ref:(just check your jdk version)
    Please check OBIEE11.1.1..6.0(Current System Certification matrix)
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/bi-11gr1certmatrix-166168.xls
    Patch for weblogic 10.3.6.0 version
    You Can downloaded upgrade installer for 10.3.6 from support.oracle.com - Patch 13529639: PLACEHOLDER BUG FOR WEBLOGIC SERVER 11GR1 (10.3.6) UPGRADE INSTALLER
    the webLogic server 10.3.6.0 patch set to be applied to existing bugs fixed in WebLogic Server 10.3.5.0 installations, or prior WebLogic Server 10.3.X installations like Jdeveloper,ADF bugs resolved
    Note:Oracle WebLogic Server to either version 10.3.6 or 10.3.5 (both are supported in Release OBIEE 11.1.1.6.0)
    just refer the upgrade steps
    Re: upgrade 11.1.1.5 to 11.1.1.6 which Oracle BI Product Installer?
    Upgrade 11.1.1.5 to 11.1.1.6
    Thanks
    Deva

Maybe you are looking for

  • How do I put a "Not Eligible" song on my iPhone

    After iTunes matched my library, it found 60 items that were "Not Eligible". Most were music videos but some were not.  If I turn iTunes Match on for my iPhone or iPad, it says the library will be removed and replaced with my iTunes Match library in

  • Font is fuzzy not sharp lost crispness

    the font on my computer has just gotten fuzzy. its lost its crispness, isn't sharp and is in all areas. how should I fix this?

  • Group leftreport

    Hi, I have to display a very big report. I have increased size of the report by setting main section width and height. But, one small pbm. for eg, if i have 10 columns [group left report] / horizontal elasticity is fixed and vertical is variable for

  • How to configure Active Directory LADP with WLS 8.1

    Hi somebody help me configure LDAP Active Directory with BEA WebLogic 8.1 I can't understand what i should do. ThanX

  • Contact Waiting for Confirmation

    I was using JV for TP to test calling into our CUBE which I am working on.  Was able to direct dial the SIP address and get connected last week. Somehow today the JV for TP seem to have changed (needed re-login, unable to dial out to a SIP address).