Why I always get error 404 after I deployed war?

          Hi,sir
          I have a problem when I am using weblogic 6.1(sp2). I developed a webapp and packaged
          it into a war file. The process of deployment is no error. But when I want to visit
          the app via IE browser, I always get the error 404. The weblogic server told me as
          following:
          <2002-6-22 &#19979;&#21320;03&#26102;39&#20998;40&#31186;> <Error> <HTTP> <HttpServer(11051039,null
          default ctx,myserver) found no context for "/mw/main/signin". This request does not
          match
          the context path for any installed web applications and there is no default web application
          configured.>
          mw is webapp context root,
          main/signin is mapping name of servlet.
          By the way, I deployed a the example of security in bea's examples directory. Unfortunatelly,
          I met the same result.
          how can i do?
          thx for your response.
          

It is a database bug (an ORA-0600 almost always is). In this case it is bug# 1725012. You can see the details from MetaLink. There are some patches (by platform) available you should see which may apply to you.

Similar Messages

  • Why do I get Error: 404 when I try to download a Lightroom upgrade on the UK site?

    Why do I get Error: 404 when I try to download a Lightroom upgrade on the UK site?

    Try downloading from below link :
    New Adobe Lightroom 6 (CC) Direct Download Links – Free Trials | ProDesignTools
    Feel free to post , if you need further assistance

  • Why am i getting error -43 after mix down on audio recording?

    why am i getting error -43 after mix down on audio recording?

    to where are you trying to mix down the file? a -43 is a file not found error

  • 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

  • Why am i getting error messages after I installed the latest update?  I am running Windows 7 and now getting error 7 .  It tells me to reinstall I tunes which didn't help

    Help please

    Hello mamdonde,
    The following article provides steps that can help resolve this error.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    Allen

  • Dreamweaver cc 2014 : why do I get error 404 on menu list item on only one list item?

    I have a list on my menu that only the last item 2009-2014 will not function. All other links in the list work. coding is the same on all items but having been trying for days and unable to get 2009-2014 to work no matter how many times I create and recreate it.
    url: www.strangersrestbc.com  (thought I had posted this originally under DW CC 2014 but can't find my original discussion)
    thanks,
    howard

    Looks like you either...
    1. Haven't uploaded the re4.jpg image
    2. Uploaded it to the wrong location (the link says it should be in your site root)
    3. Uploaded the image with the wrong name (RE4.jpg and re4.jpg are the same on your local system, but on a server they're separate files)
    Actually, #3 is true, I found the image as RE4.jpg, but the link is to re4.jpg
    To avoid this in the future, make sure your files all use lowercase, alpha-numeric names. Avoid using spaces (use hyphens and underscores instead) and avoid special characters like #&$ all together.

  • Why I always get the error(ORA-00600)?

    Why I always get the error(ORA-00600)?
    My database Oracle 9.2.0.1.0 I installed Oracle Jdeveloper 9i on my computer.
    OS:windows2000
    My program:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    con =java.sql.DriverManager.getConnection("jdbc:oracle:thin:@server:1521:db","developer","12345");
    java.sql.Statement stmt=con.createStatement();
    java.sql.ResultSet rs=stmt.executeQuery("select task_title from task");
    while (rs.next()){              
         //getInformation
         String fjbh=rs.getString("task_title");
    If I use this in a common java program(like MyParser.java). It will work well:
    D:\JavaApp> java MyParser
    but If I put the code into a JSP file . It will not work.I tried several times.
    I find that the statment:
         java.sql.ResultSet rs=stmt.executeQuery("select task_title from task");
    will throw the exception.It seemd that I can connect to the database ,
    but can not execute some sql statment.
    If I execute this sql statment:
         select sysdate from dual ;
         or
         select task_ID from task ; --task_id is a column with the type NUMBER(10)
    it will work.
    but if I execute :
         select Task_Title from task where task_id=1; --Task_Title is a column with the type VARCHAR(50)
         or
         select t.task_text.getCLOBVal() task_Text from task t where task_ID=1;
                   --task_text is a column with the type XMLTYPE, I use this column save XMLFile.
    it will not work.
    the detail error information as follow:
    java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], []

    It is a database bug (an ORA-0600 almost always is). In this case it is bug# 1725012. You can see the details from MetaLink. There are some patches (by platform) available you should see which may apply to you.

  • Why am I getting the 404 error when on pinterest?

    Why am I getting the 404 error when on pinterest?  This is happening on my iMac and macbook.
    I have tried to clear my history, tried in safari and in firefox, enabled and disabled Javascript, and allowed 3rd party sites.
    Please help!!

    No you are not alone. I tried to create an apple ID and then access the app store and itunes and got the same error code. Spoke with tech support for over 45 minutes and we tried everything. Tech support seemed to think that it had something to do with credit card registration. Suggested that I use a different credit card. I modified my account settings with a different card and still had the same errors. At this time I have no confidence that Apple has any idea what the problem is.

  • Why i always get the message "Oops! Something just went wrong on our server! We've logged the prbl"

    why i always get the message "Oops! Something just went wrong on our server! We've logged the problem and will fix it as soon as possible. Sorry for the inconvenience." everytime i added new apps on eprintcenter.

    I will need a little more information in order to help out. What model of printer is it that you own? Are you able to ePrint with the machine when you send emails to it? Have you every been able to successfully download apps to the machine without getting the error message? Do the apps that you download successfully download at any time after that error and later work?
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • Why do I get "Error 1 occured at Config Data Registry.vi(get data) invalid object 0" while starting my application?

    Why do I get "Error 1 occured at Config Data Registry.vi(get data) invalid object 0" when starting my application created in LabVIEW 7.1?  I am starting the application in a PXI rack running Windows XP.  I have an executable written in LabVIEW 7.0 that runs without this error.  After clicking the Continue button in the error, the application seems to continue happily.
    Is there something I need to include when I make the executable?
    I would like to understand and eliminate this start up error.
    Thanks in advance.
    BobNorth

    Hi Bob,
    I looked through the program and I figured out where the error is coming from, and potentially what is causing it. In a lot of the cases of the program you are searching a 1-D array for the name of the case, and if you don't find it then it skips the function and gives "Error 1 occurred at Config Data Registry.vi(CASENAME) invalid object 0". I attached a screenshot that shows what I mean. The Search 1-D Array.vi is returning a -1 which means it didn't find the case. The reason I believe this is happening is because the shift register for that array is not initialized. While the other cases "reset" and "register" interact with the array shift registers and most likely create the array you need, if the program defaults to the "get data" case then it will try to run that before registering and won't have an array to search. This would also explain why it only has this problem at first and seems to run just fine after that. To fix this you should either make an initial array and wire it into the shift register or make the "reset" case the default as opposed to the "get data" case.
    Regards,
    Peter W.
    Attachments:
    Config Data Registry.png ‏55 KB

  • Why do I get Error 32812?

    I wrote a VI, which worked perfectly.
    After addressing the cFP from the network instead of from the PC, some Read tags gave Error 32812.
    For one of them I deleted them and wrote them again, and the error was recovered. But then it appeared for another module.
    From MAX I can perfectly read the channels. I also tried to "find items" again.
    What could be the reason and the cure?
    thanks
    Francesca

    Dear Francesca,
    quite a few documents exist on your problem.
    I'd start checking into them.
    You can use the keyword 32812in the "seach"  field in www.ni.com and find 
    Why Do I Get Error -32812 When I Read or Write to a cFP-180x from a cFP-2xxx?
    http://digital.ni.com/public.nsf/allkb/80A4EF3A7A1784D6862573F4000B20C5
    Why Do I Get Error 32812 From Some FieldPoint Modules But Not Others?
    http://digital.ni.com/public.nsf/allkb/9DB72AFCBC02D7D986256FC10055D65B
    Error 32812 From FieldPoint VIs
    http://digital.ni.com/public.nsf/allkb/02EB73D02715981A8625682B00774F8F
    Best regards  
    FiloP
    It doesn't matter how beautiful your theory is, it doesn't matter how smart you are. If it doesn't agree with experiment, it's wrong.
    Richard P. Feynman

  • Why do I get "error on page" when I try to contact anyone at apple anywhere?

    Why do I get "error on page" when I try to contact itunes billing support?

    Yes, I have NI-Watchdog  2.1.5 installed on my FP.
    In fact, I figured out what the Error-22011 problem was all about and I'm almost too embarrassed to say. I had Watchdog Configure.vi inside a while loop... so only the first iteration would be error free and for every iteration after that, the hardware would be "already in use". Hence, Error-22011.
    I've made it over that hurdle, but I'm still having problems.
    Now,I have both Watchdog Configure.vi and Watchdog Clear.vi outside the while loop and I put Watchdog Whack.vi inside the while loop (mainly to monitor the watchdog status output). I also wired the occurrence output of Watchdog Configure.vi to a second while loop in which there is a wait for occurrence.vi wired to a boolean indicator.
    If I disconnect the ethernet cable while this vi is running, the program pauses and I get a Labview generated message informing me of a lost connection however, there is no occurrence generated and the watchdog stays in "running" status.
    Apparently, I've misunderstood how to implement the watchdog vi's and I'll need someone to set me straight.
    Is there anyone who can help?
    Thanks,
    pmac

  • Why do I get error -42408 when I tried to download my recent purchases?

    Can someone tell me why do I get error -42408 when I tried to download my recent purchases?

    See this document iTunes: "Error 42408" or "Error 42404" after ... - Support - Apple
    Make sure you have upgraded to the latest iTunes version.

  • Can't get iPhone 4s out of recovery mode and always get error 40 during restore

    I tried updating to ios 6.1.2 and I left it for a while since I had to do some stuff. When I came back, my iPhone is in recovery mode and I can't get it to restore using itunes. I always get error 40. I tried restoring on a different pc but it's still a no go. Is it possible that this has something to do with the hardware? I've already looked up possible solutions but my iphone's still in recovery mode. I never had this phone opened nor did I attempt to jailbreak it or anything. I tried asking my carrier for assistance but they're charging me for repairs. The fee's pretty expensive.

    Read here:
    http://support.apple.com/kb/ts3694#error40
    Usually caused by security software on your computer.

  • Why am I getting error code 1402 when trying to update adobe reader 10?

    Why am I getting error code 1402 when trying to update adobe reader 10?

    Impossible to guess the "why" with so little information, but this may be helpful if you want to solve the problem: Error 1402 | Error 1406 | Acrobat, Reader

Maybe you are looking for

  • How can I change the default image editor in OS 9?

    I'd like to open some jpgs (that I created in OS 10.7), but my OS 9 PBook is alerting me that the Photoshop cannot be found. It then presents me with a list of programs to open it with (Pshop is shown there and I can open the file this way or through

  • Advantages and disadvantages of having 2 controlling areas.

    Dear All. My client have 2 company codes and will use same fiscal year variant and chart of account. so we recommend for one contrilling area. But my client wants some document or wants to know the advantages and disadvantages of having 2 controlling

  • Unable to deploy EJB

    Hello, I'm try to runing an aplication on weblogic and now I stuck on this issue. Could anyone help me to solve this? Exception activating module: EJBModule(ejb.jar) Unable to deploy EJB: DrawingPhaseSessionEJB from ejb.jar: [EJB:011008]Unable to bin

  • Web gallery upload problem - the server switched to FTPS and now Bridge CS6 won't recognize it.

    I use Bridge CS6 on a Mac to create & upload web galleries directly to my website. My web server just changed and they no longer support FTP, only FTPS. When I try to upload a web gallery now, Bridge gives me the message that my username/password is

  • ITunes double click problem (query bug)

    With the recent iTunes update 7.7.1(11), I noticed that when switching between iTunes (esp. when it is in the compact mode) and other apps, a single mouse click in iTunes is often interpreted as a double click. This leads to distress when I try to pa