ALSB XQuery resource cannot be found

Hi!
I have a problem, that for no apparent reason, my ALSB environment "crash".
All of a sudden the Xquery resource cannot be found. You cannot export jar from resource and
you cant do a XT transformation, because of the resources cannot be found. The typed show empty.
This have occurred before, and I solved it by deleting my workspace and starting a new from scratch. But
i feel that this is not the right way to solve it every time it appears. I have tried doing a clean, build and everything.
Have some one ever got this problem, or have I missed something?
Using Eclipse based BEA Workshop Studio version: 1.1 (build: 1090602)
Edited by: user12665375 on 2010-feb-23 13:21

Hi!
Thanks for the fast reply.
We are using the Eclipse based BEA Workshop Studio , version 1.1 (build: 10900602)
Regards
Afram
Edited by: user12665375 on 2010-feb-23 13:18

Similar Messages

  • Aqualogic WebLogic Workshop: XQuery resource cannot be found

    Hi
    I created a Proxy Service with WebLogic Workshop. I tested it without problems. After I shutdown the laptop and restarted it the references between the Proxy Service and the XQuery resources are lost. If I try to reference them WebLogic Workshop cannot find the resource even if they appear on the project.
    Any ideas?
    Regards,
    Néstor Boscán

    Hi Nestor,
    In Workshop, try to clean all the projects (Projects -> Clean all)
    Regards,
    Fabio Douek

  • Server Error in '/' Application - The resource cannot be found

    Using VS 2008 with Framework 3.5, I built a web-service that runs perfectly on the development PC.  When I build and run the web service, it runs in a virtual port as "ASP.Net Development Server Port 49259".  All the methods will
    invoke no problem.  However, if I try bring up this web-service asmx page on another PC or the mobile app that is cradled to the development PC via USB, I get: Server Error in '/' Application. The resource cannot be found.  HTTP 404... 
    This app ran just fine back in October13 but I opened for further development over the weekend and I cannot work because of this.  I have updated PC and VS with latest updates (problem before & after updates).  Using 3.5 because I am using
    Windows Mobile 5.0 Clients.  I have searched the forum universe for the solution and have found many people with this error but with other platforms.
    I am using the DefaultApplicationPool and I made sure that the local security has READ access on the web service file folders. I hope this is something simple that I am missing.
    And help - grateful!

    Hello,
    Thank you for your post.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    If you are working with ASP.NET Web Application, I suggest that you can consult your issue on ASP.NET
    WCF, ASMX and other Web Services forum for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When I try to log in to my BC account I get a message that says this"Server Error in '/' Application.  The resource cannot be found.  Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its nam

    When I try to log in to my BC account I get a message that says this"Server Error in '/' Application.  The resource cannot be found.  Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.   Requested URL: /Admin/Index2.aspx"
    Any ideas???

    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Test.

  • The Resource Cannot Be Found

    feeling pretty foolish and frustrated at the moment. In CF Builder 2 I started a new project and placed it in a new directory under wwwroot.
    A very simple hello world html file will run in Builder's preview but not in a browser. Another very simple cfm file will not run in either the Builder preview or in a browser. In any case where the page doesn't load I get "The resource cannot be found" error.
    Other directories I have created off the webroot folder work fine but I don't know what is different here.
    Using IIS in Windows 7, CF 9.
    Any ideas?

    ReadPDF rPDF = new ReadPDF();
    Class myClass = rPDF.getClass();
    ClassLoader loader = myClass.getClassLoader();
    URL myURL = loader.getResource("PreviewForm1210.pdf");
    String path = myURL.getPath();
    path = path.replaceAll("%20", " ");
    // Create a PdfReader instance
    PdfReader r = PdfReader.fileReader(path);
    // Create a PdfDocument instance with the reader
    PdfDocument d = new PdfDocument(r);
    // Get page count and display on console
    System.out.println("Number of pages in PreviewForm1210.pdf is " + d.getPageCount());

  • HT201210 When I try to restore my ipod, I get a dialogue box that pops up that says the restore has failed because the requested resource cannot be found. What is the problem, and how can I fix it?

    When I try to restore my ipod, I get a dialogue box that pops up that says the restore has failed because the requested resource cannot be found. What is the problem, and how can I fix it?

    Hi IG viper,
    Placing your iPod into recovery mode should allow you to successfully restore the device.
    You might see these error messages if any of these are true:
    Your device has a beta version of iOS.
    You're trying to install an earlier version of iOS (downgrading).
    Your device has unauthorized modifications to iOS, also called "jailbreaking."
    Use recovery mode to restore your device to the latest version of iOS.
    Resolve iOS update and restore errors
    http://support.apple.com/en-us/TS3694
    Sincerely,
    Allen

  • The resource cannot be found in the classpath

    Hi All,
    I have a Java class and a PDF file in the same folder
    But the PDF file is not accessible by ClassLoader.getResource(), it returns null.
    What should I change to access the PDF file from within the Java class by ClassLoader#getResource() ?
    Any help is really appreciated.
    ReadPDF rPDF = new ReadPDF();
    Class myClass = rPDF.getClass();
    ClassLoader loader = myClass.getClassLoader();
    URL myURL = loader.getResource("PreviewForm1210.pdf");
    String path = myURL.getPath();
    path = path.replaceAll("%20", " ");
    // Create a PdfReader instance
    PdfReader r = PdfReader.fileReader(path);
    // Create a PdfDocument instance with the reader
    PdfDocument d = new PdfDocument(r);
    // Get page count and display on console
    System.out.println("Number of pages in PreviewForm1210.pdf is " + d.getPageCount());

    ReadPDF rPDF = new ReadPDF();
    Class myClass = rPDF.getClass();
    ClassLoader loader = myClass.getClassLoader();
    URL myURL = loader.getResource("PreviewForm1210.pdf");
    String path = myURL.getPath();
    path = path.replaceAll("%20", " ");
    // Create a PdfReader instance
    PdfReader r = PdfReader.fileReader(path);
    // Create a PdfDocument instance with the reader
    PdfDocument d = new PdfDocument(r);
    // Get page count and display on console
    System.out.println("Number of pages in PreviewForm1210.pdf is " + d.getPageCount());

  • SBO Mailer Error - The specified resource type cannot be found in the image file

    Hi Experts,
    I have created an alert in SBO and selected email and internal option for same. I get internal message however email is not getting delivered, I checked the Event Viewer of Windows and below error is shown for SBOMail.
    The description for Event ID 62 from source SBOMail cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Failed to mark records error [-1]
    The specified resource type cannot be found in the image file
    I can send email from sbo for other documents but the alert is not delivering email.
    Please advise.
    Thanks
    Deepak

    Hi Deepak..
    Check with these threads...
    http://scn.sap.com/thread/966957
    http://scn.sap.com/thread/1295818
    SBOMail Application log error
    SBOMail error in event log
    Hope Helpful
    Regards
    Kennedy

  • The specified resource name cannot be found in the image file.

    Dear Experts,
    I have developed an import too and it imports many of the Business Objects from a temporary data base to SAP B1. It was running fine for more than 6 months now.
    Currently when the Tool is importing Credit Notes in to SAP B1, the following error is thrown.
    The specified resource name cannot be found in the image file.
    And I have no Clue about the error. Any one had any experience regarding the above error???
    Thanks in Advance,
    Vasu Natari.

    Hello VAsu,
    Somethimes this unexpected, ununderstandable eroor messages caused by corrupted observer dll.
    Do a clean up (delete %TEMP%SM_OBS_DLL) folder, and see the result ! (i had several issues in the past with some strange messages...)
    Regards
    János

  • All website went "Not Found HTTP Error 404. The requested resource is not found." and the "Firefox cannot load websites but other programs can" page is not help

    ''dupe of https://support.mozilla.org/en-US/questions/928117''
    all website went "Not Found HTTP Error 404. The requested resource is not found." and the "Firefox cannot load websites but other programs can" page is not helping in any ways

    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *http://kb.mozillazine.org/Error_loading_websites
    You can try to reset (power off/on) the router.

  • Cannot Connect to the iTunes Store. Request Resource was not found

    I hope you can help me.
    I get the following error when trying to connect to the iTunes store.
    iTunes could not connect to the iTunes store, the requested resource was not found.
    I am running Norton Internet security and have allowed all permissions for iTunes.
    Following is the diagnostics log:
    Thanks,
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Dell Inc. Latitude D820
    iTunes 7.1.1.5
    Current user is an administrator.
    Network Adapter Information
    Adapter Name: {21F2991F-5976-4BE0-8031-064BC7AC9AF0}
    Description: Intel(R) PRO/Wireless 3945ABG Network Connection - Minipuerto del administrador de paquetes
    IP Address: 192.168.2.26
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.2.200
    DHCP Enabled: No
    DNS Servers: 192.168.2.25
    168.243.165.225
    Adapter Name: {CB99A2BD-1A04-482A-BC5C-53E5597BA70B}
    Description: Broadcom NetXtreme 57xx Gigabit Controller - Minipuerto del administrador de paquetes
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway:
    DHCP Enabled: Yes
    DHCP Server: 192.168.0.1
    Lease Obtained: Mon Feb 12 11:09:06 2007
    Lease Expires: Tue Feb 13 11:09:06 2007
    DNS Servers: 192.168.2.25
    168.243.165.225
    Network Connection Information
    Active Connection: Conexión LAN
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was unsuccessful.
    A secure network connection could not be established.

    Has anyone actually tried this suggestion posted by jeffporfiro's. He seems to be posting in any topic related to iTunes Store connection probs.
    Is there any credibility to his suggestion? (below)
    <<jeffporfirio wrote:
    Solution is as follows:
    Goto your C:\WINDOWS\system32\drivers
    find a file named “hosts”, mine was located in a directory named “etc” under the “drivers” directory, rename the file, to something other than its name (eg. rem-old.host) and done ! >>

  • Call an Xquery Resource in ALSB dynamically

    Hi,
    I am using Aqualogic ServiceBus v2.6.
    I have created few xquery resources and want to access them dynamically.
    Is it possible to dynamically access an xquery resource, the way we can dynamically route to a proxy / business service by giving the complete path.
    I'll get the name and path of my xquery from request at run time and will have to select corresponding xquery from many created in a project.

    Thanks for the reply.
    But I think I wasn't clear with my question.
    I want to call an xquery dynamically, not route to a proxy service.
    I have one project with 1 proxy service and many xquery resources. I do not know which xquery is to be used. The selection of xquery is based on request recieved by proxy service. The path of all xqueries is same. I'll get the name of xquery to be used at run time. How can I access this xquery dynamically?
    We have option of selecting an xquery resource by selecting radio button. Can we do this by just giving the path and name at run time?
    E.g. In my project I have 1 proxy service XYZProxyService and many xquery resources say 1.xq, 2.xq ..... N.xq
    I now the path of all these is XYZProxyService/XQueries/
    I'll get the name of xq to be used at run time from request.
    So I can construct the whole path alongwith name XYZProxyService/XQueries/<N>.xq
    But is there a support to select an xq dynamically by giving whole path?

  • Encore CS3 cannot open CS2 project: folder cannot be found

    I created a project in Encore CS2 under Win XP, and when I try to open it in CS3 under Vista, I get an error of
    Cannot open project; The folder for this project cannot be found.
    Disregarding the fact that I haven't changed, moved or deleted any subfolders or files and the drive has the same letter and label as before, why the heck doesn't Encore at least give me the opportunity to direct it to the correct folder? I can do this easily in almost all other applications, like InDesign or Dreamweaver. Shouldn't this error have come up in the first few days of beta testing? (Uh, it
    was beta tested.....right?)
    I tried looking in the ProjectPrefs and ProjectWorkspace xml files, but they don't have any folder info. Searches in the knowledge base, forums and newsgroups have turned up nothing. It seems my only choice here is to recreate the fracking project from scratch!

    >(Uh, it was beta tested.....right?)
    No. It wasn't. The Encore team is so good at coding and spell-checking that the Product Manager and the Director of the Production Studio project both felt that beta testing was not necessary this time around.
    It's really pretty impressive that so few bugs have turned up in real-world use considering that both internal and external beta testing was shelved for this release. The additional resources that would have been used to test the app were sent to the Photoshop team to ensure that the CS3 release of PS was flawless.

  • The description for Event ID 0 from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

    Hi,
    Can any one help me on the below issue ?
    while executing automated test case in test center it is showing as test case is in progress, then i navigated to virtual machine (where the test agent is online), there Internet
    explore has opened automatically and my test case execution started, but with in a seconds IE has closed . However, in test center, test case status is showing as in
    progress, after  2 or 3 min  some of  test cases getting passed and some are failed.
    Here my question is in lab center-->virtual machine, IE has opened automatically and navigated the 2 or 3  links and with in seconds IE has getting closed. Why IE is getting closed without completing execution?
    Error Message :
    The description for Event ID 0 from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the
    installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    (mtm.exe, PID 5240, Thread 4) FileAggregatorSessionInfo: Error occurred while deleting temporary directoryException: System.IO.DirectoryNotFoundException: Could not find a part of the path 
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.VisualStudio.TestTools.Execution.Aggregation.FileAggregator.FileAggregatorSessionInfo.DeleteTemporaryDirectory(String temporaryDirectory)
    the message resource is present but the message is not found in the string/message table
    Thanks
    Suresh
    Suresh

    Hi,
    Can any one help me on the below issue ?
    while executing automated test case in test center it is showing as test case is in progress, then i navigated to virtual machine (where the test agent is online), there Internet
    explore has opened automatically and my test case execution started, but with in a seconds IE has closed . However, in test center, test case status is showing as in
    progress, after  2 or 3 min  some of  test cases getting passed and some are failed.
    Here my question is in lab center-->virtual machine, IE has opened automatically and navigated the 2 or 3  links and with in seconds IE has getting closed. Why IE is getting closed without completing execution?
    Error Message :
    The description for Event ID 0
    from source VSTTExecution cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    (mtm.exe, PID 5240, Thread 4) FileAggregatorSessionInfo: Error occurred while deleting temporary directoryException: System.IO.DirectoryNotFoundException:
    Could not find a part of the path 
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.VisualStudio.TestTools.Execution.Aggregation.FileAggregator.FileAggregatorSessionInfo.DeleteTemporaryDirectory(String
    temporaryDirectory)
    the message resource is present but the message is not found in the string/message table
    We are using VS 2013 (premium) and IE 10.0,  scripts have been created on the same versions. It is working fine  on
    developers command prompt but the same tests are getting failed in lab center test agent machine
    test agent log:
    QTAgentService.exe, AgentService: calling AgentObject.RunEndFileCopyComplete
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: waiting for agents to start.
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: Agents started.
    QTAgentService.exe, AgentProcessManager.PerformActionIgnoringExceptions: Successfully called 'Cleanup' on the test agent
    QTAgentService.exe, AgentProcessManager.PerformActionIgnoringExceptions: Calling 'StopDataCollection(int)' on the data collection agent
    QTAgentService.exe, AgentProcessManager.IsDataCollectionAgentNeeded: IsExecutedOutOfProc? True
    QTAgentService.exe, AgentPro
    QTAgentService.exe, AgentProcessManager.WaitForDataCollectionAgentProcessToStart: Agents started.
    QTAgentService.exe, AgentService: Connection to controller is up.
    Thanks
    Suresh

  • Application Server 10.1.3.10 + Enclipse. Page cannot be found.

    Hello, i am running the application Server 10.1.3.10 and use Eclipse as an IDE.
    Creating projects through Eclipse and publish them on Tomcat works fine.
    Things start to go wrong when Eclipse is combined with Oracle AS to publish even a simple jsp page.
    After creating a dynamic web project and trying to run a jsp page on the Oracle server i get following warning in the logs.
    _10/03/02 13:42:29 log4j:WARN No appenders could be found for logger (wsif)._
    _10/03/02 13:42:29 log4j:WARN Please initialize the log4j system properly._
    _10/03/02 13:42:29 Warning: Unable to set up connection factory for a resource adapter in esb-dt: Error creating a ResourceAdapter implementation class. Error creating a JavaBean of class 'oracle.tip.esb.server.bootstrap.DesignTimeResourceAdapter: javax.resource.spi.ResourceAdapterInternalException: java.lang.RuntimeException: failed to get ESB_HOME: java.lang.NullPointerException_
    _10/03/02 13:42:29 Warning: Unable to set up connection factory for a resource adapter in esb-rt: Error creating a ResourceAdapter implementation class. Error creating a JavaBean of class 'oracle.tip.esb.server.bootstrap.RuntimeResourceAdapter: javax.resource.spi.ResourceAdapterInternalException: java.lang.RuntimeException: failed to get ESB_HOME: java.lang.NullPointerException_
    10/03/02 13:42:35 Confluent Config: Loading configuration file config.xml
    10/03/02 13:42:35 Confluent Config: "${config.path}" is resolved to "config.properties"
    10/03/02 13:42:35 Confluent Config: "${gateway.default.config.path}" is resolved to "gateway-config-installer.properties;gateway-config-common.properties"
    10/03/02 13:42:35 Confluent Config: Loading property file config.properties
    10/03/02 13:42:35 Confluent Config: Loading property file gateway-config-installer.properties
    10/03/02 13:42:35 Confluent Config: Loading property file gateway-config-common.properties
    10/03/02 13:42:35 Confluent Config: Loading configuration file config.xml
    10/03/02 13:42:35 Confluent Config: "${config.path}" is resolved to "config.properties"
    10/03/02 13:42:35 Confluent Config: "${gateway.default.config.path}" is resolved to "gateway-config-installer.properties;gateway-config-common.properties"
    10/03/02 13:42:35 Confluent Config: Loading property file config.properties
    10/03/02 13:42:35 Confluent Config: Loading property file gateway-config-installer.properties
    10/03/02 13:42:35 Confluent Config: Loading property file gateway-config-common.properties
    10/03/02 13:42:35
    ConnectionPoolManager gateway.foundationservice intialized with url=jdbc:polite4@localhost:1531:orawsm driver=oracle.lite.poljdbc.POLJDBCDriver user=system maxConn=5
    10/03/02 13:42:35 Gateway component started
    10/03/02 13:42:36 Confluent Config: Loading configuration file config.xml
    10/03/02 13:42:36 Confluent Config: "${config.path}" is resolved to "config.properties"
    10/03/02 13:42:36 Confluent Config: "${policymanager.default.config.path}" is resolved to "policymanager-config-installer.properties;policymanager-config-common.properties"
    10/03/02 13:42:36 Confluent Config: Loading property file config.properties
    10/03/02 13:42:36 Confluent Config: Loading property file policymanager-config-installer.properties
    10/03/02 13:42:36 Confluent Config: Loading property file policymanager-config-common.properties
    10/03/02 13:42:36
    ConnectionPoolManager PolicyRepository intialized with url=jdbc:polite4@localhost:1531:orawsm driver=oracle.lite.poljdbc.POLJDBCDriver user=system maxConn=5
    10/03/02 13:42:36
    ConnectionPoolManager ComponentRepository intialized with url=jdbc:polite4@localhost:1531:orawsm driver=oracle.lite.poljdbc.POLJDBCDriver user=system maxConn=5
    10/03/02 13:42:36 Policy Manager component started
    10/03/02 13:42:36 Confluent Config: Loading configuration file config.xml
    10/03/02 13:42:36 Confluent Config: "${config.path}" is resolved to "config.properties"
    10/03/02 13:42:36 Confluent Config: "${ui.default.config.path}" is resolved to "ui-config installer.properties;ui-config-common.properties"
    10/03/02 13:42:36 Confluent Config: Loading property file config.properties
    10/03/02 13:42:36 Confluent Config: Loading property file ui-config-installer.properties
    10/03/02 13:42:36 Confluent Config: Loading property file ui-config-common.properties
    10/03/02 13:42:36 Authentication Provider is:com.cfluent.accessprovider.sampledb.LocalDBAuthProvider
    10/03/02 13:42:36
    ConnectionPoolManager Component Repository Pool intialized with url=jdbc:polite4@localhost:1531:orawsm driver=oracle.lite.poljdbc.POLJDBCDriver user=system maxConn=5
    10/03/02 13:42:36
    ConnectionPoolManager UI Pool intialized with url=jdbc:polite4@localhost:1531:orawsm driver=oracle.lite.poljdbc.POLJDBCDriver user=system maxConn=5
    10/03/02 13:42:36 Confluent UI component started
    10/03/02 13:42:36 Corda Servlet Environment Initialized
    10/03/02 13:42:39
    Corda Server (PopChart) Version 6.0.597
    PopChart: Valid Key.
    OptiMap: No key entered, or key invalid.
    Highwire: No key entered, or key invalid.
    Cluster: No key entered, or key invalid.
    10/03/02 13:42:39 Copyright 1997 - 2004, Corda Technologies, Inc. (www.corda.com) Protected by U.S. Patent 5,933,830. Other patents pending.
    10/03/02 13:42:39
    10/03/02 13:42:39 server_root: C:/oracle/Application_Server/owsm/lib/corda
    10/03/02 13:42:39 chart_root: chart_root
    10/03/02 13:42:39 Password is Enabled, Required for Save
    10/03/02 13:42:39 Maximum Threads: 64
    10/03/02 13:42:39 Default Image Type is: Flash
    10/03/02 13:42:39 Auto Detect PNG Support. Compression Mode: DEFAULT
    10/03/02 13:42:39
    10/03/02 13:42:41 Confluent Config: Loading configuration file config.xml
    10/03/02 13:42:41 Confluent Config: "${config.path}" is resolved to "config.properties"
    10/03/02 13:42:41 Confluent Config: "${monitor.default.config.path}" is resolved to "monitor-config-installer.properties;monitor-config-common.properties"
    10/03/02 13:42:41 Confluent Config: Loading property file config.properties
    10/03/02 13:42:41 Confluent Config: Loading property file monitor-config-installer.properties
    10/03/02 13:42:41 Confluent Config: Loading property file monitor-config-common.properties
    10/03/02 13:42:44 Rmi Registry is started on port 3118
    10/03/02 13:42:44 Confluent Monitor component started
    10/03/02 13:42:44 Oracle Containers for J2EE 10g (10.1.3.1.0) initialized
    I have looked for those warnings and found that those warnings can be ignored. Then i get a confirmation
    that "Build was successful"
    Buildfile: C:\Program Files\Eclipse\eclipse\plugins\org.eclipse.jst.server.generic.oc4j_1.5.206.v20090812\buildfiles\oracle.10.1.3.xml
    check.skip.web.deploy:
    deploy.j2ee.web:
    BUILD SUCCESSFUL
    Total time: 625 milliseconds
    The point is that on my IDE (Eclipse the page is not being displayed getting an error "The webpage cannot be found" .
    The only way i could publish the jsp is to copy it to the APPLICATIONSERVER_HOME\j2ee\home\default-web-app
    and access it through http://localhost:8888/projectname/foo.jsp
    What could be wrong?
    Edited by: user12711529 on Mar 2, 2010 6:39 AM

    If you have deployed the both applications to the same OC4J instance, then you can't do it.
    If you have deployed the two applications to different OC4J instance, you could edit the config file under j2ee/home/config directory - default-web-site.xml.

Maybe you are looking for

  • Help with displaying my xml file in my jtext area

    Hi i am trying to read the data from my xml file and display it once the user clicks on the list all button. below is the source code for my program can someone please tell me some code to this. package tractorgui; import java.awt.BorderLayout; impor

  • Issue with Value Mapping table

    Hi I want to upload a external value mapping table to XI. I do not want to code for it on the SAP R/3 side. and there might be more than 2000 value mappings. so can we upload a external mapping table. Is it possible?? if yes, then how??. Thanks Nikhi

  • Average of KF

    Hi All I have a custom ODS with the following : <b>Key</b> Material Plant Cal Month <b>Data</b> Company code Fiscal year period Fiscal year variant PTS (Price to stockist) - Key figure Brand Distribution channel Division I have defined this key figur

  • Centering Objects?!

    How do you center an object/text frame/picture in the center of the page? I don't mean just how to center the text inside a text frame, but actually center the text frame in the smack dab middle of the page without having to eyeball it? So say if I'm

  • Problem in COPA ( Urgent)

    Hi All, I have a problem in COPA. The issue is- There was a mistake in SD Billing copying controls, it allowed the item category ZBC1 Batch item category to copy to the billing document. The item did not have any quantity or value, but it had cost, s