Xsl document() cannot find resources..

I am running SS 11gr1
I have an xsl tranform that requires an external document for lookups. However, I cannot figure out how to load the document, relative to the current project (or composite)...
<xsl:variable name="uom_lookup" select="document('uom_lookup.xml')"/>
The xsl documentation says that should work, however in my SS logs I get the following:
java.net.MalformedURLException: no protocol: uom_lookup.xml
However, when I add the protocol, as in document('file:///uom_lookup.xml'), the logs say:
java.io.FileNotFoundException: \uom_lookup.xml (The system cannot find the file specified)
How would I load a document stored in the same location as my stylesheet (or anywhere in my project)?
Thanks for any help!

Hi,
Why are you using dynamic SQL to create a directory?. Just create the directory and grant the appropiate privileges to your user to read (and maybe write).
Use all_directories view to check that the directory is created and user_tab_privs_recd view to check the privileges granted to the user over that directory.
And don't use SYS user, create another user and grant some privieleges to do the tasks.
Example of checking privileges (my directory is called EXT_FILES):
Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
Connected as hr
SQL> select * from all_directories;
OWNER                          DIRECTORY_NAME                 DIRECTORY_PATH
SYS                            EXT_FILES                      C:\EXT_FILES
SQL> select * from user_tab_privs_recd where table_name = 'EXT_FILES';
OWNER                          TABLE_NAME                     GRANTOR                        PRIVILEGE                                GRANTABLE HIERARCHY
SYS                            EXT_FILES                      WFERNANDEZ                     READ                                     NO        NO
SYS                            EXT_FILES                      WFERNANDEZ                     WRITE                                    NO        NO
SQL> Regards,
Edited by: Walter Fernández on Jul 26, 2009 2:30 PM
Edited by: Walter Fernández on Jul 26, 2009 2:32 PM

Similar Messages

  • Cannot find resource ' on Solaris Platform

    Hi:
              I have two weblogic server running one on NT works find second on Solaris I
              can find index.html and that all.
              Went I try to run one of the sample jsp no luck on the solars , NT no
              problem
              I get this error message from the Solaris
              Sat Jun 24 13:35:24 EDT 2000:<E> <ServletContext-General> Cannot find
              resource '
              snoop' in document root '/opt/weblogic/myserver/public_html'
              The correct files are the dir comparie to NT
              I am owner !
              # WEBLOGIC JHTML PROPERTIES
              # Sets up automatic page compilation for JHTML. Adjust init args for
              # directory locations and uncomment to use.
              weblogic.httpd.register.*.jhtml=\
              weblogic.servlet.jhtmlc.PageCompileServlet
              weblogic.httpd.initArgs.*.jhtml=\
              pageCheckSeconds=1,\
              packagePrefix=examples.jhtml,\
              compileCommand=/usr/jdk1.2.2/bin/javac.exe,\
              workingDir=/opt/weblogic/myserver/classfiles,\
              verbose=true
              # WEBLOGIC JSP PROPERTIES
              # Sets up automatic page compilation for JSP. Adjust init args for
              # directory locations and uncomment to use.
              weblogic.httpd.register.*.jsp=\
              weblogic.servlet.JSPServlet
              weblogic.httpd.initArgs.*.jsp=\
              pageCheckSeconds=1,\
              compileCommand=/usr/jdk1.2.2/bin/javac.exe,\
              workingDir=/opt/weblogic/myserver/classfiles,\
              verbose=true
              Thank You In advance
              David L. Wasler
              [email protected]
              

    Hi:
              Found problem, Solaris doesn't use .EXE works fine.
              Thank You for your great help.
              David L. Wasler
              [email protected]
              Wei Guan wrote in message <[email protected]>...
              >Still, this is your configuration problem. Please find the location of your
              >javac (not javac.exe) and replace it with /usr/jdk1.2.2/bin/javac.exe in
              >your JSP configuration in weblogic.properties.
              >
              >--
              >Cheers - Wei
              >
              >
              >David L. Wasler <[email protected]> wrote in message
              >news:[email protected]...
              >> Hi:
              >>
              >> I used the source setEnv.sh and complie from
              >> myserver/public_html/examples/servlet/*.java no problems.
              >>
              >> Went I try to invoke Hellowworld.jap I get can't find java.exc
              >>
              >> Here my error message
              >>
              >> Mon Jun 26 07:52:02 EDT 2000:<I> <ServletContext-General> Generated java
              >> file: /
              >>
              >opt/weblogic/myserver/classfiles/jsp_servlet/_examples/_jsp/_HelloWorld.jav
              a
              >> Mon Jun 26 07:52:02 EDT 2000:<E> <ServletContext-General> Compilation of
              >> /opt/we
              >> blogic/myserver/classfiles/jsp_servlet/_examples/_jsp/_HelloWorld.java
              >> failed: j
              >> ava.io.IOException: /usr/jdk1.2.2/bin/javac.exe: not found
              >> at java.lang.UNIXProcess.forkAndExec(Native Method)
              >> at java.lang.UNIXProcess.<init>(UNIXProcess.java, Compiled Code)
              >> at java.lang.Runtime.execInternal(Native Method)
              >> at java.lang.Runtime.exec(Runtime.java, Compiled Code)
              >> at java.lang.Runtime.exec(Runtime.java, Compiled Code)
              >> at weblogic.utils.Executable.exec(Executable.java, Compiled Code)
              >> at weblogic.utils.Executable.exec(Executable.java, Compiled Code)
              >> at
              >> weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvo
              >> ker.java, Compiled Code)
              >> at
              >> weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java,
              >> Compiled Code)
              >> at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java,
              Compiled
              >> Code)
              >> at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java,
              >> Compiled Co
              >> de)
              >> at
              >> weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
              >> java, Compiled Code)
              >> at
              >> weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              >> pl.java, Compiled Code)
              >> at
              >> weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
              >>
              >>
              >> Thank You very much
              >>
              >> David L. Wasler
              >> [email protected]
              >>
              >> Robert Patrick wrote in message <[email protected]>...
              >> >Make sure that setEnv.sh is exporting the CLASSPATH environment
              variable.
              >> Also,
              >> >you need to source setEnv.sh not execute it. For example,
              >> >
              >> >% . ./setEnv.sh
              >> >
              >> >Hope this helps,
              >> >Robert
              >> >
              >> >"David L. Wasler" wrote:
              >> >
              >> >> Hi:
              >> >>
              >> >> Here is my output after I run setEnv.sh
              >> >>
              >> >> ============= Setting Environment ================
              >> >> Starting Java 2
              >> >> ******************************
              >> >>
              >>
              >/usr/jdk1.2.2/lib/tools.jar:/opt/weblogic/license:/opt/weblogic/classes:/op
              t
              >> >> /web
              >> >>
              >>
              >logic/lib/weblogicaux.jar:/opt/weblogic/eval/cloudscape/lib/cloudscape.jar:
              >> >> opt/
              >> >> weblogic/myserver/clientclasses:/opt/weblogic/myserver/serverclasses
              >> >> *******************************
              >> >> WL_HOME=/opt/weblogic
              >> >> JAVA_HOME=/usr/jdk1.2.2
              >> >> CLIENT_CLASSES=/opt/weblogic/myserver/clientclasses
              >> >> SERVER_CLASSES=/opt/weblogic/myserver/serverclasses
              >> >> SERVLET_CLASSES=/opt/weblogic/myserver/servletclasses
              >> >>
              >>
              >PATH=/usr/jdk1.2.2/bin:/opt/rational/clearcase/bin:/usr/bin:/usr/ccs/bin:/u
              s
              >> >> r/X/
              >> >>
              >>
              >bin:/usr/openwin/bin:/usr/bin/X11:/usr/sbin:/usr/bin:/opt/rational/clearcas
              e
              >> >> /bin
              >> >>
              >>
              >:/bin:/usr/local/bin:/usr/local/bin/sparc-sun-solaris2.6:/usr/java/bin:/opt
              >> >> orac
              >> >> le8/8.1.5/bin:/opt/oracle8/8.1.5/lib:./
              >> >>
              >>
              >CLASSPATH=/usr/jdk1.2.2/lib/tools.jar:/opt/weblogic/license:/opt/weblogic/c
              l
              >> >> asse
              >> >>
              >>
              >s:/opt/weblogic/lib/weblogicaux.jar:/opt/weblogic/eval/cloudscape/lib/cloud
              s
              >> >> cape
              >> >>
              >>
              >.jar:/opt/weblogic/myserver/clientclasses:/opt/weblogic/myserver/serverclas
              s
              >> >> es
              >> >>
              >>
              >LD_LIBRARY_PATH=:/usr/X/lib:/usr/openwin/lib:/usr/dt/lib:/opt/oracle8/8.1.5
              >> >> lib:
              >> >> /opt/weblogic/lib/solaris/oci815_8:/opt/weblogic/lib/solaris
              >> >> ==================================================
              >> >>
              >> >> Wei Guan wrote in message <[email protected]>...
              >> >> >Open your setEnv.sh, make sure $WL_HOME/lib/weblogicaux.jar is in
              >your
              >> >> >CLASSPATH. After you run setEnv.sh, do a "echo $CLASSPATH", double
              >check
              >> >> >weblogicaux.jar is CLASSPATH.
              >> >> >
              >> >> >Hope it helps.
              >> >> >
              >> >> >--
              >> >> >Cheers - Wei
              >> >> >
              >> >> >
              >> >> >David L. Wasler <[email protected]> wrote in message
              >> >> >news:[email protected]...
              >> >> >> Hi:
              >> >> >>
              >> >> >> I think I found the problem went I try to compile from the dir were
              >> >> >> snoop.jsp
              >> >> >> which is /opt/weblogic/myserver/public_html/examples/servlets
              >> >> >> I using the same setEnv.sh
              >> >> >>
              >> >> >> I get the following error message
              >> >> >>
              >> >> >> bash-2.03$ pwd
              >> >> >> /opt/weblogic/myserver/public_html/examples/servlets
              >> >> >> bash-2.03$ javac SnoopServlet.java
              >> >> >> SnoopServlet.java:26: Package javax.servlet not found in import.
              >> >> >> import javax.servlet.*;
              >> >> >>
              >> >> >> It telling me, there no path to the WL weblogicaux.jar in my
              >setEnv.sh
              >> or
              >> >> >> startWeblogic.sh
              >> >> >>
              >> >> >> If you can provide additional information, that would be great.
              >> >> >>
              >> >> >> Thank You in Advance
              >> >> >> David L. Wasler
              >> >> >> [email protected]
              >> >> >>
              >> >> >> Wei Guan wrote in message <[email protected]>...
              >> >> >> >snoop is a servlet. Did you register snoop in your
              >> weblogic.properties?
              >> >> >> >
              >> >> >> >Cheers - Wei
              >> >> >> >David L. Wasler <[email protected]> wrote in message
              >> >> >> >news:[email protected]...
              >> >> >> >> Hi:
              >> >> >> >>
              >> >> >> >> I have two weblogic server running one on NT works find second
              on
              >> >> >Solaris
              >> >> >> >I
              >> >> >> >> can find index.html and that all.
              >> >> >> >>
              >> >> >> >> Went I try to run one of the sample jsp no luck on the solars ,
              >NT
              >> no
              >> >> >> >> problem
              >> >> >> >>
              >> >> >> >> I get this error message from the Solaris
              >> >> >> >> Sat Jun 24 13:35:24 EDT 2000:<E> <ServletContext-General> Cannot
              >> find
              >> >> >> >> resource '
              >> >> >> >> snoop' in document root '/opt/weblogic/myserver/public_html'
              >> >> >> >>
              >> >> >> >> The correct files are the dir comparie to NT
              >> >> >> >>
              >> >> >> >> I am owner !
              >> >> >> >>
              >> >> >> >> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
              >#
              >> >> >> >> # WEBLOGIC JHTML PROPERTIES
              >> >> >> >> # ------------------------------------------------
              >> >> >> >> # Sets up automatic page compilation for JHTML. Adjust init args
              >> for
              >> >> >> >> # directory locations and uncomment to use.
              >> >> >> >> weblogic.httpd.register.*.jhtml=\
              >> >> >> >> weblogic.servlet.jhtmlc.PageCompileServlet
              >> >> >> >> weblogic.httpd.initArgs.*.jhtml=\
              >> >> >> >> pageCheckSeconds=1,\
              >> >> >> >> packagePrefix=examples.jhtml,\
              >> >> >> >> compileCommand=/usr/jdk1.2.2/bin/javac.exe,\
              >> >> >> >> workingDir=/opt/weblogic/myserver/classfiles,\
              >> >> >> >> verbose=true
              >> >> >> >>
              >> >> >> >>
              >> >> >> >>>> >> Thank You In advance
              >> >> >> >>
              >> >> >> >> David L. Wasler
              >> >> >> >> [email protected]
              >> >>
              >> >> >> >>
              >> >> >> >> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
              >#
              >> >> >> >> # WEBLOGIC JSP PROPERTIES
              >> >> >> >> # ------------------------------------------------
              >> >> >> >> # Sets up automatic page compilation for JSP. Adjust init args
              >for
              >> >> >> >> # directory locations and uncomment to use.
              >> >> >> >> weblogic.httpd.register.*.jsp=\
              >> >> >> >> weblogic.servlet.JSPServlet
              >> >> >> >> weblogic.httpd.initArgs.*.jsp=\
              >> >> >> >> pageCheckSeconds=1,\
              >> >> >> >> compileCommand=/usr/jdk1.2.2/bin/javac.exe,\
              >> >> >> >> workingDir=/opt/weblogic/myserver/classfiles,\
              >> >> >> >> verbose=true
              >> >> >> >>
              >> >> >> >>
              >> >> >> >> Thank You In advance
              >> >> >> >>
              >> >> >> >> David L. Wasler
              >> >> >> >> [email protected]
              >> >> >> >>
              >> >> >> >>
              >> >> >> >>
              >> >> >> >>
              >> >> >> >
              >> >> >> >
              >> >> >>
              >> >> >>
              >> >> >
              >> >> >
              >> >>
              >> >> David L. Wasler wrote in message <[email protected]>...
              >> >> >Hi:
              >> >> >
              >> >> >I have two weblogic server running one on NT works find second on
              >> Solaris I
              >> >> >can find index.html and that all.
              >> >> >
              >> >> >Went I try to run one of the sample jsp no luck on the solars , NT no
              >> >> >problem
              >> >> >
              >> >> >I get this error message from the Solaris
              >> >> >Sat Jun 24 13:35:24 EDT 2000:<E> <ServletContext-General> Cannot find
              >> >> >resource '
              >> >> >snoop' in document root '/opt/weblogic/myserver/public_html'
              >> >> >
              >> >> >The correct files are the dir comparie to NT
              >> >> >
              >> >> >I am owner !
              >> >> >
              >> >> ># # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
              >> >> ># WEBLOGIC JHTML PROPERTIES
              >> >> ># ------------------------------------------------
              >> >> ># Sets up automatic page compilation for JHTML. Adjust init args for
              >> >> ># directory locations and uncomment to use.
              >> >> >weblogic.httpd.register.*.jhtml=\
              >> >> > weblogic.servlet.jhtmlc.PageCompileServlet
              >> >> >weblogic.httpd.initArgs.*.jhtml=\
              >> >> > pageCheckSeconds=1,\
              >> >> > packagePrefix=examples.jhtml,\
              >> >> > compileCommand=/usr/jdk1.2.2/bin/javac.exe,\
              >> >> > workingDir=/opt/weblogic/myserver/classfiles,\
              >> >> > verbose=true
              >> >> >
              >> >> >
              >> >> >
              >> >> >
              >> >> ># # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
              >> >> ># WEBLOGIC JSP PROPERTIES
              >> >> ># ------------------------------------------------
              >> >> ># Sets up automatic page compilation for JSP. Adjust init args for
              >> >> ># directory locations and uncomment to use.
              >> >> >weblogic.httpd.register.*.jsp=\
              >> >> > weblogic.servlet.JSPServlet
              >> >> >weblogic.httpd.initArgs.*.jsp=\
              >> >> > pageCheckSeconds=1,\
              >> >> > compileCommand=/usr/jdk1.2.2/bin/javac.exe,\
              >> >> > workingDir=/opt/weblogic/myserver/classfiles,\
              >> >> > verbose=true
              >> >> >
              >> >> >
              >> >> >Thank You In advance
              >> >> >
              >> >> >David L. Wasler
              >> >> >[email protected]
              >> >> >
              >> >> >
              >> >> >
              >> >> >
              >> >
              >>
              >>
              >
              >
              

  • Hi, I cannot access my I books, it says cannot find resource?

    Hi there, I cannot access my books on iBook . It says: cannot find resource. What can I do?

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • Cannot find resource

              Hi,
              I am trying to configure my WLS on NT. when I try to access the servlets/MyServlet packed into servlet_my.jar under c:/weblogic/myserver, I am getting a Cannot find resource servlets/MyServlet under c:/weblogic/myserver/public_html error.
              any help is appreiated,
              krishna
              

              thanks for your reply senthil.
              krishna
              Senthil Kumar S <[email protected]> wrote:
              >Dont give servlets/Myservlets
              >
              >Just give the virtual name u gave during registration . For eg if its MyServlet
              >
              >http://localhost:7001/MyServlet
              >
              >Krishna wrote:
              >
              >> The servlet is registered in weblogic.properties file...
              >>
              >> Senthil Kumar S <[email protected]> wrote:
              >> >did u register the servlet
              >> >
              >> >krishna wrote:
              >> >
              >> >> Hi,
              >> >> I am trying to configure my WLS on NT. when I try to access the servlets/MyServlet packed into servlet_my.jar under c:/weblogic/myserver, I am getting a Cannot find resource servlets/MyServlet under c:/weblogic/myserver/public_html error.
              >> >>
              >> >> any help is appreiated,
              >> >> krishna
              >> >
              >
              

  • Ios simulator cannot find resource file in avTouch sample app.

    Hi. I am trying to run the sample project avTouch in the iOS Simulator, and it cannot find the sound resource file sample. It compiles OK, launches, and when I click the Play button, it gives these errors in the iOS Simulator:
    2011-08-28 14:16:17.454 avTouch[962:6c03] Error '!dat' trying to set the (null) audio devices' sample rate
    2011-08-28 14:16:31.057 avTouch[962:207] Could not play file://localhost/Users/jonesbb/Library/Application%20Support/iPhone%20Simulator /4.3.2/Applications/20290DEF-8855-41E2-92D5-6CF06D6D58F4/avTouch.app/sample.m4a
    The file does exist at that location, and I can open it and play it in QuickTime.  I wonder if the path to that location may be the problem.  Is it supposed to use "%20" instead of spaces in the path?  Does the system resolve them into spaces?
    I am using MacOS 10.6.8 on a MacBook Pro, XCode 4.0.2, and compiling for iPhone 4.3 simulator.
    I've programmed a long time in other IDEs, but I'm new to XCode and all the libraries, so I'm probably missing something obvious here.  Any suggestions will be greatly appreciated.

    Additional info.  The app runs and displays the name of the sound file, and also displays the duration of the sound, so I think it is loading the file OK.  It gives the problem when I hit play.  I have a break point in this method, at [p play] below, and it gives the first error at that point.  The second error message is just reporting the result of the first error:
    -(void)startPlaybackForPlayer:(AVAudioPlayer*)p
        if ([p play])
            [self updateViewForPlayerState:p];
        else
            NSLog(@"Could not play %@\n", p.url);

  • Cannot find resource files to localize report

    Hello, i created report file in VS 2008 C#. Now the labels (not the data) of the report need to be localized.
    I have the files
    CrystalReport1.rpt
    CrystalReport1.cs
    in the solution, but cannot see resource file like
    CrystalReport1.resx
    linked to it.
    How can i create localized resources?
    Is there a Language property i cannot find?

    See this thread for more info:
    English resource files

  • Can't complete Thunderbird backup, cannot find resource 11684 ?

    Suddenly when I initiate MozBackup (version 1.5.1) to backup my Thunderbird files, as the processing bar comes to the end an error message pops up saying "Cannot locate resource 11684". When I click OK for this message, next error message says "Backup failed to complete".
    Tried looking up this issue on FAQ but nothing seems to come up explaining what "resource 11684" is all about ? Any help will be most appreciated.

    Was [http://mozbackup.jasnapaka.com/support.php#resource-missing this] the FAQ you read? Maybe running chkdsk would help, but in the meantime you can [https://support.mozilla.org/en-US/kb/profiles-tb#w_backing-up-a-profile back up your profile] manually.

  • Link to network document - cannot find file

    I have a report which needs to provide links to pdf files on a protected network resource.  Meaning that the user of the Crystal Report does not have native access to the network resource, not even read access.  Is there any way to configure the link to use something akin to a "run as admin" auth attribute, so that the general report user has access to the files via the Crystal report but not via other means?

    > the driver does not support XP  I'm not so sure about that, HP has a driver posted for XP.  What the rep may have meant to say is that they do not support the WinXP OS anymore.  If it works, great, if not then they wont get thier hands dirty.  The WinXP driver for this model was last updated in Aug 2014.  They must have supported WinXP up until then but no longer. If HP wont help you with the suggested full software solution then you may have to get by with an alternative print and scan driver.  For example try downloading a Universal Print Driver from http://support.hp.com.  You can pick any of the 3 options that are available (postscript, pcl5 and pcl6).  I suggest starting with PostScript. That leaves you with finding a compatible scan driver and scanning application for WinXP.  Hopefully the scanner object was successfully installed on your Device Manager.  If so then you can use any TWAIN scanning application to continue your scanning such as MS Word, Paint or Adobe products.  If the scanner did not install then you might be out of luck.  WinXP can sometimes find scanner drivers via updates but MS stopped supporting WinXP in April 2014.  Its unlikely you will find another compatible scan driver if you dont already have one.  The scanner driver files should still be in teh Full Software Solution under one of the folders even if the installer is having trouble finding them. The only downside is that free scan software usually cannot scan directly to PDF, you will have to resort to .Tiff instead.    

  • Flash Player: Installing Problem with Finding Resources

    I'm having a problem installing Flash Player. It will get 47% complete and stop. The error messages says: "Cannot find Resource".
    What resource is it looking for? And how can I fix this problem? Please, any help would be greatly appreciated.
    My computer is:
    A Compaq with
    Windows 7, is
    64-bit
    Thank you,
    Ren

    Please try to install using the appropriate installer from this link:
    http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#ins tall_in_a_firewall_proxy_server_environment

  • MB03-Accounting Document not find

    When I go into MB03, i click Accounting Document it pops up the yellow message which accounting document cannot find. Why can this happen?

    Hi Lucas
    If it is good return then your stock account should go down and GRIR account should be offset.  So surely there should be some accounting document.  Did you check whether the acct determination is properly configured? 
    By internal movement I mean the stock transfer between plants under the same cocd.
    Thanks
    Ashok

  • Error message "cannot open resource file" ID CS6

    CS6 InDesign, getting error message "cannot find resource file" Tried deleting prefs but didn't work.

    I'm sorry. I'm running OS 10.7.5 and had previous error messages about several plugins not loading due to color panel missing. Deleted prefs, added color panel back with Manage Extensions then got the "cannot open resource file" error. I know the error message above is different and I thought I had fixed it but somehow it didn't change when I updated my post. I also have a couple of old versions of CS on my computer and I don't know if I should uninstall those or if it doesn't matter. I don't know how to do that, either. I'm not very computer literate so every problem is difficult for me. Thank you.

  • I cannot uninstall or install itunes.  error is 'trying to use on a network resource that is unavailable'.  I cannot find a pth to any folders containning installation package itunes.msi.  Unable to download itunes since 2 updates ago and crashed com

    I cannot uninstall or install itunes.  error is 'trying to use on a network resource that is unavailable'.  I cannot find  path to any folders containing installation package itunes.msi.  Unable to download itunes since 2 updates ago and crashed computer.    Windows update as suggested in some posts does not assist either.
    Can anyone assist me?  Thank you so much

    Should the advice above not fix things for you...
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I am unable to call up a folder from my documents files in pages. I haven't accessed it in a while but did not delete it and now cannot find it either through finder or a search of all saved documents. Not in my trash either. Where did I hide it?!?

    I am unable to locate a folder in my document files in Pages. I haven't accessed it in several months and now cannot find it in the docs and folders when I go to "open an existing file ...", in finder, or the list of all saved docs. Can anyone suggest where I might have succeeded in hiding it? thanks!

    Try Find Any File (also available in the Mac App Store). This will find hidden & invisible files as well as those in the various Libraries.

  • My old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    my old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    Hello gpbondi,
    The following article provdies step-by-step instructions for downloading your purchases both in iTunes and on your devices.
    Download past purchases
    http://support.apple.com/kb/HT2519
    Cheers,
    Allen

  • I, work on dell laptop latitudes version 7, win 7 64 bit, ssd disk, 16 gb ram. i receive the error 12 This device cannot find enough free resources that it can use. please help

    I, work on dell laptop latitudes version 7, win 7 64 bit, ssd disk, 16 gb ram.
    i receive the error 12 This device cannot find enough free resources that it can use. please help

    1. You have placed problem in wrong forum, or use different Windows operating system
    2. Double check your resources, namely in Disk manager. What is free space on HDD?
    Regards
    Milos

Maybe you are looking for

  • Position to first field in a form WITHOUT JAVASCRIPT

    DOes anyone know how to position to a field in a form without using javascript OR is there code that can be used in JSP to tell whether the browser is javascript enabled and within that block, use javascript to position to the field.

  • Approver in Vacant Position

    Hi, This is related to Shopping Cart Approvals. I am not able to find Vacant Position of Approvers. Regards, Maruti

  • Update column in screen painter

    i have column in screen painter and i write data when i make enter it's dissapear why???

  • OOPS!! Reset Home Directory permissions

    I accidently reset my home permissions.  Now, I can't get into my home directory except as root.  What command can I do to make every file in my home to be read/write accesable ONLY to punkrockguy and root?

  • Any suggestion on tables?

    I have formated tables for a site and after testing them in various browsers they look great until they are uploded to a server. Any suggestions on how to solve this issue? Code: <table width="92%" border="0" cellpadding="0" cellspacing="0" id="toppl