Application migrating from 10.1.2 to 10.1.3.4 (404 Not Found)

I am migrating a application developed in jdeveloper 10.1.2 to Jdeveloper 10.1.3.4. Works and runs fine in 10.1.2
The application is compiling in 10.1.3.4, but when I try to run, I get the following error.
404 Not Found
javax.servlet.UnavailableException     at org.apache.struts.action.ActionServlet.init(ActionServlet.java:368)     at javax.servlet.GenericServlet.init(GenericServlet.java:256)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.loadServlet(HttpApplication.java:2379)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4830)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.findServlet(HttpApplication.java:4754)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2978)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:738)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
Edited by: FML0 on Mar 12, 2009 11:28 PM

Close the jdeveloper and delete class folder inside model and view proyect, then open jdeveloper compile and run.
Good Luck.

Similar Messages

  • Application Migration from HP-UNIX to SUN Solaris

    Hi Gurus,
    Need help on the application migration from HP-UNIX to Sun Solaris . Copied the filesystems APPL_TOP, OA_HTML, OA_JAVA, COMMON_TOP/util and COMMON_TOP/_pages from SOURCE( HP) to TARGET SUN-solaris as per 238276.1
    Now trying to clone Autoconfig XML context file on the TARGET System
    perl adclonectx.pl migrate java=\opt\java1.4 \
    contextfile=\ul01\app\applmgr\lasrx\admin\LASRX_fiapd4.xml
    Error: source context file ul01appapplmgrlasrxadminLASRX_fiapd4.xml does not exist.
    Questions:
    ======
    1. we still need to install jdk in the TARGET or copy the file system from source(HP) to target( Solaris) bring the JDK and how to check jdk on Solaris?
    2. In clone autoconfig XML, contextfile=? Is the location of SOURCE or TARGER?
    3. I think running above with root permission.
    Please help somebody on this issue.
    Thank You.

    Hi Hussein,
    I need your help on the Application migration from HP-UNIX to SUN Solaris. As per the note 238276.1 we dont copy $806_ORACLE_HOME for cross platform migration, Copied all the filesystem from SOURCE to TARGET but rename it because it suppose to create while installing Middle tier.
    Issue:1
    =====
    When i start to set environment like below, i get the error and
    . /ul01/app/applmgr/lasrx/APPSORA.env
    ksh: /ul02/app/oracle/lasrx/8.0.6_new/LASRX_fiapd4.env: not found
    I am trying to install Middle Tier Technology Stack on SUN server ( Migrating from HP-UNIX to SUN solaris)
    Issue 2: ( Display error) while install Tech Stack
    =====
    ./rapidwiz -techstack
    Rapid Install Wizard is validating your file system......
    >> Wizard requires the DISPLAY variable to be set.
    >> Please set your DISPLAY variable and restart Rapid Install Wizard.
    even i can not see
    echo $DISPLAY because not set the environment.
    Need your help and suggetions on this.
    Thank You.

  • Call Forms Forum from Oracle Forms Main Page - Error 404 Not Found

    Hello !
    The Layout and fuctionality of the Oracle Forms Forum has changed - very nice !
    But it's not possible to call the Oracle Forms Forum
    from the Oracle Forms Main Page !
    Error-message :
    404 Not Found
    OracleJSP: An error occurred. Consult your application/system administrator for support. Programmers should consider setting the init-param debug_mode to "true" to see the complete exception message.
    Thomas

    Please use the [Post-Upgrade Problems|http://forums.oracle.com/forums/forum.jspa?forumID=587&start=0] to report Forums related problems.
    This is the Forms Forum.
    Tony

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.Not working in USA timezone.

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works fine in our side (Timezone,kolkata ,india even for Timezone,slvaniya,USA) but our USA client is telling that on changing the date it not starts from start-up sequence.Can anyone plz suggest the reason for it.

    This is the code which we have used.
    //////////Return if it is first time for the day or not//////////////
    + (BOOL)isFirstTimeToday {
    BOOL result = YES;
    NSDate *now = [[NSDate alloc] init];     /// represents the current time
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: now];
    NSDate *today = [gregorian dateFromComponents:components];
    [now release];
    [gregorian release];
    NSDate *savedDate = [[NSUserDefaults standardUserDefaults] objectForKey:LAST_TIME_VISITED];
    if (savedDate) {
    if ([today earlierDate:savedDate] == today) {
    result = NO;
    return result;
    ////////Stores the date/////////////
    + (void)userDidVisitReenforceScreenToday {
    [[NSUserDefaults standardUserDefaults] setObject:[NSDate todayAtMidnight] forKey:LAST_TIME_VISITED];
    ////////////What [NSDate todayAtMidnight] stores/////////////////////
    + (NSDate *)daysFromNowAtMidnight:(NSInteger)nOfDays {
    NSDate *date = [NSDate dateWithTimeIntervalSinceNow: (86400*nOfDays)];
    NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDateComponents *components = [gregorian components:(NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit) fromDate: date];
    NSDate *dateAtMidnight = [gregorian dateFromComponents:components];
    [gregorian release];
    NSLog(@"dateAtMidnight : %@",dateAtMidnight);
    return dateAtMidnight;
    + (NSDate *)todayAtMidnight {
    return [self daysFromNowAtMidnight:0];
    Please Suggest..

  • I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    I created an application and in  that application if date is changed the application starts from splash screen on re-entering and if date is not changed and u re-enters the application then it open in page where u leaved.It works with iPod not with iPhone

    Try posting in the developer forums to see if you can get some assistance,you'll have to be a registered developer for access though.
    developer.apple.com

  • One Application deployed OK;  my app always gets error "404 Not Found"...

    I am trying deploying my application from within JDeveloper 10.1.3.4 to the standalone oc4j on the localhost, before deploying it on an application server. I am a newbie and I am doing this by following a tutorial. The tutorial application is deployed fine, but my application always gets the "404 Not Found" error after deployment.
    The standalone oc4j is set up on my Windows XP PC by running the <jdev_home>\jdev\bin\start_oc4j.bat file, and works fine because the tutorial application is deployed and runs fine.
    For the tutorial application, deployment is the last chapter (Chapter 10). I started from the nearly completed tutorial application from the end of Chapter 9, and went throug all the steps in Chapter 10 and the application is deployed and invoked successfully.
    My application starts with the login.jspx page. The applilcation runs perfectly when invoked directly within JDeveloper by right-clicking login.jspx and selecting Run. But when going through the same steps as with the tutorial application, my application always gets "404 Not Found" in the browser.
    The steps of deployment are:
    1. Right-click the ViewController project, select New and then Deployment Profiles/WAR File, to create the deployment profile. When creating this profile, I entered "ZBV" as the custom root context.
    2. Right-click the deployment profile (ZBV.deploy), and "Deploy To..." the standalone oc4j on the localhost, and accept the default configuration. The messages in the log window in JDeveloper are all clean without error.
    3. Open a browser, enter the url "http://localhost:8888/ZBV/faces/staff/login.jspx and get "404 Not Found". I have undeployed and gone through the same steps several times and always got the same error. I use /staff/login.jspx after ZBV/faces because in the Application Navigator, the login.jspx file is located in the ViewController/Web Content/staff folder.
    I wonder what could be wrong with my application. In the tutorial it is said that both an .ear file and a .war will be created but only the .war file needs to be created because of the dependency of the ViewController project on the DataModel project set in the application. My application has this dependency set therefore I went throug the same steps as with deploying the tutorial application.
    I hope the experienced and experts and gurus will shed light on me with their experience and wisdom.
    Many thanks!
    Newman

    Hi, Shay,
    You are right. I checked the log and found one notification message:
    Unable to dispatch JSP Page : Exception:java.io.FileNotFoundException: /staff/Login.jspx
    The capital L is a typo when creating the page file. During development you never need to type the file name but just click, and I always thought it was login.jspx. When that is corrected in the url string, the application is invoked and runs as it should. The one letter drove myself crazy for a whole day.
    Sorry and thanks! And to Dom too!
    Regards,
    Newman

  • Error 404--Not Found From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:

    I installed 9.1 HCM with peopletools 8.52.
    Everything was working fine - I sat up the process schedulers and reports were posting ,I built few pages ,menu etc and registered them and inserted data etc.
    Then I decided to setup the Integration broker.
    First I ran datamover script - appmsgourgeall.dml to clear the application messaging queue.
    and I renamed the local node from PSFT_HR to YACINE_PC_HCM
    and I configured the gateway
    http://yacine-pc:8000/PSIGW/PeopleSoftListeningConnector
    and the status was active.
    then loaded the connectors successfully.
    In the final step I went to the gateway propreties and I put the app server url //yacine-pc:9000.
    user name:PS and pass:PS etc
    and added the new node name - I clicked on Ping and it failed but I saved it anyway.
    and from there the PIA stopped working .
    I restarted the app server the PIA and I even reinstalled the PIA but it always gives me the same error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.

    For the record
    I did fix this error shortly after posting this Thread.
    I edited integrationgateway.propreties and I removed the node definition then I redid the setup of the node by adding authentication to it.
    Removed lines
    #ig.isc.HCM_YACINE_PC.serverURL=//yacine-pc:9000
    #ig.isc.HCM_YACINE_PC.userid=PS
    #ig.isc.HCM_YACINE_PC.password={V1.1}swDhibXvfL0=
    #ig.isc.HCM_YACINE_PC.toolsRel=PT8.52

  • Application Server Console returns EMDAEMON HTTP 1.1 404, Not Found

    Hello,
    Windows XP
    Version 10.1.2.0.2
    When I try to access the AS Console through the following URL:
    http://192.168.1.100:18100/emd/console/
    I get the following error:
    EMDAEMON
    HTTP/1.1 404 , Not Found
    But I'm able to access AS Portal through the following URL:
    http://192.168.1.100:18101/emd/console/
    I'm able to access all the other following URLs:
    http://192.168.1.100:7777/
    http://192.168.1.100/portal/page/portal/TOPLEVELSITE/Welcome
    http://192.168.1.100:5500/em/console/
    http://192.168.1.100:7777/oiddas/
    I think the port number is messed up somewhere and I'm not sure how to correct and get the AS Console working again.
    emctl status iasconsole gives:
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:18000/emd/console/aboutApplication
    Oracle Enterprise Manager 10g Application Server Control is running.
    emctl status agent gives:
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.2
    OMS Version : Unknown
    Protocol Version : 10.1.0.2.0
    Agent Home : D:\oracle\appserver\OraInfra
    Agent binaries : D:\oracle\appserver\OraInfra
    Agent Process ID : 3728
    Agent Process ID : 3728
    Agent URL : http://192.168.1.100:18100/emd/main/# MEDIUM if number of ta
    rgets is from 11 to 50.
    Started at : 2008-01-06 20:16:23
    Started by user : SYSTEM
    Last Reload : 2008-01-06 20:22:01
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 78.03%
    Agent is Running and Ready
    It would be helpful if someone can guide me in the right direction. Thanks for your time.

    Hello, thanks for the input. Running in separate boxes is not a viable option at this point. I tried to update the iasconsole and agent ports based on the document here:
    http://download.oracle.com/docs/cd/B14099_07/core.1012/b13995/ports.htm#i1038847
    So I used the following commands to update the ports:
    emctl config agent port 18139
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Oracle Enterprise Manager 10g Agent configuration update succeeded.
    emctl config iasconsole port 18119
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:1156/emd/console/aboutApplication
    0 [main] ERROR emSDK.config - java.util.MissingResourceException: Can't find bu
    ndle for base name oracle.xml.mesg.XMLResourceBundle, locale en_US
    java.util.MissingResourceException: Can't find bundle for base name oracle.xml.m
    esg.XMLResourceBundle, locale en_US
    at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle
    .java:839)
    at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:808)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:579)
    at oracle.xml.util.XMLError.getMessageBundle(XMLError.java:500)
    at oracle.xml.util.XMLError.alloc(XMLError.java:508)
    at oracle.xml.util.XMLError.getMessage0(XMLError.java:419)
    at oracle.xml.util.XMLError.error0(XMLError.java:310)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidati
    ngParser.java:318)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingP
    arser.java:281)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:186)
    at oracle.sysman.emSDK.conf.TargetInstaller.parseTargetFromFile(TargetIn
    staller.java:1747)
    at oracle.sysman.emSDK.conf.TargetInstaller.modifyTargetFromFile(TargetI
    nstaller.java:1294)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:36
    86)
    16 [main] ERROR emSDK.config - java.io.IOException: Error parsing target from f
    ile D:\oracle\appserver\OraInfra/sysman/emd/iasTargetMod.xml :: Can't find bundl
    e for base name oracle.xml.mesg.XMLResourceBundle, locale en_US
    java.io.IOException: Error parsing target from file D:\oracle\appserver\OraInfra
    /sysman/emd/iasTargetMod.xml :: Can't find bundle for base name oracle.xml.mesg.
    XMLResourceBundle, locale en_US
    at oracle.sysman.emSDK.conf.TargetInstaller.parseTargetFromFile(TargetIn
    staller.java:1760)
    at oracle.sysman.emSDK.conf.TargetInstaller.modifyTargetFromFile(TargetI
    nstaller.java:1294)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:36
    86)
    Error parsing target from file D:\oracle\appserver\OraInfra/sysman/emd/iasTarget
    Mod.xml :: Can't find bundle for base name oracle.xml.mesg.XMLResourceBundle, lo
    cale en_US
    Oracle Enterprise Manager 10g Application Server Control configuration update fa
    iled.
    When I looked at iasTargetMod.xml the file is empty (0 KB size).
    After Starting the Application Server Control, I checked the status of both iasconsole and agent and are as follows:
    emctl status iasconsole
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:18119/emd/console/aboutApplication
    Oracle Enterprise Manager 10g Application Server Control is running.
    Logs are generated in directory D:\oracle\appserver\OraInfra/sysman/log
    emctl status agent
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.2
    OMS Version : Unknown
    Protocol Version : 10.1.0.2.0
    Agent Home : D:\oracle\appserver\OraInfra
    Agent binaries : D:\oracle\appserver\OraInfra
    Agent Process ID : 8176
    Agent Process ID : 8176
    Agent URL : http://192.168.1.100:18139/emd/main/# we can set it to 0 to
    use the OS default value.
    Started at : 2008-01-08 00:13:53
    Started by user : SYSTEM
    Last Reload : 2008-01-08 00:13:53
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 78.00%
    Agent is Running and Ready
    I also checked the following:
    emctl config listtargets
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    [192.168.1.100:18139, oracle_emd]
    [192.168.1.100, host]
    [orcl.168.1.100, oracle_database]
    [LISTENER_192.168.1.100, oracle_listener]
    After all this, I went to this URL:
    http://192.168.1.100:18101/
    - and logged in as ias_admin. The name for Infra and Portal are as follows:
    infra.192.168.1.100
    PORTAL.192.168.1.100
    When I clicked on infra.192.168.1.100 I get 'Internet Explorer cannot display the webpage' error.
    But when I click on PORTAL.192.168.1.100 everything is working and the status of all the components are up.
    I'm not sure how I should proceed at this point. Any pointers would be helpful. Thanks!!

  • UCM Log in error : Error 404--Not Found From RFC 2068 Hypertext Transfer Pr

    i am not able to get ucm login page , admin and manage server is up and there is no error in logs . but iam getting below error in login page
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.

    Hi ,
    This is an indication that ECM cs.ear deployment has failed for some reason . To get the exact reason either check ucm_server1.log or start the server from command line and there the errors will be shown.
    Copy the core part and post it .
    Thanks
    srinath

  • Error : 404 not found while opening Ciscoview from Campus manager with LMS 3.2

    Hi Friends,
    While opening ciscoview from Campus Manager Topology, getting error 404 not found by apache web server. pls guide me to resolve this issue if anyone faces the same situation earlier.
    Thnx

    The name of Enterprise Manger service is em you can find it under deployments in weblogic console. Its status should be active and ok.
    Have you tried this
    http://technasir.blogspot.com/2013/04/enterprise-manger-is-not-working.html
    regards
    Nasir

  • Cannot download WSDL from .....Invalid Response Code: (404) Not Found.

    Hi expert,
    hcb-msap59 (PI system) & hcb-msap49 (ecc system)
    When I try calling the ws navigator with this wsdl: http://hcb-msap49.res.no.enterdir.com:8016/sap/bc/srt/wsdl/sdef_ECC_DOCUMENTCRTRC1/wsdl11/ws_policy/document?sap-client=101
    it gives error :
    Cannot download WSDL from http://hcb-msap49.res.no.enterdir.com:8016/sap/bc/srt/wsdl/sdef_ECC_DOCUMENTCRTRC1/wsdl11/ws_policy/document?sap-client=101: Invalid Response Code: (404) Not Found. The request URL was:"http://hcb-msap49.res.no.enterdir.com:8016/sap/bc/srt/wsdl/sdef_ECC_DOCUMENTCRTRC1/wsdl11/ws_policy/document?sap-client=101". Check, whether the URL is correct, and the Web Service that you are requesting is up and running
    In http://hcb-msap49.res.no.enterdir.com:8016/sap/bc/webdynpro/sap/appl_soap_management?sap-language=EN and go to technical configuration, system global settings, access information j2ee server, the hostname and port is of PI system.
    Any idea why Im getting the error? If I click on http://hcb-msap49.res.no.enterdir.com:8016/sap/bc/srt/wsdl/sdef_ECC_DOCUMENTCRTRC1/wsdl11/ws_policy/document?sap-client=101 the sire is opening.
    Any idea why I cant open it from ws navigator of my PI system?
    Thanks.
    Regards,
    Thava

    Hi,
    Can you access that URL when you paste it into your browser? You don't need to configure system global settings unless you want to go to PI's navigator automatically - you can always copy & paste the link after opening the wsnavigator in PI yourself as well. If you can access the link, kindly check your network & proxy setup.
    Regards,
    Gokhan

  • Trying to transfer a video clip from iPhone to iPad using transfer app it says device not found, I have used this before wifi is fine and both  devices are connected ?

    Trying to transfer a video clip from iPhone to iPad using transfer app it says device not found, I have used this before wifi is fine and both  devices are connected ?

    That does not involve iPhoto for the Mac in any way - try the iPad forum
    I will request your post be moved
    LN

  • 404 not found error from BB Protect download

    Hi,
    My sync/charge contact has broken off, so I am trying to download Blackberry Protect directly onto the phone.  Every the browser seems to work fine, but every time I click 'Download Protect', whether from Google or within Blackberry's site logged on with BlackberryID, I get the 404 : Not found error on my phone.
    Is it impossible to download directly, do Blackberry have a problem with downloads at the moment or is there another issue?
    Thanks,
    Tom

    Hi,
    My sync/charge contact has broken off, so I am trying to download Blackberry Protect directly onto the phone.  Every the browser seems to work fine, but every time I click 'Download Protect', whether from Google or within Blackberry's site logged on with BlackberryID, I get the 404 : Not found error on my phone.
    Is it impossible to download directly, do Blackberry have a problem with downloads at the moment or is there another issue?
    Thanks,
    Tom

  • From RFC 2068 (10.4.5 404 Not Found)

    Dear all,
    I have installed Oracle Weblogic and 11G Forms in Windows server 2003 . But when I have tried to run a form Browser shows a error message .
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    Where's the problem ? I have successfully run 11g forms with 10g Database on Windows 7 PC.

    Please check Apache log files for details about the error.
    Thanks,
    Hussein

  • When I call VI on Linux from Teststand on Windows using TCP/IP I get "file not found error".any sugeestions?

    I am trying to execute a VI running on Linux from Teststand running on windows 2000 prof ,both running on two different machines.I used TCP/IP for the interface using the following steps on Labview VI:tools>options>VIserver>TCP/IP and gave the ip address of both the machines.When I gave the file path as c:\home\test.vi in Edit labview Vi call window(the Vi in linux is stored in /home/test.vi)and also in remote vi path:/home/test.vi,I get a file not found error.The teststand version is 3.0 and labview is 7.0.Any idea why this is happening and any solutions?

    priya guru,
    Here is a knowledge base that addresses your question: �How do I call test VIs that reside on a non-Windows platform from TestStand?�
    You also need to set TCP/IP Access found in Tools->Options->'VI Server: TCP/IP Access'. Make sure that you list the IP address in the Access List to allow TCP/IP access to that machine. Finally you need to specify which VIs are accessible to remote applications. Open up Tools->Options->'VI Server: Exported VIs' and provide paths to the VIs you wish to be remotely accessible.
    I have attached an example VI that demonstrates VI Server in action. Please post back if you are still having problems. Good luck!
    Cr
    aig H.
    National Instruments
    Attachments:
    Remote_Run_--_VI_Server.zip ‏88 KB

Maybe you are looking for

  • G4 and panther upgrade. could I? should I?

    I purchased a G4 Powerbook in 2003 and never updated the operating system. Over the past year it has been running slower and slower and now can not access many webpages and Safari quits often. So I have a few questions. Here's my specs (as they read

  • Share a group of calendars?

    I've been working with iCal to create several groups with many different calendars within each group. Think three groups, each with about fifteen calendars. When i try to share a group of calendars with someone, iCal consolidates my many calendars in

  • Re-using a clip

    Can anyone help here? I am trying to overlay clips using Slick 4 Mattastic.I want to use different parts of clips as the overlay at different points. After using part of a clip for this I cannot reuse a different part of the clip further on over the

  • Grey screen upon turning on Mac

    Trying to turn on my Mac and all I get is a grey screen and apple logo. Did hear the chime upon turning the unit on but do not get to home screen. Help

  • Workflow in CRM

    Hi, Can any only please let me know how can i use <b>WORKFLOW IN CRM.</b> thanks in advance, Regards, Kannan.