Lost Tomcat, its database and all JSP and HTML files

I have mistakably uninstalled Tomcat from my machine, it removed the data I stored in the root including HTML and JSP files, I am using windows XP, Is there any way I can recover htem back, atlest the database and the JSP files? please Help

Also a good example of why you should develop apps in a separate directory structure and then deploy the WAR file to Tomcat.
You didn't have all your source code under Tomcat, did you?
You weren't using a source control system like CVS?
Oh, my. ;)
You will from now on, I'll bet.
%

Similar Messages

  • Its not at all startning and not giving any kind of error msg, and i restared pc many times and uninstall and installed many times, but still its not opening

    .its not at all startning and not giving any kind of error msg, and i restared pc many times and uninstall and installed many times, but still its not opening

    Also, if you downloaded earlier in the week, make sure you have the 37.0.1 updated that was released on Friday (I think).
    If needed, I suggest installing a slightly different way the next time:
    '''Clean Reinstall'''
    We use this name, but it's not about removing your settings, it's about making sure the program files are clean. As described below, this process does not disturb your existing settings. Do NOT uninstall Firefox, that's not needed.
    (1) Download a fresh installer for Firefox 37.0.1 from https://www.mozilla.org/firefox/all/ to a convenient location. (Scroll down to your preferred language.)
    (2) Exit out of Firefox (if applicable).
    (3) Rename the program folder
    ''(64-bit Windows folder names)''
    C:\Program Files (x86)\Mozilla Firefox
    to
    C:\Program Files (x86)\OldFirefox
    ''(32-bit Windows folder names)''
    C:\Program Files\Mozilla Firefox
    to
    C:\Program Files\OldFirefox
    (4) Run the installer you downloaded in #1. It should automatically connect to your existing settings.
    Any difference?
    Note: Some plugins may exist only in that OldFirefox folder. If something essential is missing, look in these folders:
    * \OldFirefox\Plugins
    * \OldFirefox\browser\plugins

  • How to find my lost iphone4 if someone erase all content and settings ?

    how to find my lost iphone4 if someone erase all content and settings ? there is way to find my iphone with serial number ?

    No. However, if your phone was running iOS 7.0 or higher, whoever erased it won't be able to re-activate it without knowinh your Apple ID/Password. Called Activation Lock, & the phone will be useless to whoever has it.

  • Will Migration Assistant application transfer my applications' settings and all my games' save file such as Spore and even ported games?

    Will Migration Assistant application transfer my applications' settings and all my games' save file such as Spore and even ported games?

    Hello:
    Will Migration Assistant application transfer my applications' settings and all my games' save file such as Spore and even ported games?
    I doubt if anyone can answer your question.  With a new Mac, setup assistant opens the first time the system is turned on.  One can also use migration assistant.
    I have used both for several years and have never "lost" any data.
    If you want to move, have a good backup and then do it.
    Barry

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • Trying to sync iPhone to pc but keeps getting internal device error on screen, also showing only 4gb size instead of 32gb. Uninstalled iTunes from pc and reloaded. Powered back up and all songs and info still in place. Anyone had this problem before?

    Trying to sync iPhone to pc but keeps getting internal device error on screen, also showing only 4gb size instead of 32gb. Uninstalled iTunes from pc and reloaded. Powered back up and all songs and info still in place. Anyone had this problem before?

    Doublechecking something Emcee. I see you've got Windows 7 x64, so I'm assuming you've got at least 4 GB of RAM. Do you also have an NVIDIA USB EHCI chipset on that PC? If so, see the following Microsoft document:
    [You encounter problems when you move data over USB from a Windows 7 or Windows Server 2008 R2-based computer that has an NVIDIA USB EHCI chipset and at least 4GB of RAM|http://support.microsoft.com/kb/976972]

  • HT201441 i forget the id and all things and i need to open my phone as a new one

    i forget the id and all things and i need to open my phone as a new one
    <Personal Information Edited by Host>

    Are you also having trouble with Find My iPhone Activation Lock? If so, you cannot bypass it. You will need Apple ID and password used to activate the iPhone originally. You can try this if you have forgotten: https://iforgot.apple.com/password/verify/appleid

  • How to move my entire iphoto library and all albums and mobileme galleries to my new tower?

    What is the best way to move my entire iphoto library and all albums and mobileme galleries to my new tower?
    I want to move it smoothly without hours of reconfiguring albums and Mobileme galleries.  Already have a timemachine backup of the older iMac with the iphoto library.

    Connect the two Macs together (network, firewire target mode, etc) and drag the iPhoto library intact as a single entity from the old Mac to the pictures folder of the new Mac - launch iPhoto on the new mac and it will open the library and convert it as needed and you will be ready move forward.
    LN

  • Database locking using JSP and Oracle database

    Dear All
    I am reading about how to do database locking in general and i want to implement these mechanisms using JSP pages and oracle database, but i have the following questions:-
    1.If i write a “select for update” quesry in the JSP page will it locks the record ? or it will not lock the record because the connection between the JSP pages and the server will be stateless in most online systems?
    2.If i write all my jave code in transaction , something like this:-
    • Begin transaction
    • Commit or
    • Rollback
    Then should i be worried about the locking issues or the database manger will handle the locking mechanisms to insure data integrity(and what the default mechanism (if any) that the oracle database manger use to do the locking)?
    3. If the answer for question 2 is no, then how can i handle the optimistic and the pentemistic locking using JSP pages?
    BR

    One way to solve this issue is as follows:
    * You add a new column to each database table called 'version' which is of int type.
    * Each time you alter any field in a record, you increament the version number.
    * When you read a record and display it, you store the version number in your code
    * when you go to update the record, you write your sql something like this:
    update person set firstName=? where personId=? and version=?
    Where the version is whatever you stored locally. If someone altered the record in the database while your
    end user was looking at it, the version numbers will not match and the sql statement will
    return zero as the number of records it altered. If its zero, inform the end user someone altered the record
    while he was looking at it and weather or not he wants to proceed.
    The chances of two people altering the same record in a table while both are logged in and viewing the same set of data is small so such collisions will be few.
    You only need transactions if you are updating more than one record at a time (in the same table or multiple tables).
    You dont need it for reading records if you use a single sql statement to read (for example: to join multiple tables).
    In general, you get a (pooled) connection, use it, and close it as quickly as possible in a try/catch/finally block. You dont hold onto it for the duration of the user's session. A book on JDBC should help clarify this.

  • How to find my lost iphone4 if someone erase all content and settings ? there is way to find my iphone with serial number ?

    how to find my lost iphone 4 if someone erase all content and settings ? there is any way to find my iphone with serial number or any other number to find it ? plese answer my 

    Answered here:
    https://discussions.apple.com/thread/5934691?tstart=0
    No matter how many times you ask, the answer still remains no.

  • Just accepted updates to my Blackberry Desktop and ALL Photo and video saved on the media manager have gone

    HI! I just accepted updates to my Blackberry Desktop andnow the whole Blackberry Desktop manager is treating me as if a new. And freaked out as all ALL Photo and video saved on the previous media manager as well as that media manager have gone- Its over 3 years worth of pics and video I have stored on the Blackberry Desktop that was there before the update
    Really freaked out as these pics are irrepalcable Would appreciate any advice Thanks
    Solved!
    Go to Solution.

    Hello,
    Have you checked to see if the pictures are located in your Documents folder by navigating to then on your computer system?
    What version of Desktop Software did you update to? Select the [?] is the top right corner and then select 'About BlackBerry Desktop Software'. Version 7.1.0.? or 7.0.0.? or 6.1.0.?

  • I have the following Imac and Iphoto 11 in Finder folder I upgrade the iphoto file  and  all the latest event files, can you help how to solve the problem? Thank you  Model Name iMac    Model Identifier:     iMa

    I have the following Imac and Iphoto 11 in Finder folder I upgrade the iphoto file  and I lost all the latest event files, can you help how to solve the problem? Thank you
    Model Name:     iMac
    Model Identifier:     iMac8,1   Processor Name:     Intel Core 2 Duo
    Processor Speed:     2.4 GHz

    http://support.apple.com/kb/HT2638?viewlocale=en_US&locale=en_US

  • HT4865 what happens when one of the ipods goes missing? and all iphones and pads are on same icloud account?

    had ipod touch set up with icloud advised after purchasing another ipod and iphone to put all on same icloud account which has been great. Now one of the ipods has stolen, icloud found it and located it. trouble is now every e-mail is sent to all devices and i cant think of a way to keep track of the stolen one without deleting account. i need to get this ipod back as it was bought for someone special and wants it back. dont want to claim from home insurance. Also they were all set up with same apple account. I can face time the ipod but does it ring on all?
    thanx

    I have phoned the police, they were very helpful and sent one police car to address of where the stolen one is suppose to be and anouthe police to my home address in the hope that when we send messages through icloud that the police can hear it. unfortunatly i dont know if both ipod are ringing. every e=mail ie this one also goes to both ipods.because they are both on same icloud and apple address. how can i still keep track on stolen ipod and change icloud id on the replacement.

  • The camera raw button in Adobe Bridge has quit working and all my camera raw files are hidden by a c

    The Camera Raw button in my Adobe Bridge has quit working and all my raw files are hidden by a cover that says PEF and has a camera raw icon on it.  I can open the files in camera raw if I double click on the file but I want to see the files and be able to use the camera raw button.  How can I fix it?

    This means you have not the correct ACR plug in to support your PEF files or no ACR plug in installed at all.
    In photoshop go to the menu Photoshop / About Plug ins / Camera Raw.
    Here should be showing the version number of your ACR plug in (only 1 version should show btw)
    Then go to this site and check wether your camera is listed and what minimal version you need to open the files:
    http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html

  • My keyboard and all screens and apps enlarges and then shrinks back to normal help

    I Think my iPhone 5s has a. Virus how do I check? All of a sudden the keyboard will in large and then shrimp to normal and enlarge again and shrimp to normal sometimes I can't even type or do anything due to the large size of everything on the phone

    Go to Settings > General > Accessibility > Zoom and turn this off.

Maybe you are looking for