Project HTML Root

Hi!
i'm deploying a JSP portlet for portal in JDeveloper.
How do i change the Project HTML Root for an application in Jdeveloper??
i'll apriceate your help
thanks

Hi,
You can do this by choosing Project|Project Properties... from the main menu bar. In the project properties dialog, navigate to the paths tab and you will find where you can specify the HTML root.
Thanks,
-Kishore

Similar Messages

  • Flex mobile project: web root and root path for a remote web service?

    Hi all,
    i'm trying to set up the testdrive tutorial for flex mobile project, with flash builder 4.5
    and php data.
    I've uploaded the files on my remote web space (e.g. http://mywebsite.org, and the
    test file is http://mywebsite.org/TestDrive/test/test.php... and it works
    correctly)... But when i'm setting properties of the project, i don't know what
    to write into the web root and root path fields... I thing root path is simply
    http://mywebsite.org... and whatever i write in the other fields (output folder
    too) i have errors when i click on "validate configuration"...
    What should i put into those fields? is zend framework (and gateway.php)
    strictly necessary?
    As you can see... i'm a bit confused....
    Many thanks for any help
    Bye
    Alex

    I thought it was a simple question...
    No advice?

  • Using image resources in a folder or another project's root

    Hello,
    I must confess that I find it annoying to place my pictures and icon resources in the same package to access them in the JavaFX application. I think this enforcement by JavaFX is an unreasonable one.
    Consider that I use the same icon in several places in my application. It is the same resource that I have to put in several different places. Imaging the problems when trying to refactor or upgrading the application.
    Is there a mechanism to access icons/picture resources in a folder at the root of the project or access these resources in a separate project. I would prefer the latter because in this way, I create a single project with all these resources and all other projects would access them from this project. I think this would allow updates, refactoring to be done much more easily.
    If such a mechanism exists, please point me to it.
    Than ks

    Thanks for the correction.
    Those last 3 examples donot use the classpath at all (although perhaps it does look in there).And so it is not; i.e. the last 3 examples did not use the classpath at all - and it did not look there either.
    They will also load those resources from the current directory (or subfolders thereof).And so it is; i.e. when you don't specify a protocol, in the case of a stand alone app it looks up the resources relative to the current working directory. For webstart or applet it may use a codebase and grab the data from an originating server or something like that, but I didn't test that.
    My mistake was thinking that if you didn't place the protocol in the image constructor it would default to looking stuff up relative to classpath of the calling class - which it does not do. If you did want to do such a lookup then the examples could instead be written as =>
    new Image(getClass().getResourceAsStream("icons-390.jpg"));
    new Image(getClass().getResourceAsStream("/icons-390.jpg"));
    new Image(getClass().getResourceAsStream("../icons-390.jpg"));What I usually do is create a static getResource method on my application which returns a url to the resource, that way all of the resource lookup logic is localized in case I ever want to change how I find resources and where I place them.
    static String getResource(String path) {
      return MyApplication.class.getResource(path).toExternalForm();
    }

  • SCITE: adding projects - html tags (like jedit's clipper) snippets?

    Hi everyone!
    I really do like SciTe ... I really like JEdit though in all the tiling DMs jedit does only a small window regardless of how big the tile is... as you may know. There's some hack that might work so if anyone knows how to do the:
    [you can set the following environment variable (to use the older Motif backend instead): AWT_TOOLKIT=MToolkit.]
    that would be solution...
    Though really, I'd love to get scite doing projects... ie. simply open up a bunch of files at once etc.
    Also, in jedit there is an addon that is called: clipper... it's great as I can add html tags with a click... they're all there.
    Then my third wish for scite is to be able to have snippets available...  no a big one that as really, I'm useing scite to manage projects that are just text mostly. And, groups of css and html.
    ANY thought on jedit fix and how to do it... OR, potentially WAY better for me  >>> tricking out SciTe...???
    There's one extension for scite that needs ruby... may as well use jedit is I have to use ruby for a scite feature I think.
    thanks!
    Last edited by yvonney (2009-02-06 00:53:22)

    Hi skottish !!
    whew, thought about writing and have now found the info and the time....
    The info being where I actually put:
    export AWT_TOOLKIT=MToolkit
    FOR JEDIT: (using the latest 4.3r16 beta) Which is my option to SciTe as it has some amazing plugins, with projects and html tags in the 'clipper' plugin .... and ...the problem is with dwm my tiling wm is oes the..'weird sized windows' thing... seems to do this with many WMs and also with all java apps.... um, generally that is.... who knows quite the extent...
    long one short:
    I put:
    export AWT_TOOLKIT=MToolkit
    in both my ~/.bashrc        and also in  the file: /etc/environment
    and voila....very nice jedit!
    I've read that putting the same line in   /etc/profiles might be needed or useful for some things...
    Anyways.... riushing here...
    I love scite, have discovered anew Geany... and will be using jedit for my ridiculously simply collections of text files until something simple that covers the  projects grouping and the html tags thing i'd like to have.
    so!!!!!!
    best wishes....
    and now back to much crazy business again.... thanks for the fun break from it all!

  • Air Kiosk Project - HTML Viewer

    I am looking to build a kiosk for display, no controls, no touch - basically a slideshow of html pages. I would like the AIR app to look in a folder with multiple html pages, take each html and display in a container, which would rotate through each page like a slideshow.
    I am new to AIR, so looking for any direction. I have Flash Builder and Catalyst. I have found some pieces online using viewStack and html container. I am looking for best method to load html pages into containers and method of rotating through them.
    Dave

    Hi Dave,
    Here's a simple example that I wrote in Flash Builder 4.  It's very rudimentary but might help you get a start.  It will search a directory named "html" located in the application directory for .htm and .html files.  It then loads them into an HTML control, cycling through each every 5 seconds.  The application runs in full screen (hit esc to exit).
    Hope this helps,
    Chris
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                  xmlns:mx="library://ns.adobe.com/flex/mx" layout="absolute"
                                  applicationComplete="init()">
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <fx:Script>
              <![CDATA[
                   import mx.controls.Alert;
                   private var timer:Timer = null;
                   private var htmlFiles:Array = null;
                   private var currentFileIndex:Number = 0;
                   private function init():void
                        htmlFiles = new Array();
                        var htmlFolder:File = new File(File.applicationDirectory.nativePath + "/html/");
                        if (!htmlFolder.exists && !htmlFolder.isDirectory)
                             Alert.show("Please create a folder named 'html' in your application directory", "Error", 4, this, exitApp);
                             return;
                        htmlFolder.addEventListener(FileListEvent.DIRECTORY_LISTING, onDirectoryListing);
                        htmlFolder.getDirectoryListingAsync()
                   private function onDirectoryListing(event:FileListEvent):void
                        for each (var file:File in event.files)
                             file.canonicalize();
                             if (!file.isDirectory)
                                  if (file.extension!= null &&
                                       (file.extension.toLowerCase() == "htm" ||
                                        file.extension.toLowerCase() == "html"))
                                       htmlFiles.push(file);
                        if(htmlFiles.length == 0)
                             Alert.show("No HTML files found", "Error", 4, this, exitApp);
                        else
                             loadPages();
                   private function loadPages():void
                        // 5 second timer
                        timer = new Timer(5000);
                        timer.addEventListener(TimerEvent.TIMER, displayNewPage);
                        timer.start();
                        // Go full screen
                        systemManager.stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
                        // display first page
                        displayNewPage();                    
                   private function displayNewPage(event:TimerEvent = null):void
                        // Loop through the url array
                        if (currentFileIndex > htmlFiles.length - 1)
                             currentFileIndex = 0;
                        // Load the file into the HTML control
                        var file:File = htmlFiles[currentFileIndex];
                        html.location = file.nativePath;
                        currentFileIndex++;
                   private function exitApp(event:Event):void
                        nativeApplication.exit();     
              ]]>
         </fx:Script>
         <mx:HTML id="html" width="100%" height="100%"/>
    </mx:WindowedApplication>

  • War generation Jdev 10

    Hi everybody,
    I'm trying to deploy a web application with Jdev 10.1.3.3 (target webserver will be OC4J 10.1.3.5).
    My project has the classical structure, with a "Model" project for ADF-BC and a "ViewController" project for the view layer.
    To create a web archive, I use "new->development profile"->WAR archive" and double clicking on it I have the following
    file groups:
    web files __ project html root directory
    |_ project dependencies
    web-inf/classes _ project output directory
    |_project dependencies
    web-inf/lib
    The archive is generated without errors; I igot an .ear and .war files and I'm able to deploy it.
    The problem is that the archive file seemed too big, so I opened it and I discovered that under web-inf/lib there are
    directories that shouldn't be there:
    WEB_INF/lib _____ public-html ______ .......
    |____ classes |____ WEB_INF
    |____ src
    The 3 directories public-html. classes and src shouldn't be there!!!
    I tried a lot of different deployment descriptors, adding and removing file groups and contributors but this problem
    persist, unless I don't put the libraries section: At the moment I'm editing manually the war with winrar to remove
    the unecessary files.
    Has anyboby coped with this kind of problems and found a work-around?
    Greetings.
    Antonio.

    Hi Onur, thanks for your reply.
    Actually, when I create a War in my view project also A Ear is automatically generated by JDev and the classes
    from the Model project are added automatically, since the View project is dependent from the model project
    (this is done dy selecting "project dependencies" in the "web-inf/classes" file group of the deplyment profile.
    If I have to generate a Jar for the Model, a War for the view and then build an Ear every time I deploy, it takes
    more effort that deleting the extra files from the final archive that I got automatically from JDev.
    I think that there is some configuration im my projects that "confuses" Jdev or maybe this is just a bug in Jdev.
    Greetings.
    Antonio

  • Absolute paths to eclipse project root? Why?

    I am a dedicated follower of the Flex and related technologies since its first appearance (some years back, Flex 1.5)
    Flash Builder (formerly Flex Builder) back then (version 2) seemed to have a problem with paths relative to project location.
    More precisely, parts of generated projects always point to absolute locations either inside or outside the eclipse project workspace.
    Unfortunately, the problem still persists. In the past I had reported this issue (long time to remember/extract details now) but without success as it seems.
    This is very important for projects intended to be developed by more than one persons (different development machines, different paths etc.)
    for an example, with Flash Builder 4, create a new Flex project (Web), activate WTP integration, complete project generation and then check files
    .actionScriptProperties and .flexProperties
    you will observe absolute path references to essential files
    here is an example of my .actionScriptProperties
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <actionScriptProperties mainApplicationPath="Main.mxml" projectUUID="43b42874-f3f0-4b6b-932c-6a1d4e492b56" version="6">
    <compiler additionalCompilerArguments="-services &quot;D:/eclipse-win32/workspace/net.eliasbalasis.flex.web.sample/WebContent/WEB-INF/flex/services-config.xml&quot; -locale en_US" autoRSLOrdering="true" copyDependentFiles="true" fteInMXComponents="false" generateAccessible="true" htmlExpressInstall="true" htmlGenerate="true" htmlHistoryManagement="true" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin-debug" sourceFolderPath="flex_src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
    <compilerSourcePath/>
    <libraryPath defaultLinkType="0">
    <libraryPathEntry kind="4" path="">
    <excludedEntries>
    <libraryPathEntry kind="3" linkType="1" path="${PROJECT_FRAMEWORKS}/libs/flex.swc" useDefaultLinkType="false"/>
    </excludedEntries>
    </libraryPathEntry>
    <libraryPathEntry kind="1" linkType="1" path="flex_libs"/>
    <libraryPathEntry kind="3" linkType="1" path="D:/eclipse-win32/workspace/net.eliasbalasis.flex.web.sample/WebContent/WEB-INF/flex/libs/fds.swc" useDefaultLinkType="false"/>
    <libraryPathEntry kind="3" linkType="1" path="D:/eclipse-win32/workspace/net.eliasbalasis.flex.web.sample/WebContent/WEB-INF/flex/libs/player/playerfds.swc" useDefaultLinkType="false"/>
    <libraryPathEntry kind="1" linkType="1" path="D:/eclipse-win32/workspace/net.eliasbalasis.flex.web.sample/WebContent/WEB-INF/flex/locale/{locale}"/>
    </libraryPath>
    <sourceAttachmentPath/>
    </compiler>
    <applications>
    <application path="Main.mxml"/>
    </applications>
    <modules/>
    <buildCSSFiles/>
    </actionScriptProperties>
    here is a copy of my .flexProperties
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <flexProperties enableServiceManager="false" flexServerFeatures="6" flexServerType="8" flexWarLocation="D:/lcds/lcds.war" serverContextRoot="/WebContent" serverRoot="D:/eclipse-win32/workspace/net.eliasbalasis.flex.web.sample/WebContent" serverRootURL="http://localhost:8400/net.eliasbalasis.flex.web.sample" toolCompile="true" useServerFlexSDK="false" version="2"/>
    D:/lcds/lcds.war i suspect is fine because it is the location of the LiveCycle Data Services WAR used to create the project (it is external anyway)
    However, D:/eclipse-win32/workspace/net.eliasbalasis.flex.web.sample/WebContent is not fine at all. It is a location inside the project workspace. It should be referenced using some kind of variable, similarly to ${PROJECT_FRAMEWORKS} above.
    I observed that there is a variable ${DOCUMENTS} under Eclipse-->Preferences-->Workspace-->Linked Resources which references the Eclipse project workspace root (extremely convenient).
    Unfortunately, it seems that this variable can only be used within the context of other eclipse configuration files like .project and .classpath but not within the context of .actionScriptProperties and .flexProperties
    This is the same exact issue I reported in the past (see above)
    Flex Builder/Flash Builder family of products are the only Eclipse Based tools I have so far worked with that have such a big trouble handling file path locations relative to eclipse workspace root
    OOPS. CORRECT ME IF I AM WRONG PLEASE.
    I just replaced the eclipse workspace root with ${DOCUMENTS} and the project still compiles and generates deployment packages successfully.
    Perhaps the "Linked Resources" variables work in the context of flex configuration files.
    However I am not 100% sure.
    Please verify or otherwise provide a solution, as I am ready to select Flex technology products for the development of a new quite complex, multi developer, large scale system and this will be the only reason making me consider abandoning Flex and use other technology products

    I loooove Eclipse for reason.
    Yes, you are right, use of variables is great thing.
    However, there are 2 ways
    1.
    Use all paths relative to Eclipse workspace root. No absolute paths anywhere and No variables.
    2.
    Use tool-supplied variables (like ${DOCUMENTS} supplied by FB4 plugin pointing to Eclipse document root)
    However, although the variable is supplied by FB4 plugin, when a project is generated its files still contain absolute path references
    I had to manually introduce the ${DOCUMENTS} variable in project files discovering that variables work in the context of FB4 plugin project files.
    In earlier versions of FB plugin variables where not processed.
    Congratulations FB4 team, you saved the day.
    All I am saying is that there shouldn't be absolute paths in generated FB project files. Replacing manually currently works but it is not the easiest thing for all users. I happened to know where to look. Others may not.
    I believe FB team has to consider making actual use of the supplied variables in next version of FB (or alternatively, not use variables at all)
    p.s.
    You will love Eclipse, trust me :-)

  • How do I link a google drive edge animate project to an iframe?

    I have a simple edge animate project as a test. It has the following files in the root:
    edge_includes folder containing 3 images and edge.5.0.1.min.js
    project.html
    project_edge.js
    I want to be able to have these files stored on google drive (or dropbox or alternative) and link to them through an iframe on my website. I've tried doing this by keeping the file structure the same on google drive and just referencing the shared link of the html file, but the project will not work.
    I've also tried replacing the src links of the edge.5.0.1.min.js file and the image files to their shared links on the google drive. This didn't work either.
    Is there any way to host the files externally and have them still reference each other properly so the html file can be linked into an iframe on a different site?
    Many thanks in advance
    Barry

    Just to add the relevant requested information:
    I am using the latest version of Edge animate (2014.1)
    Google chrome (and IE desktop not metro as backup)
    If anyone wants to see the file then I'm happy to link to it, but I don't think the question really warrants it.
    Thanks again.

  • Import JSPs from one project to another (depends on or ??)

    I'd like to solve the large product problem: Broke up into several projects.
    The problem is most evident in unit testing with the internal container. Any jsp includes
    or forwards to JSP's in other projects just is not supported with local testing.
    I'd be very happy to live with the same solution I'm using for classes from other projects.
    I.E. a Project library that points to the output path of another project.
    The deployment config for project B who depends on project A's classes, includes the classes
    from A into the projB.ear.
    I can live with this. It supports use of Tester and Local running of JSPs.
    I'd like the same solution for JSPs too.
    I'm happy to forgo the URL distinction that's possible by deploying all modules to an
    external container. I'd be willing to live with all JSP's in proj A accessed as if they
    where local to proj B.
    Anybody have a solution?
    At present I'm living in HELL, with JSP src in both places. As the project grows into
    more modules, replication from A to B-->E just won't work. Plus, as JDev and SCM go,
    someone always screws up and adds these copied files to SCM and the project.
    It's currently a mess!
    Thanks, curt

    Although classes have the notion of a classpath, the HTML Root directories from several projects cannot be strung together like that. The OC4J server does not support multiple document roots for a single web module.
    There are a few possibilities for you though:
    1) Change the settings of each project so that they all point to the same HTML Root directory. In this configuration, a WAR profile in any one of the projects will deploy the entire contents of the HTML Root directory.
    2) If you can't put all the JSPs in the same HTML Root directory, formalize the boundaries between the web modules by defining a "J2EE Web Context Root" for each project according to your exact need. Then when JSPs include or forward to each other, use URIs that contain the context root as part of the URI.
    3) Keep everything in one project, but separate the JSPs into different directories. Then to get a filtered view of your JSPs in the JDev navigator. switch the navigator into "Category view" (Project | Show Categories). You can then selectively drill into a specific directory. If you select the project and then choose View | Display in New Navigator, you can get a separate navigator whose scope is narrowed onto your specific project.
    Hope that helps. If you have any specific suggestions on enhancements that would improve your productivity in this area, please let us know.

  • Opening Project First Time from Version Control.  RoboSource Node

    Four writers have upgraded successfully.  My fifth is having issues...
    She has Serena Dimensions SCC installed as well (another source control product - used by Applications, not the authors or Infra.
    Problem: When she is establishing the root path (and the Browse RoboSource Node window opens, but it does not populate, even after 20 minutes.  Reboot did not work, neither did manually removing Serena Dimensions SCC.  I have verified that she has a connection to the database (via RSC Explorer) and can see the project (as well as the RH7 version of the project).  We have
    These are the instructions... (screenshots not included).  She's hanging up on
    1.1    Using a New Project for the First Time
    IMPORTANT NOTE:
    The author must have local administrator rights on the machine.  If the user has a privileged account, they must set up full local control of their work folder (specified in 1.1.2.8).
    1.1.1    Install RoboHelp and RoboSource Control
    1.    Download appropriate software packages, including all patches, from Adobe.
    2.    Launch RoboHelp Installer.  Select the following options for installation:
    o   RoboHelp for HTML
    o   RoboSource Control (Client)
    o   CS4 Script Extender
    INSTALLATION NOTES
    Installation of each component is separate and may take up to 30 minutes.  You do not have to install RoboHelp for Word.
    Only select the Client Install for RoboSource Control.
    3.    Install all patches in the order specified by the vendor.  Check with the technical communicator on which version is currently in use for patching.
    1.1.2    Open the Project
    1.    Launch RoboSource Control.
    2.    Establish a database connection per section 3.3.1.
    3.    Close RoboSource Control.
    4.    Launch RoboHelp 8 for HTML.
    5.    Click Open under Recent Projects under the main frame (do not use title bars).
    6.    Click the Open Project from version control button (shown below).
    7.    Make sure that RoboSource Control 3.1 is highlighted as the Version Control Provider and the checkbox for “Make this my default selection” is checked.  Click OK.
    8.    Configure the Source Control system as follows:
    Connection:  PROD
    Root Path: Click the … button and navigate to the (project name) root in the database and click OK.  This may take several minutes.
    Connection Mode:  Online
    Get to Local Path:  Click the … button and navigate to your Data folder.  Select Make New Folder under Data and give the folder a unique name to help you identify the files as for the Support KB in RoboHelp. 
    9.    Click OK when you have configured source control.  A copy of the database is now being downloaded to the path you specified.  This may take up to 20 minutes. 
    You can verify that installation is proceeding either by watching your local path fill with files or keeping an eye on the CPU usage of the RSO3MiddleTierService and RoboHelpHTML files under Task Manager.
    10.  Once transfer is complete, highlight Tier1KB.xpj and click Open.  It may take several minutes to open the project the first time.  It is typical for the snippet file to check out the first time you open the project and the first time each day that you save all project files.
    11.  Once the project is open, set Version Control properties:
    a.         Select Tools > Options.
    b.         On the Version Control tab, select all options.  This will prompt the user on each version control action they take.
    12.  Test a check out/check in to validate correct installation and source control operation.

    It's the settings in miscproperties in the XPJ and it works in TFS just fine. I'ts as follows:
    <miscproperties>
      <matchedpair>
      <name>vc::provider</name>
      <value>Team Foundation Server MSSCCI Provider</value>
      </matchedpair>
      <matchedpair>
      <name>vc::agent</name>
      <value>MSSCC</value>
      </matchedpair>
      <matchedpair>
      <name>vc::database</name>
      <value>http://ap-gda113-tfs-a:8080/tfs/centric|NB-WWEELDEN|ITS\Wweelden</value> <- Add the TFS URL, your workspace name and your domain name.
      </matchedpair>
      <matchedpair>
      <name>vc::cookie</name>
      <value>$/BV - MVV/Main/Tools/Documentatie/mvv-beheerders</value> <- The location of the project in TFS.
      </matchedpair>
      </miscproperties>

  • Problem with many project in workspace

    I can't solove this situation.
    I made struts based application with BC4J.
    I want to separate project like steve done in BC4JToyStore.
    I'v made controler project in which I have Struts controler.I set "HTML root directory" to webdir for controler but when I do that for second I can't access my
    struts controler.When I remove "HTML root directory"
    to another value for second project everething works ok.
    I folow Toy Store demo organization of project.I do all
    settings like in the ToyStore
    This is error:
    2003.08.14 22:24:48 org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    2003.08.14 22:24:48 org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    2003.08.14 22:24:49 org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='vesita.controler.ApplicationResources', returnNull=true
    2003.08.14 22:24:49 org.apache.struts.action.RequestProcessor process
    INFO: Processing a 'GET' for path '/signin'
    2003.08.14 22:24:50 org.apache.struts.action.RequestProcessor processActionCreate
    SEVERE: No action instance for path /signin could be created
    java.lang.ClassNotFoundException: vesita.controler.strutsactions.signin
         at com.evermind.naming.ContextClassLoader.findClass(ContextClassLoader.java:456)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at com.evermind.naming.ContextClassLoader.loadClass(ContextClassLoader.java:135)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at org.apache.struts.util.RequestUtils.applicationClass(RequestUtils.java:193)
         at org.apache.struts.util.RequestUtils.applicationInstance(RequestUtils.java:219)
         at org.apache.struts.action.RequestProcessor.processActionCreate(RequestProcessor.java:316)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:260)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1292)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:721)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)

    I find a solution.
    My mistake..

  • How to setup project property in 9iJdeveloper?

    i don't know how to setup the project property, although i have experience with jdev3.1.
    i want to run a helloworld.jsp.
    the project name is myProject.
    the files i have
    helloworld.jsp
    helloworldBean.java
    helloworldProvider.java
    the data "hello world" is retrived from a database table.
    i use NT to build and test these files, and put them on Linux environment later.
    the Linux server runs 9iAS, i will put the jsp file in $j2ee_home/default-web-app/myTest, and put the servlet classes in $j2ee_home/default-web-app/WEB-INF/classes/myTest.
    could any one give me detail explaination on
    1.where to put the three files(same directory or not)?
    2.how to setup the project property on my NT machine? (such as Defaul Package, javaSourcePath, HTML root Diretory, output directory,Libraries, J2ee properties, modelers properties, and other properties necessary to be modified. )

    Mazel tov !!!
    Finally found it!
    So simple.
    nothing to do with rendering.
    Steve you deserve a big hug for all your hard work in trying to help me, and I feel like I owe you big time, however the solution was so simple and provided by ted smith, on the playback screen one right clicks and changes the playback quality to highest, and the quality is 100% crystal clear.
    Thank you all for your help.
    btw who knows how to export an mp3 from a video?
    Thanks
    simon

  • Include files from a different project ...

    Hi,
    I have projects A and B.
    Project A contains "includes": a directory with several include files.
    Project A gets deployed as a JAR file (ProjectA.jar). Example content:
      /includes/menu.jspfThe target directory for Project A's deployment JAR file is set to: /
    Project A has the following HTML Root Directory: ...AppA\ProjectA\public_html
    Project B has the following HTML Root Directory: ...AppB\ProjectB\public_html
    Project B needs the include files from Project A.
    Project B has Project A as a dependency.
    Project B has ProjectA.jar within its WEB-INF\lib directory.
    The problems are:
    1. Project B does not see the "includes" directory within its "Web Content" folder from Project A. How do you make Project B see Project A's includes directory?
    2. Project B cannot compile the following code:
    <jsp:directive.include file="/includes/menu.jspf" />
      ...The error message: Include file not found: /includes/menu.jspf
    The error message is to be expected as Project B cannot currently see the files located within WEB-INF\lib\ProjectA.jar. How can this be fixed?
    3. I have tried changing the HTML Root Directory to the "public_html" directories from both Project A and Project B. JDeveloper then displays an error indicating that it cannot find <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>.
    There should be a way to do this, as the images and styles for ADF are successfully deployed and used within WEB-INF\temp\adf.
    Any ideas are greatly appreciated.
    Thanks!

    Hi,
    I used a program called "Junction" to resolve this issue. It is a temporary solution.
    http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx
    The program makes a true symbolic link. This allowed me to link the includes directory from ProjectA into ProjectB. Linking this way will not work when we go to deploy a suite of applications. We would prefer to package the includes in a single JAR file, then redeploy the JAR file everywhere.
    Any other ideas?

  • JSP Error: start of root element expected

    Hello folks,
    I have an error when I run the the JSP
    application in my JDeveloper 3.2.2.
    It gives an error
    << [error 4]start of root element expected>>
    The error 4 is the line no i.e
    <%@ taglib uri ="webapp/DataTags.tld" prefix = "jbo" %>
    But when I deploy the jsp on my application server and access, it does not give any error.
    Would appreciate the help asap.
    regards,
    David
    null

    David,
    go to your project properties, Paths tab, HTML Paths section. If you have changed the "HTML root directory" folder, ensure that you have created the webapp folder underneath it. You can copy the webapp folder from:
    C:\Program Files\Oracle\JDeveloper 3.2\myhtml\webapp
    HTH,
    Simon

  • Suggestion on source safe directories structures for JDeveloper project

    Hello,
    We created our VSS directories by mapping JDeveloper's structure, eg.
    +Workspace
    +Project
    +Sources
    +HTML Sources
    +Deployment
    By this way, people can get the latest - the whole workspace easily. But one thing seems problematic with the multi-user development environment is the .jpr file.
    The .jpr file stores the references to all of the items in the project. Pretty much very changes made to the project will change the .jpr. Developers need to working on the project simultaneously. That means the .jpr will be changed all the time. It's not possible for people keep checking out and in, and others waiting for them. Is there a smart way to control the .jpr in a team environment so that the .jpr will always be up to date?
    Thanks,
    kz

    Hi,
    One option that might make it easier to version control .jpr files is the "Scan Source Paths to Determine Project Contents". This makes your project "dynamic", i.e. it no longer needs to contain a list of all the files in the project - instead it just shows you all files under your Sourcepath / HTML root.
    There are some caveats with this option:
    1) It works best on a new project. If you want to use it on an existing project, it's best to remove all the files from the project first (otherwise, the list of files continues to be stored in the project file).
    2) It may not help you if you have certain types of object in your project (e.g. BC4J / EJB files), because these objects store a lot of file specific data in the .jpr file itself.
    3) It doesn't help at all when two developers concurrently change settings in the .jpr file, e.g. two developers use a different remote debug host / port etc.
    We're aware that there are a number of team development issues with project files, and are actively working to improve the situation in future releases.
    Thanks,
    Brian
    JDev Team

Maybe you are looking for

  • Looking for help to increase performance on a DB XML database.

    I'll try to answer all the questions in the Performance Questionnaire from here. 1) I'm primarily concerned with insertion performance. The best I've seen so far is about 6000 inserts/per second. This is running inside a VMWare VM with 3 GB of RAM. T

  • How is it possible to use Index Seek for LIKE %search-string% case?

    Hello, I have the following SP: CREATE PROCEDURE dbo.USP_SAMPLE_PROCEDURE(@Beginning nvarchar(15)) AS SELECT * FROM HumanResources.Employee WHERE NationalIDNumber LIKE @Beginning + N'%'; GO If I run the sp first time with param: N'94', then the follo

  • After analyze report run slowly!!

    Dear all, please help me how is it happen I run this in sql DBMS_Stats.Gather_Schema_Stats('user'); and i expect the performance will be better than before but the real world the report was tak 30 sec it take now 15 minute (not all report but tow onl

  • Kernel Upgrade for old SAP Ides system

    HI, How I need to install 4.6c Kernel 4.6d patch level 948 on the following system SAP Ides - R/3 4.C SAP Package level 534 Support Package Manager  version 4.6c/0028 Oracle 8.1.7.0.0 ABAB Load 1258 Kernel 46D Could someone please tell me what I need

  • Can't see web app in CA

    I'm unable to find the web app I created for my sites in CA anymore, but when I use the Get-SPWebApplications cmdlet I see it there. Why am I unable to see it in CA? Thanks James T.F