Apache 2, Tomcat 4 and Oracle's XSQLServlet not working together

Hi
I cannot even get the basic demos in ./demo/java/xsql to work with this combination of technologies.
I am running this on Red Hat Linux 8. Apache and Tomcat work fine, the CLASSPATH is set and I have created the Alias etc.
I believe that the .xsql type is not being processed by my XSQLServlet, because calling up http://localhost/xsql/ brings up 3 raw xsql files in the browser.
All the documentation I have found describes using XSQL with older Apaches and JServ. JServ is now replaced by Tomcat and Tomcat 4 is much different from earlier versions of Tomcat. Despite that I believe I have guessed and made the correct changes to httpd.conf and web.xml to make the XSQLServlet work.
Has anyone got these to work ? I've been at this for days and am driven half mad by it ! All that has kept me at it is that this seems like a magnificent combination of technologies. Many thanks in advance... for any advice at all.
- Des

AndyRTR wrote:Please check the new libreoffice version in testing. It should work with openjdk6 and jre7-openjdk. Not sure if closed
Oracle jre7 from AUR will also get detected.
Thanks for the info. Yaourt -Syu will be my friend
Java7 is recognized, great. Too bad java web plugin could be blacklisted because of security matters.
Last edited by fredbezies (2011-10-05 14:58:07)

Similar Messages

  • TableLayout and lov OAMessageLovInputBean is not working together

    Hi
    I am trying to make work a messageLovInput in tableLayout.
    The field and torch icon is rendered correctly. When I click on torch icon the lov window is opened.
    The torch onClick is working because controller class processFormRequest is executed but lov window does not open.
    I tried to change a tableLayout to advancedTable then the lov window opened and was working.
    This is not a option because the page seeded page in OA.
    Also I tried to use exactly same messageLovInput as search page field there it was also working.
    Any hints why lov is not working with tableLayout?
    Xml file looks like
    <oa:tableLayout childViewUsageName="InfoTemplatesDisplayVO" childViewAttrName="AttributeCode1" addChildren="true" controllerClass="oracle.apps.icx.por.req.webui.InfoTemplateRNCO" ....
    <oa:messageLovInput id="LOV1" viewName="InfoTemplatesDisplayVO" viewAttr="AttributeValue1" externalListOfValues="/oracle/apps/icx/lov/webui/InfoTempLOVRN">
    <jrad:lovMappings>
    <jrad:lovMap lovItem="Value" id="lovValueMap1" resultTo="LOV1" criteriaFrom="LOV1"/>
    <jrad:lovMap lovItem="FlexValueSetId" id="lovFlexValueSetIdMap1" criteriaFrom="FlexValueSetId1" programmaticQuery="false"/>
    </jrad:lovMappings>
    </oa:messageLovInput>
    Regards
    Ranno

    1. If its a seeded page, and its not working, why can't you raise an SR?Customization on top seeded page.
    2. I felt a bit confused
    "When I click on torch icon the lov window is opened."
    "The torch onClick is working because controller class processFormRequest is executed but lov window does not open."
    Does clicking on torch window, opens lov window or it doesn't open?If field is inside the tableLayout then clicking on torch window does not open the lov window.
    If field is outside of tableLayout then clicking on torch window does not open the lov window.

  • ProLoader and TLF TextFields do not work together!

    I'm using ProLoader to load a .swf that uses TLF.  The master .swf loads the target .swf and all code executes as expected with one minor glitch: the content of the loader is white/blank.  Has anyone else seen this!?
    ~~~~~~~~~~~~~~~~~~~~~~~~
    Here is the full bug report that I tried to send Adobe, but they cap reports at 2000 characters and provide no option for uploading a source .zip. (Seriously, Adobe?)  If you have time, and follow my instructions you will see how ProLoader won't even load a .swf with TLF on its stage.  (Yes, I realize this different from my problem, but I'd like to demonostrate how buggy and inconsistent ProLoader is.  The simple solution would be not to use TLF, and mostly likely, I will end up doing that.)
    ******BUG******
    ProLoader loads .swf with TLF, but ProLoader is blank.
    Steps to reproduce bug:
    1.  Download sample files (http://helpx.adobe.com/content/dam/kb/en/141/tn_14190/attachments/Load_External_SWF.zip) from the Tech Note, Load external SWF into another SWF (http://helpx.adobe.com/flash/kb/load-external-swf-swf.html).
    2.  Open ExternalSWF.fla and assign it a document class.
    Here is mine:
    package  {
              import flash.display.MovieClip;
               import flash.events.Event;
              public class ExternalSWF extends MovieClip {
                        public static var DATA_LOAD_COMPLETE:String = "ExternalSWF_DataLoadComplete";
                        private var data_:String;
                        public function ExternalSWF() {}
                        //This function will be called from the .swf that loaded me.
                        public function loadData(data:String):void
                                  data_ = data;
                                  dispatchEvent(new Event(DATA_LOAD_COMPLETE));
                        public function get data():String { return data_; }
    3.  On ExternalSWF.fla's stage, change a classic TextFields into a TLF TextField.
    4.  In Loader_Movie.fla, change all flash.display.Loader instances to fl.display.ProLoader in order to load TLF TextFields.  Also, add an event listener to myLoader for Event.COMPLETE.  Here are my Loader_Movie.fla's Actions:
    import flash.events.Event;
    import fl.display.ProLoader;
    var myLoader:ProLoader = new ProLoader();                     // create a new instance of the ProLoader class
    var url:URLRequest = new URLRequest("ExternalSWF.swf"); // in this case both SWFs are in the same folder
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, myLoaderIsLoaded);
    myLoader.load(url);                                     // load the SWF file
    addChild(myLoader);                                     // add that instance to the display list, adding it to the Stage at 0,0
    myLoader.x = 10;                                        // move the loaded SWF 10 pixels to the right (from the left edge)  
    myLoader.y = 175;                                       // move the loaded SWF 175 pixels down from the top
    // (optional) load a second external SWF file
    var my2ndLoader:ProLoader = new ProLoader();
    var url2:URLRequest = new URLRequest("ExternalSWF2.swf");
    my2ndLoader.load(url2);
    addChild(my2ndLoader);                                  // optionally, you could put the 2nd SWF beneath
                                                            // the 1st by using addChildAt(my2ndLoader, 1);
    // (optional) scaling of the 2nd SWF file
    my2ndLoader.scaleX = 2;                                 // scale the SWF horizontally by 200%
    my2ndLoader.scaleY = 2;                                 // scale the SWF vertically by 200%
    function myLoaderIsLoaded(event:Event):void
              trace("The first .swf has loaded so add event listeners");
              var swf:ExternalSWF = ExternalSWF(myLoader.content);
              swf.addEventListener(ExternalSWF.DATA_LOAD_COMPLETE, allFinished);
              swf.loadData("foobar");
    function allFinished(event:Event):void
              trace("Here is the data we loaded: " + ExternalSWF(myLoader.content).data);
    Results:
    [Trace] Output
    ReferenceError: Error #1056: Cannot create property __id0_ on ExternalSWF.
              at flash.display::Sprite/constructChildren()
              at flash.display::Sprite()
              at flash.display::MovieClip()
              at ExternalSWF()
    ExternalSWF is invisible; 4 loading dots appear instead.
    Expected results:
    Both .swfs load without incident.
    Trace output:
    The first .swf has loaded so add event listeners
    Here is the data we loaded: foobar
    Additional notes:
    I discovered this bug when my main/master .swf used ProLoader to load another .swf (with TLF on a symbol in the libary).  In this case, the ProLoader appeared blank/white, not even the 4 loading dots.  However, all the code in both .swfs still ran as expected (shown via the Output panel dumping all expected trace statements until execution finished).
    Environment:
    Adobe FLash Professional CS5.5, Version 11.5.1.349
    (bug discovered while running "Test Movie" in IDE)
    Windows 7 Professional Service Pack 1
    Intel(R) Core(TM)2 Duo CPU  E4600 @ 2.40GHz  2.39 GHz
    RAM: 6.00 GB
    64-bit Operating System

    Do you have anything that uses TLF in your preloader? It's possible that the TLF framework has made your preloader so heavy that it merely appears to not be doing anything, but the actual case is that all that stuff has to load before it can show you anything.
    You may find this helpful http://jeffkamerer.com/blog/2010/08/12/using-a-custom-preloader-loop-with-tlf-text/
    However, I don't really understand why you feel you have to use TLF to bring in the text from Photoshop. I think you must mean PhotoShop PSD's, because PhotoShop PNG's will not contain editable text (though Fireworks ones can). I get Photoshop comps all the time and bring the text in as Classic Text. While it's not an exact match 100% of the time, it's as close a match as you're going to get based on the limitations of Classic text. I think there's no reason for your designers to be redoing the designs--you just need to play around with the import settings and figure out what gets you close and then what tweaks you need to do to get closer.
    And, to answer your question, nearly everyone creates graphics for Flash files in Photoshop, despite Fireworks being the better tool. For whatever reason, designers often aren't very adventurous when it comes to learning new tools, and nearly all art schools teach PhotoShop.
    I also don't have any trouble loading CS5.5 AS3 swfs (no TLF--I just don't need the hassle) with Document Classes using an ordinary Loader. So I think there's something not right about what you're doing if you've come to the conclusion that you can't load a swf with a Document Class. Try scaling back to the bare minimum, then working up.
    Finally, I just don't "get" why people do two things that you're doing (or, I do, but I think it's unnecessary and a colossal failure on Adobe's part)
    Instantiating everything through code. Not only are you wasting an inordinate amount of time/code in specifying layout, you also completely lose the natural capability of Flash to compile assets throughout the whole of the swf. This means you have to have a preloader, because literally everything you ever use is embedded before the first visual frame. Contrast to using the timeline, where all you need to load the visuals for the first frame is the Document Class (which you can keep light by coding to Interfaces) and the visuals for the first frame. Anything else you need to load, you can defer to the frame that you've selected for embedding your AS Classes on.
    Using a preloader at all.
    My preloading strategy is very simple. I put a spinner graphic in the first frame, with the word "Loading." The playhead will stop at the frame that I've specified to use for exporting my ActionScript Classes (10--this provides enough space for the label "Loading" to be readable). When the embedded Classes and whatever is needed to display frame 11 is loaded, the playhead will continue to frame 11 by itself, with no code. On Frame 11, I have a MC that is a named instance, and I have a getter/setter pair to catch it. When the setter triggers, I know I'm ready to start the logic.
    However, you could do all sorts of things, like just putting a MC there that "is" the entirety of your other logic (has what is now the Document Class of the swf you're preloading as its BaseClass).
    Anyway, maybe something in my ramble will help you.

  • MGCP and H.323 gateways not working together

    We have a 3640 in Mexico defined to our Call Manager here in Atlanta as a H.323 gateway. Also in the same Call Manager is a T1 PRI defined to our PBX as a MGCP gateway. When people in Mexico call phones connected to our PBX we get one way conversations. We have a couple of other H.323 to MGCP gateways situations that don't work. It seems the two are not compatible. Has anyone else ran into this. If so, what was your solution.

    According to your description, I believe that you have a topology like the following diagram.
    MexicoPSTN---?---3640---h.323---CCM---mgcp---gateway?---PRI---PBX
    You didn't mentioned what type of circuit you had between the 3640 and the telco in Mexico or the type of gateway used for MGCP in Atlanta.
    However, there should be no problems with this type of configuration causing one-way audio.
    In this case CallManager talks H.323 to the 3640 in Mexico and talks MGCP to the gateway in Atlanta for the call control. When a call is placed from a PSTN phone in Mexico to a PBX phone in Atl, the call setup will first take place via H.323 between the 3640 and CCM and via MGCP b/w the Atl gw and CCM. After the call setup is complete, the audio stream should be connected directly between the 2 endpoints (ie 3640 gateway and the Atl gateway).
    You should check for IP connectivity between the Mexico 3640 and the Atl router. Note, the call setup could complete successfully b/c both devices can reach the CCM, but can they reach each other when CCM steps out of the picture?
    The following URL will also provide more good info on troubleshooting one-way audio.
    http://www.cisco.com/en/US/tech/tk652/tk698/technologies_tech_note09186a008009484b.shtml
    Hope this helps.
    Shane

  • Aiport Extreme and Airport Express are not working together with DSL

    My 2wire modem failed and I have replaced it with a basic actiontec dsl modem. I have my airport extreme connected to the actiontec via ethenet cable. All is working. Internet access through the actiontec is working and internet access through the extreme is working. What I cannot for the life of me remember how to do is get my express to work as a range extender for airport extreme.
    The extreme is set up in Ethernet not PPPoE mode which might be the issue, but I can't remember the right settings (IP ranges, etc) if I set it up in PPPoE mode.
    Net - my network that was working DSL modem to Extreme to Express as a range extender no longer works at the Express end. And don't even get me started about AT&T tech support. Help smart guys/girls out there - I know this is something simple that I should have written down when I first set up my network...

    shakeelium wrote:
    Good People,
    I have an Airport Extreme serving as my wireless router with an external hard drive connected to it.  I also have an Airport Express in another room connected to a stereo for Airplay.  Neither can be found on the Airport Utility (v5.5.3), but wireless internet still works.  This happens often, with both reappearing in Airport Utility for short amounts of time periodically.
    I've once had the same problem.
    The reason for that issue is the frequency (radio band) hopping of the station.
    On your AP-Extreme
    Enter the manual setup
    Disable Guest Network if not desperately needed
    Set a dedicated name for the 5GHz wireless (wireless -> wireless options)
    Eventually change the radio mode (if no 802.11b/g systems in your home) to "only 802.11n (5GHz) - only 802.11n (2.4GHz)" by holding down the option key *alt* while clicking on the drop down.
    On your Mac
    Disable (switch off) wireless
    Enter system configuration -> network -> wireless
    Uncheck "Ask to join new networks"
    Enter advanced options and check that your wireless name is in the first position of the list. If not, drag it with the mouse to the first position.
    Click apply
    Join your wireless again and try to connect to the 5GHz name (SSID) because the 5GHz will improve the connection speed of your Mac remarkably.
    Eventually you might change the settings on the Express too.
    Check the location of the AP-Extreme.
    It should NOT be placed: On the floor, in a corner, behind furniture, near metal objects, life high voltage wire or cordless phone bases.
    It should be placed: As high as possible (up on a shelf or ceiling mounted) with a maximum line of sight to all stations, even thru walls.
    If your home situation allows that, try to use the 5GHz band only. If you own a iPhone this must use the 2.4GHz radio.
    Lupunus

  • PLEASE HELP ME!!!! USTREAM PRODUCER and MY SOUND MIXER NOT WORKING TOGETHER

    Currently I am using ustream producer. I have a sony video camera plugged into my Macbook Pro via firewire 800. I would like to be able to use my very nice sound mixer with my xlr headsets. The only problem I've run into is that in Ustream Producer I can't overlay the sound from my soundmixer over my camera feed.
    Can Ustream Producer not recognize a sound mixer?????
    I have already asked this question on the ustream forums and tried contacting ustream directly, but neither one has helped me out yet.
    I'm using a 13 inch MacBook Pro.
    Please, someone help me out, this is getting very frustrating.

    Satellite A105-S4334 
    These are your options.
    1. Obtain an installation CD for some version of Windows that handles the NTFS file system (NT, 2000, XP, Vista, 7) and install it in parallel to a different folder on the same partition. See (for example) KB266465.
    2. Create a bootable CD with another OS and tools on it. See BartPE, Knoppix, UBCD4Win, and Ubuntu.
    3. Remove the hard drive and place it in an enclosure accessible from a desktop via USB.
    For the last option, see the first few steps here.
    -Jerry

  • Custom 404 cfm pages, and ColdFusion flash forms not working together

    Hi,
    I've recently ran into an issue that I was hoping I could have a little help with. My company has been using custom 404 pages for awhile that we set up in iis however we had never set up this custom 404 page to display on .cfm pages, only missing folders. Ie; www.website.com/asdasdasdsd/ would display a custom 404 error But www.website.com/asdasdasdsd.cfm would not. I recently set this up by going in the iis properties for our site, went to the home directory tab click on configuration and selected edit from the mappings tab. From here I checked the verify that file exists open. This enabled the file.cfm custom error to appear however for some reason it disabled all of my ColdFusion flash forms. None of them appear now. If I undo the iis setting that I changed earlier they all re-appear. I got these settings from http://kb2.adobe.com/cps/000/95ee04fb.html and they do the job, they just disable my flash forms. Is there any way to do this without them disabling my flash forms from working?
    Thanks!
    Paul Alkema

    Hi Paul,
    Did you ever receive an answer to this (old) post?  I'm having the same problem myself.
    Thanks,
    Michael

  • Ultra NX and Skype or MSN not working together

    I can't get Skype or MSN to work any more, I get a message to download the patch CTPatch.exe. When I down the patch and execute the exe nothing happens? Any help would be greate.

    That wasn't the answer for me, but it led me to the right solution.
    It seems SKYPE changed the default sound output location. I normally use my SPEAKERS but it changed it to my HP monitor (which also had audio out). Once I changed the default back to my speakers, I was in business. I am not sure how this affects SKYPE usage in the long-run, but at least all my videos play as I expect.
    Below is the screenshot for Windows 7 64-bit:
    Start > Control Panel > Sound

  • Mac OSX 10.9 (Mavericks) and D110 PhotoSmart Scanner not working together

    My HP Scanning Software for my D110 PhotoSmart printer stopped working with the upgrade on my IMac from 10.6.8 (Snow Leopard) to 10.9 (Mavericks).  Help!  I don't want to have to use something like VueScan and abandon HP.  I really need to be able to save scanned documents to disk, and right now my scanner won't let me save scanned pages.

    Hello all,
    I see that you are having issues scanning in MAC OX 10.9. The problem is that there are no drivers available for the D110 for Mavericks at the moment. The first link below will bring you to another page in the forums that will show you an alternate way of scanning.
    http://h30434.www3.hp.com/t5/Scanning-Faxing-and-Copying/Problems-scanning-with-HP-printer-and-Maver...
    This second link will take you to the download page for your printer. Keep checking back there to see if there are drivers available. There are still newer printers then yours that don't have drivers, so you will have to be patient.
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&dlc=en&lang=en&lc=en&product=4023246&
    Thank you,
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Iphone and windows 8 does not work together

    Can't sync iphone 3GS or 4 with windows 8. Anybody have a solution for this?

    Helo there mark44o,
    It sounds like you are having some difficulty getting your phones synced to your PC with Windows 8 on it. If you are syncing in the manner outlined in the following article, would you mind ellaborating on what is happening when you try to sync?
    iOS: Syncing your data with iTunes
    http://support.apple.com/kb/ht1386
    Is there some sort of error message? Does iTunes hang? Is it even seen in iTunes?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • HT5706 I am trying to set up Apple TV with my Uverse WiFi, but I get errors when entering my password.  One site said that Apple TV doesn't work with WPA which Uverse uses.  Is there anyway around this or will Uverse and Apple TV just not work together.

    Trying to set up Apple TV with ATT Uverse.  I get errors when trying to enter my WiFi password.  One site says that Apple TV doesn't work with Uverse because it uses WPA for encryption.  If true, does that mean Uverse subscribers cannot use Apple TV?

    Spurs63 wrote:
    does that mean Uverse subscribers cannot use Apple TV?
    No, that's a rather silly conclusion.
    There are two options:
    stop using the crappy router provided by the ISP.
    Physically connect the ATV to the router via Ethernet.

  • Running both Tomcat and Oracle !

    Can anyone tell me how to setup Tomcat and Oracle on the same machine so that they both can be accessed through port 80.
    I am using Tomcat 5.0.24 and Oracle 9i.
    I would be glad if anyone can send me links to useful resiurces !!!
    Thanks !!!!

    Hi,
    Thank you much for your reply.
    Right now I am running my Tomcat on port#7000. I want it to run on port#80 because my network admin has set firewall on port#7000.
    Do u know anyway of connecting Tomcat and oracle so that they both can run on same port or is there any other way out ?????
    Thanks !!!

  • Security and privacy system preferences not working after Lion install.  What to do?

    Security and privacy system preference not working after Lion install.  Not sure if it happen with Lion installer or after updating. What to do?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    Third-party system modifications are a common cause of usability problems. By a “system modification,” I mean software that affects the operation of other software — potentially for the worse. The following procedure will help identify which such modifications you've installed. Don’t be alarmed by the complexity of these instructions — they’re easy to carry out and won’t change anything on your Mac.
    These steps are to be taken while booted in “normal” mode, not in safe mode. If you’re now running in safe mode, reboot as usual before continuing.
    Below are instructions to enter some UNIX shell commands. The commands are harmless, but they must be entered exactly as given in order to work. If you have doubts about the safety of the procedure suggested here, search this site for other discussions in which it’s been followed without any report of ill effects.
    Some of the commands will line-wrap or scroll in your browser, but each one is really just a single line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, and you can then either copy or drag it. The headings “Step 1” and so on are not part of the commands.
    Note: If you have more than one user account, Step 2 must be taken as an administrator. Ordinarily that would be the user created automatically when you booted the system for the first time. The other steps should be taken as the user who has the problem, if different. Most personal Macs have only one user, and in that case this paragraph doesn’t apply.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Terminal in the page that opens.
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign (“$”) or a percent sign (“%”). If you get the percent sign, enter “sh” (without the quotes) and press return. You should then get a new line ending in a dollar sign.
    Step 1
    Copy or drag — do not type — the line below into the Terminal window, then press return:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}'
    Post the lines of output (if any) that appear below what you just entered (the text, please, not a screenshot.) You can omit the final line ending in “$”.
    Step 2
    Repeat with this line:
    sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix)|edu\.mit|org\.(amavis|apache|cups|isc|ntp|postfix|x)/{print $3}'
    This time, you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning.
    Note: If you don’t have a login password, you’ll need to set one before taking this step. If that’s not possible, skip to the next step.
    Step 3
    launchctl list | sed 1d | awk '!/0x|com\.apple|edu\.mit|org\.(x|openbsd)/{print $3}'
    Step 4
    ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Spo,Sta}* L*/Fonts 2> /dev/null
    Important: If you synchronize with a MobileMe account, your me.com email address may appear in the output of the above command. If so, anonymize it before posting.
    Step 5
    osascript -e 'tell application "System Events" to get name of every login item' 2> /dev/null
    Remember, steps 1-5 are all drag-and-drop or copy-and-paste, whichever you prefer — no typing, except your password. Also remember to post the output.
    You can then quit Terminal.

  • Thanks for responding.  Since I upgraded ITUNES to IOS 6, my IPOD Touch no longer works at all.  I had numerous apps, music and videos on this touch.  It made me restore to factory reset and it still does not work!!! Nothing I do will work on this touch n

    Thanks for responding. Since I upgraded ITUNES to IOS 6, my IPOD Touch no longer works at all. I had numerous apps, music and videos on this touch. It made me restore to factory reset and it still does not work!!! Nothing I do will work on this touch now. I have so much data on this, I don't want to loose or have to restore!
    Can you help me?
    Thanks

    If you restored to factory settings/new iPod and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
    Apple Retail Store - Genius Bar

  • TA44551 My 1-year ipod nano locked up and would not start overnight. The on/off button will not work and stopped holding charge. No water damage, no fall, nothing unusual. I restored it (twice) but it will still not hold charge and on/off does not work.

    My 1-year ipod nano locked up and would not start overnight. The on/off button will not work and stopped holding charge. No water damage, no fall, nothing unusual. I restored it (twice) but it will still not hold charge and on/off does not work. I tried to restore it again and charged it in three different locations with different cables. etc but nothing. Suggestions?

    - After charging for 1/2 hour or so, does iTunes see the iPod?  If yes, restore the iPod from backup.
    - If no, se if placing the iPod in recovery mode will make it visible so you can restore the iPod.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

Maybe you are looking for

  • Table control : Need to change Single field as non editable

    Hi Experts,                 Plz help me out. In a table control there r 7 fields and only one field is editable. When i change the status of a record as delete in tat table control, only the deleted record (all fields)should become non-editable. Is i

  • Cd drive reads but doesn't burn

    soo..another woe with my work emac... so a couple weeks ago i noticed that my emac no longer will burn cds....the thing is, everything else about it is fine, it will read cds and let me import things off of them..it just won't let me burn... when i i

  • What are the tables needed for Payslip ?

    Hi All, I am making a smart form of Payslip. But i don't know which tables to be used.Can you please update me on this? Thanks, Vimal

  • How to put phone # in favorites?

    How so I put a phone # into favorites, old system was easy it asked.

  • Need to uninstall and reinstall, but my dvd/cd reader is inoperative

    Hi! My photoshop elements (version 9) says I need to uninstall and reinstall (error code 6), but my cd player no longer works.  Can I download it from the site?  Also, not sure of my activation code.