Weblogic and Struts

Running WL8.1 behind apache, I have WL installed as a windows service, and when attempting to process a simple struts form, I get this error:
No action instance for path /simple could be created
However, when running WL from the command line, it works fine. I didn't make any real changes to the default service install/uninstall stuff, beyond changing the service name.
Anyone seen behavior like this before? I really need this running as a service.

I have same problem. I want to use /LogonAction.do which will be authenticate user with j_security_check and then forward user to specific pages into struts-config.xml.
Is this possible?
Dusan.

Similar Messages

  • Please hepl me. i m intergrating ejb3 and struts in two server. but is not working

    it is simple application i m runing in tow server but i m get classsnotfound error pleas solve my problem. i will give my direct structure of application
    i m runing ejb3 in weblogic 10.3 and struts in tomcat server. both communication is not happening pleas help me. i m try from many days. But is not working form me
    root dir
    onlyenb6
    account class
    package ejb3.onlyejb;
    import java.io.Serializable;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    @Entity
    public class account implements Serializable{
    @Id
    int accno;
      public int getAccno() {
        return accno;
    public void setAccno(int accno) {
        this.accno = accno;
    public String getName() {
        return name;
    public void setName(String name) {
        this.name = name;
    public float getBalance() {
        return balance;
    public void setBalance(float balance) {
        this.balance = balance;
    String name;
    float balance;
    Int6_clss code
    package ejb3.onlyejb;
    import java.io.Serializable;
    public interface Int6_cls extends Serializable {
        public void storing(int acc, String name, float amt);
    Session.class code
    package ejb3.onlyejb;
    import javax.ejb.Remote;
    import javax.ejb.Stateless;
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    @Stateless(mappedName="saigoud")
    @Remote
    public class Session_ben implements Int6_cls {
        @PersistenceContext
        EntityManager mrg;
        public void storing(int acc, String name, float amt) {
    System.out.println("session="+acc);
    System.out.println("sess="+name);
            account accs=new account();
            accs.setAccno(acc);
            accs.setName(name);
            accs.setBalance(amt);
            mrg.persist(accs);
    build.xml
    <project name="onlyejb5" default="saifile">
    <property name="bea.home" value="C:/bea"/>
    <property name="wl_home" value="${bea.home}/wlserver_10.3"/>
    <path id="main.class.path">
    <pathelement path="${bea.home}/modules/com.bea.core.utils_1.4.0.0.jar"/>
    <pathelement path="${bea.home}/modules/com.bea.core.jarbuilder_1.2.0.0.jar"/>
    <pathelement path="${java.class.path}"/>
    </path>
    <target name="saifile">
    <echo message="***ANT Script should run from inside the ${wl.home}/server/lib *****" />
    <echo message="***** ********* ********* *****" />
    <java classname="com.bea.jarbuilder.JarBuilder">
    <classpath refid="main.class.path"/>
    <jvmarg value="-d ${wl.home}/server/lib -jar wljarbuilder.jar"/>
    </java>
    </target>
    </project>
    after run with ant i get successfully create wlfullclient.jar
    i m taking this wlfullclient.jar and pasting in tomcat lib directery and run webapplication
    my webapplication code
    package ejb3.onlyejb;
    import java.io.Serializable;
    public interface Int6_cls extends Serializable {
        public void storing(int acc, String name, float amt);
    package ejb3.onlywed;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.util.Hashtable;
    import java.util.Properties;
    import javax.ejb.EJB;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import ejb3.onlyejb.Int6_cls;
    public class Action_cls extends Action {
            public ActionForward execute(ActionMapping map, ActionForm fm, HttpServletRequest req, HttpServletResponse res)
        throws IOException{
            String respkey="fails";
            Action_form_bean bean=(Action_form_bean)fm;
            int ac=bean.getAccno();
            String na=bean.getName();
            float bal=bean.getAmt();
            System.out.println("accno="+ac);
    System.out.println("na="+na);
    System.out.println("bal="+bal);
    System.out.println("enter in to if loop");
               Hashtable p=new Hashtable();
    p.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");
    p.put(Context.PROVIDER_URL,"t3://localhost:7001");
            System.out.println("jndi properties nuderprocess");
               try {
    System.out.println("loading p file="+p);
                InitialContext ic = new InitialContext(p);
    System.out.println("loading p file over="+ic);
            System.out.println("jndi file is  loaded");
          //System.out.println("wrs="+wrs);
    System.out.println("entry in try block");
    Int6_cls wrs=(Int6_cls)ic.lookup("saigoud#ejb3.onlyejb.Int6_cls");
           System.out.println("lookup susfull");
              wrs.storing(ac, na, bal);
        respkey="ok";
              } catch (NamingException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
            catch (Exception e) {
                // TODO: handle exception
            ActionForward fw=map.findForward(respkey);
            return fw;
    get error
    accno=44
    na=hjhjhj
    bal=777.0
    enter in to if loop
    jndi properties nuderprocess
    jndi properties nuderprocess22
    loading p file={java.naming.provider.url=t3://localhost:7001, java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory}
    loading p file over=javax.naming.InitialContext@12f9bcd
    jndi file is  loaded
    entry in try block
    Jul 5, 2013 1:36:22 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet action threw exception
    java.lang.ClassNotFoundException: ejb3.onlyejb.Int6_cls
        at weblogic.ejb.container.deployer.RemoteBizIntfClassLoader.getClassBytes(RemoteBizIntfClassLoader.java:151)
        at weblogic.ejb.container.deployer.RemoteBizIntfClassLoader.loadClass(RemoteBizIntfClassLoader.java:96)
        at weblogic.ejb.container.internal.RemoteBusinessIntfGenerator.generateRemoteInterface(RemoteBusinessIntfGenerator.java:54)
        at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.readObject(RemoteBusinessIntfProxy.java:205)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
        at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1846)
        at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
        at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
        at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1945)
        at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1869)
        at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
        at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
        at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
        at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:197)
        at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:564)
        at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:193)
        at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62)
        at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:240)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
        at weblogic.jndi.internal.ServerNamingNode_1030_WLStub.lookup(Unknown Source)
        at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:392)
        at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:380)
        at javax.naming.InitialContext.lookup(InitialContext.java:392)
        at ejb3.onlywed.Action_cls.execute(Action_cls.java:62)
        at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
        at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
        at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
        at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
        at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
        at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
        at java.lang.Thread.run(Thread.java:619)

    Locking multipost.

  • JSR 168 and Struts support sample error

    I'm trying to get the sample webapp for JSR 168 and Struts support working with
    WebLogic 8.1, and I'm having problems with the struts portlet. The other portlets
    seem to work fine, but the Struts portlet gives the following error after clicking
    "Save" on most of the forms:
    Page Flow Error - Action Not Found
    Page Flow: Global.app
    Action: html-setters.do
    Unable to find action html-setters.do.
    That error appears in the browser. At the same time, the following exception
    appears in the server window:
    <Aug 18, 2003 4:34:12 PM EDT> <Error> <netui> <BEA-420012> <There was an error
    while running a lifecycle stage :: Lifecycle: UIControl.render :: for the control
    :: null ::.
    com.bea.netuix.nf.UIControlException: For portlet [strutsPortlet], could not do
    page flow lookup for the given action [html-setters.do] in the given PageFlow:
    [struts/exercise-taglib].
    This exception is followed by hundreds of lines of the following:
    at com.bea.wlw.netui.pageflow.scoping.ScopedServletUtils.strutsLookup(ScopedServletUtils.java:363)
    as well as several stack overflow errors.
    I believe I have installed the JSR168 and Struts support package according to
    the instructions, and have copied the required jars into the samples WEB-INF/lib
    directory. I also have tried to write my own Struts application in a portlet,
    and it gets the exact same errors when I try to submit a form to my actions.
    Any insight would be much appreciated!
    Thanks,
    Patrick

    Hi Brodi,
    I am having the same problem as Patrick. The problem is not in the struts portlet,
    but in the forms the portlet navigates to. After the struts portlet loads, I
    am able to use the html:links and navigate through the pages. Though when I try
    to submit a form I get the action not found error. For example the html-select
    page has a form. This page loads fine, but when I hit the save button I get the
    following error.
    <Aug 25, 2003 11:00:00 AM EDT> <Error> <netui> <BEA-420012> <There was an error
    while running a lifecycle stage :: Lifecycle: UIControl.render :: for the contro
    l :: null ::.
    com.bea.netuix.nf.UIControlException: For portlet [strutsPortlet], could not do
    page flow lookup for the given action [html-select.do] in the given PageFlow:
    struts/exercise-taglib].
    The application appears to loose the struts context. It tries to find the localhost:7001/samples/html-select.do
    action instead of localhost:7001/samples/struts/exercise-taglib/html-select.do
    action. How do I keep the application from loosing context?
    Thank you,
    Karen
    "Brodi Beartusk" <[email protected]> wrote:
    >
    Patrick-
    I've seen similar things happen when the module name is either not specified
    correctly
    in the StrutsContent element in the portlet, or when the module is misconfigured,
    usually because of either a mising config file or a mis-named config
    file.
    Ensure that you have a the struts config file for the exercise-taglib
    module in
    WEB-INF, named jpf-struts-config-struts-exercise-taglib.xml.
    -Brodi Beartusk
    "Patrick Callis" <[email protected]> wrote:
    I'm trying to get the sample webapp for JSR 168 and Struts support working
    with
    WebLogic 8.1, and I'm having problems with the struts portlet. Theother
    portlets
    seem to work fine, but the Struts portlet gives the following errorafter
    clicking
    "Save" on most of the forms:
    Page Flow Error - Action Not Found
    Page Flow: Global.app
    Action: html-setters.do
    Unable to find action html-setters.do.
    That error appears in the browser. At the same time, the followingexception
    appears in the server window:
    <Aug 18, 2003 4:34:12 PM EDT> <Error> <netui> <BEA-420012> <There was
    an error
    while running a lifecycle stage :: Lifecycle: UIControl.render :: for
    the control
    :: null ::.
    com.bea.netuix.nf.UIControlException: For portlet [strutsPortlet], could
    not do
    page flow lookup for the given action [html-setters.do] in the given
    PageFlow:
    [struts/exercise-taglib].
    This exception is followed by hundreds of lines of the following:
    at com.bea.wlw.netui.pageflow.scoping.ScopedServletUtils.strutsLookup(ScopedServletUtils.java:363)
    as well as several stack overflow errors.
    I believe I have installed the JSR168 and Struts support package according
    to
    the instructions, and have copied the required jars into the samples
    WEB-INF/lib
    directory. I also have tried to write my own Struts application ina
    portlet,
    and it gets the exact same errors when I try to submit a form to myactions.
    Any insight would be much appreciated!
    Thanks,
    Patrick

  • Weblogic 8 struts to portlet conversion

    Hello all,
    We are running Weblogic 8 (sp4) Portal. We have converted a struts prototype application into a portlet. We would like to continue to extend this converted prototype under Weblogic adding additional functionality.
    Can we do this? If we add in new pages and struts config mappings, will Weblogic pick this up?
    Or was this a one time conversion from Struts to Portlet and we can not extend?
    Thank you,
    Robert

    Yes,
    Its your stuts module part of the app and proper mofifications will work and you will know the problems during building in application in workshop.
    Thanks
    Vishnu

  • _pageflow and struts action xml are not creating from build.xml

    which is exported from Eclipse (Weblogic portal 10.3.2). But from Eclipse exporting EAR, which contains WAR have _pageflow directory and corresponding xml file. Here is build.xml which is exported from Eclipse.
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!-- WARNING: Eclipse auto-generated file.
    Any modifications will be overwritten.
    To include a user specific buildfile here, simply create one in the same
    directory with the processing instruction <?eclipse.ant.import?>
    as the first entry and export the buildfile again. -->
    <project basedir="." default="build" name="MyPortalWAR">
    <property environment="env"/>
    <property name="ECLIPSE_HOME" value="C:/beaportal1032/oepe_11gR1PS1/eclipse"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <property name="project.dir" value="."/>
    <property name="project.name" value="MyPortalWAR"/>
    <property name="archive.name" value="${project.name}.war"/>
    <property name="target" value="1.6"/>
    <property name="source" value="1.6"/>
    <path id="WebLogic System Libraries.libraryclasspath">
    <pathelement location="../../beaportal1032/wlserver_10.3/server/lib/api.jar"/>
    <pathelement location="../../beaportal1032/modules/glassfish.jstl_1.2.0.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jsf_1.2.0.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.ejb_3.0.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.enterprise.deploy_1.2.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.interceptor_1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jms_1.1.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jsp_1.1.0.0_2-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.jws_2.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.activation_1.1.0.0_1-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.mail_1.1.0.0_1-4-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.soap_1.3.1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.rpc_1.2.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.ws_2.1.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.management.j2ee_1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.resource_1.5.1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.servlet_1.0.0.0_2-5.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.transaction_1.0.0.0_1-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.stream_1.1.1.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.security.jacc_1.0.0.0_1-1.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.xml.registry_1.0.0.0_1-0.jar"/>
    <pathelement location="../../beaportal1032/wlserver_10.3/server/lib/wls-api.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.apache_1.2.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.i18n_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.logging_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.utils.full_1.7.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.utils.wrapper_1.4.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.utils.classloaders_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.common.security.providers.env_1.0.0.0_5-2-0-0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.common.security.saml2.manage_1.0.0.0_5-2-0-0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.weblogic.web.api_1.3.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.weblogic.rmi.client_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.transaction_2.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.workarea_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.xml.weblogic.xpath_1.3.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.datasource6_1.7.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/com.bea.core.weblogic.stax_1.6.0.0.jar"/>
    <pathelement location="../../beaportal1032/modules/javax.persistence_1.0.0.0_1-0-2.jar"/>
    </path>
    <path id="EAR Libraries.libraryclasspath"/>
    <path id="Shared Library [wlp-tools-dvt-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-tools-dvt-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/war-classes.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-full-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_servlet-full.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wsrp-complex-producer.jar"/>
    </path>
    <path id="Shared Library [wlp-jsf-portlet-bridge-2.0-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-jsf-portlet-bridge-2.0-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/portlet-bridge-api-2.0.0-SNAPSHOT.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-jsf-portlet-bridge-2.0-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/portlet-bridge-impl-2.0.0-SNAPSHOT.jar"/>
    </path>
    <path id="Shared Library [wlp-clipper-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-clipper-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_clipper.jar"/>
    </path>
    <path id="Shared Library [wlp-lookandfeel-web-lib].libraryclasspath"/>
    <path id="Shared Library [wlp-rest-full-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-rest-full-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_rest-full.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-rest-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-rest-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_rest.jar"/>
    </path>
    <path id="Shared Library [content-management-faces-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-faces-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_faces.jar"/>
    </path>
    <path id="Shared Library [wlp-rest-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-rest-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/rest_servlet.jar"/>
    </path>
    <path id="Shared Library [wlp-light-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ccpp-1_0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ccpp-ri-1_0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/classes.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/client_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jena-1.4.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/l10n_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_servlet.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/portlet-container.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/prefs-spi.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/prefs_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/rdffilter.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/render_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-light-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/skeleton_taglib.jar"/>
    </path>
    <path id="Shared Library [wlp-wsrp-producer-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-wsrp-producer-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wsrp-producer.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-common-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-common-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/faces-adapter.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-common-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netui-adapter.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-common-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/netuix_common_web.jar"/>
    </path>
    <path id="Shared Library [jstl].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jstl_1.2_1.2.0.1/1/WEB-INF/lib/glassfish.jstl_1.2.0.1.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-struts-1.2-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-struts-1.2-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/struts-adapter.jar"/>
    </path>
    <path id="Shared Library [struts-1.2].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-beanutils.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-digester.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-fileupload-1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-validator-1.1.4.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/jakarta-oro.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/struts.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-beanutils.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-digester.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/struts-1.2_1.2_1.2.9/1/WEB-INF/lib/jakarta-oro.jar"/>
    </path>
    <path id="Oracle WebLogic Portal Server.libraryclasspath">
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/p13n_common.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/p13n_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/p13n-schemas.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/p13n/lib/system/wlp_services.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/wsrp-common.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/wsrp-client.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/netuix_common.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/netuix_schemas.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/light-portal/lib/system/netuix_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/portal/lib/system/netuix_system-full.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/content-mgmt/lib/system/content_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/info-mgmt/lib/system/wps_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/info-mgmt/lib/system/wlp_content_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/info-mgmt/lib/system/wlp-schemas.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/apps/lib/system/groupspace_system.jar"/>
    <pathelement location="../../beaportal1032/wlportal_10.3/analytics/lib/system/analytics_sys.jar"/>
    </path>
    <path id="Shared Library [beehive-controls-1.0.1-10.0-war].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-controls.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-ejb-control.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-jdbc-control.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/beehive-jms-control.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/commons-codec-1.3.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/commons-discovery.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-controls-1.0.1-10.0-war_1.0_1.0.2.2/1/WEB-INF/lib/log4j-1.2.8.jar"/>
    </path>
    <path id="Apache XMLBeans v2.3.libraryclasspath">
    <pathelement location="${ECLIPSE_HOME}/dropins/oepe/eclipse/plugins/oracle.eclipse.tools.xmlbeans.library.v23_2.2.1.201001302105.jar"/>
    </path>
    <path id="Shared Library [jsf].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/glassfish.jsf_1.2.9.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/glassfish.jstl_1.2.0.1.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/javax.jsf_1.2.0.1.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jsf_1.2_1.2.9.0/1/WEB-INF/lib/wls.jsf.di.jar"/>
    </path>
    <path id="Shared Library [jaxrs-framework-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jackson-core-asl-1.1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jackson-jaxrs-1.1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/jackson-mapper-asl-1.1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/rest-framework.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jaxrs-framework-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/token-manager.jar"/>
    </path>
    <path id="Shared Library [jersey-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/asm-3.1.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/jersey-core-1.0.2.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/jersey-server-1.0.2.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/jersey-web-lib_1.0_1.0.2/1/WEB-INF/lib/jsr311-api-1.0.jar"/>
    </path>
    <path id="Shared Library [content-management-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-app-lib_10.3.2_10.3.2/1/APP-INF/lib/content_wlp.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-app-lib_10.3.2_10.3.2/1/APP-INF/lib/jcrspi-1.0.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-app-lib_10.3.2_10.3.2/1/content_repo.jar"/>
    </path>
    <path id="Shared Library [wlp-services-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ad_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_servlet.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/dt_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ph_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/pz_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/um_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wlp_content.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wps_servlet.jar"/>
    </path>
    <path id="Shared Library [content-management-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/cmwsrp_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_functions.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_servlet.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/content-management-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/content_web_common.jar"/>
    </path>
    <path id="Shared Library [wlp-services-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-app-lib_10.3.2_10.3.2/1/APP-INF/lib/classes.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-services-app-lib_10.3.2_10.3.2/1/wps.jar"/>
    </path>
    <path id="Shared Library [vcr-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/vcr-app-lib_10.3.2_10.3.2/1/APP-INF/lib/content_system.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/vcr-app-lib_10.3.2_10.3.2/1/content.jar"/>
    </path>
    <path id="Shared Library [wls-commonslogging-bridge-war].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wls-commonslogging-bridge-war_1.0_1.1/1/WEB-INF/lib/commons-logging.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wls-commonslogging-bridge-war_1.0_1.1/1/WEB-INF/lib/wlcommons-logging.jar"/>
    </path>
    <path id="Shared Library [wlp-beehive-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-beehive-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/wlp-beehive-classes.jar"/>
    </path>
    <path id="Shared Library [beehive-netui-1.0.1-10.0].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/beehive-netui-core.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/beehive-netui-tags.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/commons-codec-1.3.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/commons-el.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/beehive-netui-1.0.1-10.0_1.0_1.0.2.2/1/WEB-INF/lib/weblogic-netui.jar"/>
    </path>
    <path id="Shared Library [beehive-netui-resources-1.0.1-10.0].libraryclasspath"/>
    <path id="Shared Library [p13n-rest-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-rest-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/p13n_rest.jar"/>
    </path>
    <path id="Shared Library [p13n-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/auth_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/es_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/i18n_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/profile_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ps_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/tracking_taglib.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/ugm_taglib.jar"/>
    </path>
    <path id="Shared Library [p13n-core-web-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-core-web-lib_10.3.2_10.3.2/1/WEB-INF/lib/p13n_web_app.jar"/>
    </path>
    <path id="Shared Library [wlp-framework-full-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-app-lib_10.3.2_10.3.2/1/APP-INF/lib/classes.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-app-lib_10.3.2_10.3.2/1/netuix.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/wlp-framework-full-app-lib_10.3.2_10.3.2/1/prefs.jar"/>
    </path>
    <path id="Shared Library [p13n-app-lib].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib_10.3.2_10.3.2/1/APP-INF/lib/credentialvault_service.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib_10.3.2_10.3.2/1/p13n_ejb.jar"/>
    </path>
    <path id="Shared Library [p13n-app-lib-base].libraryclasspath">
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n-schemas.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_app.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_common.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_system.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n_common.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/p13n-schemas.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/wlp_services.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/APP-INF/lib/wlp_services.jar"/>
    <pathelement location="../.metadata/.plugins/oracle.eclipse.tools.weblogic/libraries/p13n-app-lib-base_10.3.2_10.3.2/1/p13n_ejb_base.jar"/>
    Any ideas ..?
    - Ravi

    your problem here seems to be in your jsp, you have not given your jsp code here but its form tag should be like ,
    <html:form action="/searchCollegeResult.do">
    //your code
    </html:form>check this if it is same pls put your jsp code here then I can check.

  • What is difference between Weblogic and OSB

    Hi,
    The title says it all.
    What is the difference between Oracle WebLogic and Oracle Service Bus?
    Assuming both products are part of the Oracle strategy, when would I use each product?
    I am really struggling as I cannot find a link with this information.
    Many thanks
    Jason

    Jason,
    Weblogic is application server. Service Bus is a product which runs on top of Weblogic.
    You can find plenty information about both products on the web.
    Regards,
    Milan

  • Do I need to set  system env variables for weblogic and SOA server installation?

    Hi All,
       I already have two weblogic application servers on my machine(that were installed by others).
    I observed some environment variables were also set in System variables(ORACLE_HOME,WEB_SERVER_HOME etc) section in Env variables section(Start Menu---> Computer --> properties ---).But why do we need to have system environment variables wherein we already have those variables in files like setDomainEnv.bat or/and setSOADoaminEnv.bat for each server.
    And one more thing system variables will be applicable for all servers(the whole machine) right.It may spoil the installation of new servers and present servers as variables should be unique to each server.
        I want to install weblogic and SOA server installation.
    So Can I remove the existing system variables(as they will applicable for every server) and install weblogic and SOA server installation without setting up the environment variables?
    Especially I have multiple Weblogic servers,In that case how it would be to have environment variables(JAVA_HOME,WL_HOME,ORACLE_HOME etc)?
    Please guide me on this to installl SOA suite .
    Thanks in advance

    Hi All,
       I already have two weblogic application servers on my machine(that were installed by others).
    I observed some environment variables were also set in System variables(ORACLE_HOME,WEB_SERVER_HOME etc) section in Env variables section(Start Menu---> Computer --> properties ---).But why do we need to have system environment variables wherein we already have those variables in files like setDomainEnv.bat or/and setSOADoaminEnv.bat for each server.
    And one more thing system variables will be applicable for all servers(the whole machine) right.It may spoil the installation of new servers and present servers as variables should be unique to each server.
        I want to install weblogic and SOA server installation.
    So Can I remove the existing system variables(as they will applicable for every server) and install weblogic and SOA server installation without setting up the environment variables?
    Especially I have multiple Weblogic servers,In that case how it would be to have environment variables(JAVA_HOME,WL_HOME,ORACLE_HOME etc)?
    Please guide me on this to installl SOA suite .
    Thanks in advance

  • JSF And Struts Integration

    Can any body give some info on integration of JSF to existing struts application

    I describe the main differences between JSF and Struts in this sample Chapter from my JSF book:
    http://www.oreilly.com/catalog/jsvrfaces/chapter/ch01.pdf
    Hope that helps.

  • JSF and Struts - differences and integration goal.

    I am a newbie J2EE developer and I am not clear about main differences between JSF and Struts also I saw couple of articles describing integration between JSF and Struts. Could someone give me an explanation, what the main conceptual differences between those technologies and what's the goal of integration both of them?

    I describe the main differences between JSF and Struts in this sample Chapter from my JSF book:
    http://www.oreilly.com/catalog/jsvrfaces/chapter/ch01.pdf
    Hope that helps.

  • WebLogic and Maven in 5 minutes

    Hi guys, I wrote a short tutorial on how to develop a JEE5 application with Maven that deploys on WebLogic with split-deploy, for fast develop/deploy/fix/redeploy cycles:
    http://www.lucamasini.net/Home/java-enterprise/weblogic-and-maven-in-5-minutes
    Hope can be useful for someone.
    Ciao.
    L.
    Edited by: Luca Masini on Jun 5, 2011 8:52 PM

    thanks Luca, very appreciated.

  • Oracle ADF UIX and Struts

    Does Oracle ADF UIX use Struts components internally? If yes, Does Oracle Support the issues that arises because this internally used Struts components? (I am using Oracle ADF in my application.
    Thanks,
    Aravind.

    DataForwardAction and DataAction are build on top of struts actions to coordinate ADF databindings and it's life cycle;
    UIX, has xmlns:struts="http://xmlns.oracle.com/uix/struts" this XML namespace has some elements like
    <struts:form> and <struts:messageTextInput> also <struts:dataScope>
    They work like struts jsp tag;
    here a good paper;
    http://download-west.oracle.com/otn_hosted_doc/jdeveloper/904preview/uixhelp/uixdevguide/struts.html
    Marcos Ortega
    Brazil

  • Weblog and Groups

    I have the weblog up and running on our 10.4.8 server. I can log in to weblog with my short username and password.
    So now I would like to create a group weblog so multiple users can make entries to a single blog. In WGM I created a group called "Technology" and added myself to the group. I go to http://server/weblog/ and type in the short name of the group... "Tech". That sends me to http://servername/weblog/Tech/?createUserID=Tech a page that appears as the Technology weblog with the Login option on the right side. So I click "Login", type in my short username and password (the very same one that worked to log in to the weblog before) and get: "The username or password you entered is incorrect".
    A previous thread mentioned going in to Server Admin-> Settings --> Access and changing the Weblog settings. So I did. The default is "Allow all users and groups" which should logically include my newly created group. However, just to satisfy my curiosity, I changed to "Allow only users and groups below:" and added just the "Technology" group. While I could log into the blog by going straight in with my username... again, I could not log in to the "Tech" blog with the same username/password.
    I'm out of ideas.
    Xserve G5   Mac OS X (10.4.8)  

    Well... after moving the Weblogs directory to another hard drive and creating a new group, everything works as expected. I'm guessing permissions got whacked somewhere in the process of creating the first group.
    Problem solved.

  • JMS with weblogic and jdeveloper IDE

    HI,
    I am a newbie to jms..could anyone provide me a sample tutorial to test and deploy a sample jms application using weblogic and jdeveloper IDE.
    Thanks,
    Amy
    Edited by: 838667 on Feb 22, 2011 2:50 AM

    ...I have a strong feeling this is a TIBCO-related issue where you're not doing the lookup the way TIBCO likes.

  • Mule, Weblogic and MQ JMS : deadlock problem

    Dear Oracle community,
    We are hosting our Mule ESB (3.1) application on a Weblogic 10.3 (11g) server and are using IBM Websphere MQ's JMS solution (with libraries version 7.0.1.7).
    The problem we are facing is that JMS connections are created by one of Weblogic's worker (thread) and the close() method for those connections are not necessarily called by the same thread.
    This is bad because from what I know this behavior is undefined from JMS specification
    (see http://docs.oracle.com/cd/E15051_01/wls/docs103/jms/design_best_practices.html#wp1061413 ) and it is a blocker issue in our case because this lead to a deadlock.
    Do someone has any idea how to enforce the fact that the same thread do create and close the connection through Weblogic and/or Mule configuration (without re-implementing the connector) ?
    Thanks in advance for your help,
    Best regards,
    Y.
    PS : I've already posted this question on Mule ESB's forum : http://forum.mulesoft.org/mulesoft/topics/mule_weblogic_and_mq_jms_deadlock_problem
    Edited by: user7428803 on May 14, 2012 2:26 PM

    I hope you found a solution by now, but as an FYI:
    * The JMS specification specifically requires that JMS providers support the ability to call connection.close() and session.close() from an arbitrary thread even when another thread is making calls on these objects. It furthermore goes into some detail about the expected behavior of these calls. The best practices link you cited alludes to this: "The JMS Specification states that multi-threading a session, producer, consumer, or message method results in undefined behavior +except when calling close().+"
    * Depending on your use case, you may not need to use Mule to integrate MQ with WebLogic. WebLogic supports a variety of options for integrating MQ directly without the use of third party tooling. See http://download.oracle.com/docs/cd/E17904_01/web.1111/e13727/interop.htm .
    Tom

  • Weblogic and eclipse help

    I want to move to weblogic 10.x from tomcat and I am using Eclipse Helios.
    is there any documentation that help me start with weblogic then use eclipse with it.
    I already downloaded weblogic and was able to run the examples that comes with it and got the latest Oracle tools for Eclipse. but I know I am missing many pieces (places where i should put a file or changing something in a file) because I could not publish from eclipse.
    I appreciate any tips to get me going forward. Also, I am usinf Spring and Hibernate.

    Hi,
    Oracle provide a set of Eclipse plugins know as Oracle Enterprise Pack Eclipse. You can find the docs at:
    http://www.oracle.com/technetwork/developer-tools/eclipse/documentation/index.html
    Otherwise this is an Eclipse question and there are a number of good Eclipse site/forums you can google.

Maybe you are looking for

  • TV@nywhere and ProLink driver/soft?

    Had anybody tried ProLink PlayTV HD driver/software with TV@nywhere card? Both cards are based on the same CX23881 chipset and ProLink card has very good marks according to this ( http://www.3dvelocity.com/reviews/playtv/playtvhd.htm ) review. The dr

  • Asking for package while saving created queries in BEx

    Hi All, While I am trying to create and save the queries in the development system,it asking for the package name.this problem is not coming before but today only. Upto my knowledge,it should ask for the package only when you change the existing quer

  • Flash Player 9 MSI install

    Does anyone know if Adobe has a MSI available for Flash Player version 9? I know that there is a MSI available for version 8.x? Thank you!

  • How do I achive 4bpp grayscale mode?

    When I save a PNG file (which I've read DOES support 4bpp grayscale) I can't figure how to save it in 4bpp grayscale mode. The modes I have achived are 32bpp (RGB + transparency) 24bpp (RGB) 8bpp (indexed color) 8bpp (grayscale as indexed color) 8bpp

  • Changing Drilldown on Stacked Coulmn Charts with auto-selected combo boxes

    Hello Experts, i have a big issue and no idea how to solve it. Hopefully you can help me. I would really appreciate that so thanks for any answer in advance. Here my problem: I have two stacked column charts and two combo boxes. Each combo box shows