Cairngorm 3 sample applications - missing libraries

I have checked out the sample applications from http://opensource.adobe.com/svn/opensource/cairngorm3/trunk/samples/insync/ repository, but these samples reference Cairngorm libraries, which are missing. What versions should I use to be able to build these samples?
best regards Zdenek

I checked only libraries which are used in the sample, but all of them are in old versions on
http://opensource.adobe.com/wiki/display/cairngorm/Cairngorm+Libraries
Current versions are validation-1.11.swc, observerParsley-1.10.swc, observer-1.10.swc, navigationParsley-1.0.swc, navigation-1.0.swc, module-0.11.swc, integrationParsley-0.13.swc, integration-0.13.swc.
Zdenek

Similar Messages

  • Oracle Spatial book sample application

    Hi all,
    On Monday I received the Oracle Spatial book and I would like to post a topic about it. First of all I would like to congratulate the authors for their huge effort doing this excellent book. I think it will be very useful to the people that works with Spatial.
    Next, my question is about the sample application showed in chapter 12 (SampleApplication.jsp). I run correctly mapviewer in my server and I can do the other examples, nevertheless when I want to start this application I recieve this error message about 'jdbc/spatial10g not found' in my web browser:
    500 Internal Server Error
    javax.naming.NameNotFoundException: jdbc/spatial10g not found
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.rmi.RMIContext.lookup(RMIContext.java:149)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.ApplicationContext.lookup(ApplicationContext.java:248)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.ApplicationContext.lookup(ApplicationContext.java:119)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at spatial2d_book._sample_2d_app._SampleApplication._jspService(_SampleApplication.java:264)
         [SRC:/spatial-book/sample-app/SampleApplication.jsp:248]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    I am using Java 2 Runtime Environment version 1.4.2_02 and I think I have correctly configured the shared libraries in the oc4j server (sdoapi.jar, sdonm.jar, ojdbc14.jar, etc.). Anyway, I think I will be missing something but I don't know what.
    I would be very grateful if somebody could help me.
    Juan M.

    Hi Juan
    Thanks for purchasing our book, and thanks also for the kind words.
    I think I know what that problem is.
    The application uses the network API. That API needs a database connection for the initial loading of the network. The connection used is provided by OC4J. This is done in the following code lines in the SampleApplication.jsp:
    // Get JDBC database connection
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup("jdbc/"+dataSource.toLowerCase());
    Connection conn = ds.getConnection();
    // Load network
    net = NetworkManager.readNetwork(conn, networkName);
    In other words, for this to work, you need a datasource defined for OC4J, called "jdbc/spatial10g" (since dataSource is defined by default to be "SPATIAL10G".
    To define the datasource, refer to chapter 11, page 499, at the bottom of the page. You need to add the following to your data-sources.xml config file ($OC4J_HOME/j2ee/home/config/data-sources.xml):
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="spatial10g"
    location="jdbc/spatial10gCore"
    xa-location="jdbc/xa/spatial10gXA"
    ejb-location="jdbc/spatial10g"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    username="spatial"
    password="spatial"
    url="jdbc:oracle:thin:@localhost:1521:orcl101"
    inactivity-timeout="30"
    />
    (Adapt the url parameter to match your database definition)
    Thanks for pointing out this problem. We will update the errata page (http://www.apress.com/book/errataDisplay.html?bID=315&sID=2374) with clearer instructions.
    Albert Godfrind

  • Error deploying sample application

    Hi experts,
    I am getting following error while deploying OAAM sample application:
    Error: Unresolved Webapp Library references for "ServletContext@285871212[app:OAAMTester module:OAAMTester.war path:/OAAMTester spec-version:2.5]", defined in weblogic.xml [Extension-Name: oracle.oaam.libs, exact-match: false]
    Even though i have deployed required libraries
    My weblogic.xml :
    <weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/90"
    xmlns:j2ee="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd
    http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <library-ref>
    <library-name>oracle.oaam.libs</library-name>
    </library-ref>
    </weblogic-web-app>
    web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>OAAMTester</display-name>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
    <description></description>
    <display-name>OAAMTestServlet</display-name>
    <servlet-name>OAAMTestServlet</servlet-name>
    <servlet-class>com.au.oaam.test.OAAMTestServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>OAAMTestServlet</servlet-name>
    <url-pattern>/OAAMTestServlet</url-pattern>
    </servlet-mapping>
    <listener>
    <listener-class>com.au.oaam.test.listener.SessionListener</listener-class>
    </listener>
    </web-app>
    ~
    ~
    Thanks
    H

    Hi!
    Seems application missing this library. You need to add this library to either application or to the Weblogic server.
    Note:
    Also don't duplicate the same library in application and the server. You can use following entry to force the app to use only web-inf/lib libraries.
    (weblogic.xml)
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    Nilum.

  • Sample application not working in iAS6.5

    I am using iAS6.5 and iWS6.0. The provided sample application HelloWorld do not work for my case.
    After deploying the application and using the URL http://myhost/NASApp/helloworld/index.html
    The Result is
    ********Browser Output*********
    GX Error (GX2GX)
    socket result code missing!!!
    *********iAS output**********************************************
    [07/Aug/2002 22:29:17:9] info: NSAPICLI-009: plugin reqexit: 0s+.132s. (-908962816)
    [07/Aug/2002 22:31:11:8] info: NSAPICLI-012: plugin reqstart, tickct: -501276465
    [07/Aug/2002 22:31:12:3] info: PROT-006: new connection established
    [07/Aug/2002 22:31:14:3] info: NSAPICLI-009: plugin reqexit: 2s+.47043s. (-492433444)
    [07/Aug/2002 22:31:33:6] info: NSAPICLI-012: plugin reqstart, tickct: -423260265
    [07/Aug/2002 22:31:33:6] warning: UTIL-013: GXGUID: NameTrans lookup failed (Applogic Servlet System_StaticServlet)
    [07/Aug/2002 22:31:33:6] warning: NSAPICLI-011: socket result code missing!!!
    [07/Aug/2002 22:31:33:6] info: NSAPICLI-009: plugin reqexit: 0s+.135s. (-423255431)
    if I move the index.html to the webserver physically and run this URL
    http://myhost/ias-samples/helloworld/docs/index.html
    The sample application works fine.
    Any explanation why the provided sample application don't work ?
    I do not have this problem when using iAS6.0 and iWS4.1.
    Thank you

    Help, anyone. I have tried deploying the application using both the command line method and the tool provided. The result are the same. I emphasis, I have used iAS6.5 and iWS6.0 to try the sample helloworld application. And I have not problem trying the application with iAS6.0 and iWS4.1.
    I am using iAS6.5 and iWS6.0. The provided sample
    application HelloWorld do not work for my case.
    After deploying the application and using the URL
    http://myhost/NASApp/helloworld/index.html
    The Result is
    ********Browser Output*********
    GX Error (GX2GX)
    socket result code missing!!!
    *********iAS
    output**********************************************
    [07/Aug/2002 22:29:17:9] info: NSAPICLI-009: plugin
    reqexit: 0s+.132s. (-908962816)
    [07/Aug/2002 22:31:11:8] info: NSAPICLI-012: plugin
    reqstart, tickct: -501276465
    [07/Aug/2002 22:31:12:3] info: PROT-006: new
    connection established
    [07/Aug/2002 22:31:14:3] info: NSAPICLI-009: plugin
    reqexit: 2s+.47043s. (-492433444)
    [07/Aug/2002 22:31:33:6] info: NSAPICLI-012: plugin
    reqstart, tickct: -423260265
    [07/Aug/2002 22:31:33:6] warning: UTIL-013: GXGUID:
    NameTrans lookup failed (Applogic Servlet
    System_StaticServlet)
    [07/Aug/2002 22:31:33:6] warning: NSAPICLI-011:
    socket result code missing!!!
    [07/Aug/2002 22:31:33:6] info: NSAPICLI-009: plugin
    reqexit: 0s+.135s. (-423255431)
    if I move the index.html to the webserver physically
    and run this URL
    http://myhost/ias-samples/helloworld/docs/index.html
    The sample application works fine.
    Any explanation why the provided sample application
    don't work ?
    I do not have this problem when using iAS6.0 and
    iWS4.1.
    Thank you

  • Sample application not working

    hi,
    i am a newbie to javawebstart.. i have 2 questions
    1) i downloaded the sample application from the net
    ( http://java.sun.com/developer/releases/javawebstart/) and was trying the "LibInstaller" sample.. i have been able to run step 1 (ant main : creates intially war file) and step 2(keystore and signing)... but step 3 seems to have some problem..i try to make the war file using command jar -cvf ../Libinstaller.war but get this error message:
    C:\javawebstart\webstart_examples\Libinstaller\war>jar -cvf C:\javawebstart\webs
    tart_examples\Libinstaller\Libinstaller.war
    'c' flag requires that input files be specified!
    Usage: jar {ctxu}[vfm0Mi] [jar-file] [manifest-file] [-C dir] files ...
    Options:
    -c create new archive
    i don't know which option i should be using because it just seems to overwrite the previous unsigned war file and is empty (1KB only) .. and by the way which of the samples given is working ok if the steps in the readme is followed accordingly??
    2) Another question is if i want to deploy an application using webstart, for e.g can i just replace the inst.jar file by my "source.jar" file and rename to inst.jar (for a start so that i don't have to change the inst.java file initially) and change the inst.jnlp (application desc main to specify the main class)???
    Thanks in advance..

    hi,
    issue 1 has been resolved. the sample program is working fine.. just missed '.' in step 3 during war file creation.
    as for issue 2, i require my swing application to be updated automatically at the client end if a new version is available at the server side. so i am thinking of using java webstart to check whether a recent source.jar file is available. so for a start, what i am trying is to replace the inst.jar file by my source.jar file in the sample application.... renaming it to inst.jar file and changing the inst.jnlp to indicate the mainclass.. any suggestions..
    thanx..

  • Problem on running sample application: Versioning

    Hi,
    I have downloaded the sample application
    (Building Versioning Applications with the Oracle Internet File System) and installed step by step as said from the installation guide.
    I use AIX 4.3.3, JDK 1.2.2, Oracle DB 8.1.7.1 and IFS 1.1.9.
    When I try to login, the following message is shown :
    The servlet named IfsDavServlet at the requested URL
    http://server1/ifs/jsp-in/versioning/login.jsp
    reported this exception: sun/tools/javac/Main. Please report this to the administrator of the web server.
    java.lang.NoClassDefFoundError: sun/tools/javac/Main at oracle.jsp.app.JspJavacCompiler.compile(Compiled Code) at oracle.jsp.app.JspAppLoader.reloadPage(Compiled Code) at oracle.jsp.app.JspAppLoader.loadPage(Compiled Code) at oracle.jsp.app.JspAppLoader.getPage(Compiled Code) at oracle.jsp.app.JspApplication.dispatchRequest(Compiled Code) at oracle.jsp.JspServlet.doDispatch(Compiled Code) at oracle.jsp.JspServlet.internalService(Compiled Code) at oracle.ifs.protocols.dav.impl.IfsDavServlet.processJsp(Compiled Code) at oracle.ifs.protocols.dav.impl.IfsDavServlet.doGet(Compiled Code) at oracle.ifs.protocols.dav.DavServlet.processRequest(Compiled Code) at oracle.ifs.protocols.dav.DavServlet.service(Compiled Code) at oracle.ifs.protocols.dav.impl.IfsDavServlet.service(Compiled Code) at javax.servlet.http.HttpServlet.service(Compiled Code) at com.sun.server.ServletState.callService(Compiled Code) at com.sun.server.ServletManager.callServletService(Compiled Code) at com.sun.server.ProcessingState.invokeTargetServlet(Compiled Code) at com.sun.server.http.HttpProcessingState.execute(Compiled Code) at com.sun.server.http.stages.Runner.process(Compiled Code) at com.sun.server.ProcessingSupport.process(Compiled Code) at com.sun.server.Service.process(Compiled Code) at com.sun.server.http.HttpServiceHandler.handleRequest(Compiled Code) at com.sun.server.http.HttpServiceHandler.handleRequest(Compiled Code) at com.sun.server.HandlerThread.run(Compiled Code)
    Which configuration steps I miss?
    How to fix it??
    Thanks a lot.
    null

    I have installed based on the instructions but it doesn't works too.
    I think there is typo error on the Oracle doc.( vborb.jar should be vbjorb.jar). Right?
    Is the settings for AIX platform different?
    From which Oracle JAR file, sun/tools/javac/Main.class cab be found?
    I find it in the /usr/java_dev2/lib/tools.jar and include it in the classpath but it still won't work.
    How come?
    null

  • Problem running Sample Application after intalling patch set 4.0.2.00.07

    We just applied the patch set 4.0.2.00.07 on our TEST environment APEX4.0.
    Now I can't run the sample application. When I run the application, login using either the admin or the demo user with the #lower_case_workspace_name#", the browser is generating below error message:
    ORA-06550: line 2, column 8: PLS-00201: identifier 'CUSTOM_AUTH' must be declared ORA-06550: line 2, column 1: PL/SQL: Statement ignored
    Error ERR-10460 Unable to run authentication credential check function.
    The sample application works fine on our DEV environment APEX 4.0.0.00.46 *without* the patch set 4.0.2.00.07.
    Does anyone have an idea how to resolve this
    Thanks

    Varad -
    I see that these functions are missing on the TEST environment parsing schema. I will have our DBA rectify the issue.
    Thanks,
    DP

  • How to activate Events Calendar Sample Application's Weekly and Daily View?

    Does anyone know how to activate the Weekly and Daily View for the sample calendar application called "Events?" I am trying to generate, or incorporate, a calendar application based upon the sample application provided by Oracle. I have installed the sample application but I am unable to view the calendar in daily or weekly formats. Any assistance would be appreciated. Thanks in-advance.

    Hi,
    If the calendar was set up to only use the Monthly view, then you will be missing a number of items on your page.
    The simplest thing to do would be to create a new calendar page in your copy of your sample app and then identify those items that are missing from your original page. These should be Monthly/Weekly/Daily buttons, Adjust Calendar Date - Monthly/Weekly/Daily processes and a hidden Pnn_CALENDAR_TYPE page item that holds the currently displayed type.
    Andy

  • Packaging ADF application with Libraries

    Hi Experts,
    I was exploring on packaging/ bundling an ADF application with all required libraries, so that this application can be deployed on any J2EE server.
    I have gone through another thread on similar topic - Error while deploying ADF application to a standalone weblogic server
    Above thread says that installation of run-time libraries are must. But I want to dig little deeper into the reasoning.
    What are libraries that can't be added into Application WAR file? (Normally J2EE developed application can be bundled and deployed on any of these servers (Weblogic/ tomcat/websphere)).
    Is it possible to bundle ADF application with all libraries and then deploy it to Websphere server directly (without installing 3rd party libraries)?
    Any help on this is appreciated.
    Thanks,
    Randhir

    Timo / Frank / Shay,
    Thanks for your help.
    Websphere server is being used by other applications. So the intention of bundling libs was to check ADF application funcationality on Websphere server without installing 3rd party ADF libraries (installation may conflict other libraries and some application can stop working).
    I gave a try on bundling all libraries with ADF application, but still I can see some error messages about missing libraries.
    What is your suggestion on installing 3rd party libs on Websphere server? Will this impact any deployed application?
    Thanks,
    Randhir

  • Java WebDynpro Sample Applications to learn.

    Hi There,
    I am new to Java WebDynpro ,I am looking for sample applications so that i can practice how to develope the webdynpro components and actually i want to learn how to do the external context mapping.
    Thanks,
    Rashmi.

    Hi,
    You can find lots of help in SDN like, where you can find may documents related to many topics just go through the following links and browse as per your requirement.
    Blogs
    [https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_weblog&query=webdynproJavatutorials&adv=false&sortby=cm_rnd_rankvalue]
    Libraries
    [https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_library&query=webdynproJavatutorials&adv=false&sortby=cm_rnd_rankvalue]
    e-Learning
    [https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_media&query=webdynproJavatutorials&adv=false&sortby=cm_rnd_rankvalue]
    wiki's
    [https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_wiki&query=webdynproJavatutorials&adv=false&sortby=cm_rnd_rankvalue]
    and also you can search in forums.
    Regards
    Raghu

  • Unable to see flash chart in sample application.

    Hi all,
    I installed ApEx 3.0.1 on PC A last year which I can see the flash charts in the sample application; however the flash charts are blank on the newly installed PC B. What did I do wrong or miss possiblly? both have HTTP server, database, Apex all on the PC.
    can anybody help me with this?
    Thanks,
    Sherry

    solved by installing Adobe Shockwave player.

  • GX Error (GX2GX) for bank or hello world sample applications

    Hi,
    I installed IAS 6.5 on Win 2000 professional. I tested my installation by accessing the fortune sample application. Yes, it works fine. However, when I deployed the Hello World or Bank sample application, I keep seeing this error:
    "GX Error (GX2GX)
    socket result code missing!!!".
    I have ensure that both the applications were deployed correctly. The deployment tool did not report any error. I am also able to see the 2 applications from the IAS administration tool. I then went to the HTTPAPI subkey in the IAS registry and set the DebugMode to 5. I saw the following message
    [16/May/2003 18:42:01:3] info: NSAPICLI-009: plugin reqexit: 0s+.97s. (1421580416)
    [16/May/2003 18:42:38:0] info: NSAPICLI-012: plugin reqstart, tickct: 1553096666
    [16/May/2003 18:42:38:0] info: NSAPICLI-009: plugin reqexit: 0s+.464s. (1553113298)
    [16/May/2003 18:42:38:6] info: NSAPICLI-012: plugin reqstart, tickct: 1555213509
    [16/May/2003 18:42:38:6] info: NSAPICLI-009: plugin reqexit: 0s+.421s. (1555228604)
    [16/May/2003 18:43:18:6] info: NSAPICLI-012: plugin reqstart, tickct: 1698313776
    [16/May/2003 18:43:18:6] warning: UTIL-013: GXGUID: NameTrans lookup failed (ApplogicServlet System_StaticServlet)
    [16/May/2003 18:43:18:6] warning: NSAPICLI-011: socket result code missing!!!
    Any idea what is wrong??? Please help... Thank you in advance for your help.

    If you're trying to run the Ant scripts, I think I know how you feel.  Here's what I do to seed new test users into a new installation:
    1. Download the workflow-001-DemoCommunitySeedApp.zip File  -> Go to http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/obpm/11g/r1/install/installing_obpm11g.htm#s6. ->  Click Demo Community Seed Application.
    2. Unzip the zip file
    Unzip the contents of the workflow-001-DemoCommunitySeedApp.zip file into a directory. (For these instructions, I will assume you unzipped it into a C:\stageFMW\democommunity directory.)
    3. Deploy the Associated EAR File Deploy
    Deploy the SOATestDemoApp.ear EAR file located in your C:\stageFMW\democommunity\DemoCommunitySeedApp directory to your Managed Server. This is done by:
    Loggin into the WebLogic Administration Console (e.g., http://<your machine>:<your port number>/console)
    In the upper left corner under Domain Structure click Deployments
    Click the "Install" button
    Upload the EAR file by clicking the upload your file link.
    Select the SOATestDemoApp.ear file and click Next -> Next
    Select Install this deployment as an application and click Next
    Check the correct checkbox to deploy the application to the Admin (if there is no SOA Managed Server) or the SOA Managed Server (if it exists)  - typically this is just "soa_server1"
    Once deployed, stop and restart the Admin and Managed Servers
    4. Run the Servlet to Seed the Users
    Run the servlet by opening your browser to: (if you have a managed server) http://<yourmachinename>:8001/integration/SOADemoCommunity/DemoCommunitySeedServlet or (if you deployed it to the admin server) http://<yourmachinename>:7001/integration/SOADemoCommunity/DemoCommunitySeedServlet
    Select Seed Community and then click the Submit button.

  • OAAM Sample Application deployment

    I am getting following error while deploying OAAM sample application:
    Error: Unresolved Webapp Library references for "ServletContext@285871212[app:OAAMTester module:OAAMTester.war path:/OAAMTester spec-version:2.5]", defined in weblogic.xml [Extension-Name: oracle.oaam.libs, exact-match: false]
    Even though i have deployed required libraries
    My weblogic.xml :
    <weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/90"
    xmlns:j2ee="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd
    http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <library-ref>
    <library-name>oracle.oaam.libs</library-name>
    </library-ref>
    </weblogic-web-app>
    web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>OAAMTester</display-name>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
    <description></description>
    <display-name>OAAMTestServlet</display-name>
    <servlet-name>OAAMTestServlet</servlet-name>
    <servlet-class>com.au.oaam.test.OAAMTestServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>OAAMTestServlet</servlet-name>
    <url-pattern>/OAAMTestServlet</url-pattern>
    </servlet-mapping>
    <listener>
    <listener-class>com.au.oaam.test.listener.SessionListener</listener-class>
    </listener>
    </web-app>
    ~
    ~
    Thanks
    Edited by: user13114668 on Mar 6, 2013 4:26 PM

    Even though i have deployed all required libraries

  • BlazeDS binary: samples.war missing

    Hi All,
    I have just downloaded the BlazeDS binary blazeds-bin-4.0.0.14931.zip. When I extracted it I found that it just contains 2 files, BlazeDS.war and blazeds-bin-readme.htm files.
    The installation page on Adobe says following
    The BlazeDS J2EE web application option installs the following files and directories under the installation root:
    readme.htm - Contains an overview of important information.
    blazeds.war - BlazeDS web application, used as a starting point for new applications.
    samples.war - BlazeDS sample applications.
    ds-console.war - Simple monitoring application for BlazeDS deployments.
    license.txt - Contains license information.
    /resources - Contains Flex SDK source code, fully commented configuration files, as well as directories and files used for security, clustering, Flex-Ajax Bridge and manually creating HTML wrappers. Flash Player installers are in the Flex SDK ZIP file.
    So where are the other files like samples.war?Am I missing something? Where can I get the samples.war file?
    TIA
    MK

    You should download the Turnkey zip to get all the other wars.
    -kumaran

  • Multi-screen Sample Application

    Please provide a working multiscreen application with Cairngorm 3.
    I struggle to work on the sample application projects in trunk with SVN (written by F. Le Droff) but it would be more productive if we can have a full up to date working projects. Thanks.

    This forum looks dead !

Maybe you are looking for