Runtime.exec( )..can't find file

Hi,
i'm passing the path of a file to runtime.exec()
but yet it's searching for the file in the working directory.
exec is getting the following
String [] command=new String[2];
command[0]=new String(applicationToExecute);
command[1]=new String(fileName);
try {
Process child = run.exec(command);
}catch(){}.....
applicationToExecute="mspaint.exe"
fileName="c:\temp\time.jpg"
However,
it searches the working directory (directory which my program is running from) for "time.jpg".
any ideas?
help would be appreciated!
finbarr
it searchs

Try to provide the full path to the command and use the forward slash instead of the backslash -- like this:
String [] command=new String[2];
command[0]=new String("C:/Program Files/Accessories/mspaint.exe);
command[1]=new String("C:/temp/time.jpg");
If that still doesn't work, then try this:
String [] command=new String[3];
command[0]=new String("command.com"); // or just cmd on XP
command[1]=new String("C:/Program Files/Accessories/mspaint.exe);
command[2]=new String("C:/temp/time.jpg");
V.V.

Similar Messages

  • Can not find file must locate each song one at a time need to restore my whole library

    can not find file, must locate each song one at a time need to restore my whole library

    Hello BadSteve,
    It sounds like iTunes seems to have lost track of all your music and you must locate each file individually. I would recommend at this point that you check for 3rd party plugins to see if there are any causing an issue:
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/kb/ts3430
    If the issue persists after removing the plugins, I would next try recreating your iTunes library:
    iTunes: How to re-create your iTunes library and playlists
    http://support.apple.com/kb/ht1451
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • I am trying to install itunes 10.5.1 but it can't find file IXP609.TMP where can i get this

    i am trying to install itunes 10.5.1 but it can't find file IXP609.TMP so stopping the upgrade.   how do i upgrade itunes?  I tried uninstalling but it can't find another file 389 so I can neither uninstall nor reinstall.  Any thoughts please?

    Hi Rick,
    by "repair" I mean I went to the control panel, option - programs and features, and in the list of all my installed programs I selected "Apple Software Update". On top of the screen you find the options Uinstall, Change and Repair. I clicked the repair button and that did the trick. After the repair I could uninstall the program. I also uninstalled iTunes, Apple Application Support, Apple Mobile Device Support en Bonjour, thus all Apple programs. Then I installed iTunes 10.5 again and everything went fine.
    Success,
    Peter

  • SEVERE: null : Can't find file '/WEB-INF/tiles-defs.xml'

    I'm trying to get Tiles to work with Struts on my server. I'm running a local instance of Tomcat v5.5. Development environment is Eclipse. I"ve looked everywhere on the web and can't find any solutions that work. I've been working on this for several days now. It shouldn't be this hard...
    I appreciate any help or suggestions people might have. I would really like to get beyond the configuration $#!^ and start coding.
    Thanks in advance!!!
    Jim
    Here are snippets from the pertinent files:
    web.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>
         admin</display-name>
         <welcome-file-list>
              <welcome-file>index.html</welcome-file>
              <welcome-file>index.htm</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>default.html</welcome-file>
              <welcome-file>default.htm</welcome-file>
              <welcome-file>default.jsp</welcome-file>
         </welcome-file-list>
         <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>
                   org.apache.struts.action.ActionServlet
              </servlet-class>
              <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>          
         </servlet-mapping>
         <jsp-config>
              <taglib>
                   <taglib-uri>struts-bean</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-logic</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-html</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>struts-tiles</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/struts-tiles.tld</taglib-location>
              </taglib>
              <!-- The following tag library info was added for JSTL libraries. -->
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/fmt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/fmt-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/c.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/core-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/c-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/sql.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/sql-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/sql-rt.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/x</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/x.tld</taglib-location>
              </taglib>
              <taglib>
                   <taglib-uri>http://java.sun.com/jstl/x-rt</taglib-uri>
                   <taglib-location>/WEB-INF/tlds/x-rt.tld</taglib-location>
              </taglib>
         </jsp-config>
    </web-app>
    struts-config.xml:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
    "/WEB-INF/dtds/struts-config_1_2.dtd">
    <struts-config>
         <!-- ============================================ Data Source Configuration -->
         <data-sources />
         <!-- ================================================ Form Bean Definitions -->
         <form-beans>
         </form-beans>
         <!-- ========================================= Global Exception Definitions -->
         <global-exceptions />
         <!-- =========================================== Global Forward Definitions -->
         <global-forwards />
         <!-- =========================================== Action Mapping Definitions -->
         <action-mappings>          
              <action path="/foobar" forward="/createAccount.jsp" />
         </action-mappings>
         <!--
         ============================================= Controller Configuration
         <controller contentType="text/html; charset=UTF-8" />
         ======================================== Message Resources Definitions
         <message-resources
              parameter="com.xilinx.web.registration.struts.res.ApplicationResources" />
         =============================================== Plug Ins Configuration -->
         <!--======================================================= Tiles plugin -->
         <!--
              This plugin initialize Tiles definition factory. This later can takes some
              parameters explained here after. The plugin first read parameters from
              web.xml, thenoverload them with parameters defined here. All parameters
              are optional.
              The plugin should be declared in each struts-config file.
              - definitions-config: (optional)
              Specify configuration file names. There can be several comma
              separated file names (default: ?? )
              - moduleAware: (optional - struts1.1)
              Specify if the Tiles definition factory is module aware. If true
              (default), there will be one factory for each Struts module.
              If false, there will be one common factory for all module. In this
              later case, it is still needed to declare one plugin per module.
              The factory will be initialized with parameters found in the first
              initialized plugin (generally the one associated with the default
              module).
              true : One factory per module. (default)
              false : one single shared factory for all modules
              - definitions-parser-validate: (optional)
              Specify if xml parser should validate the Tiles configuration file.
              true : validate. DTD should be specified in file header (default)
              false : no validation
              Paths found in Tiles definitions are relative to the main context.
         -->
              <plug-in className="org.apache.struts.tiles.TilesPlugin" >
              <set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
              <set-property property="definitions-debug" value="2" />
              <set-property property="definitions-parser-details" value="2" />
              <set-property property="definitions-parser-validate" value="true" />
              </plug-in>
         <!-- =================================================== Validator plugin
         <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
              <set-property property="pathnames"
                   value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" />
         </plug-in>
         -->
    </struts-config>
    tiles-defs.xml (in the WEB-INF directory as are the other xml files...):
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE tiles-definitions PUBLIC "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"     
                                                 "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <tiles-definitions>
         <definition name="Tiles.register" page="/tiles/template.jsp">
              <put name="header" value="/tiles/header.jsp" />          
              <put name="body" value="/register.jsp" />
              <put name="footer" value="/tiles/footer.jsp" />
         </definition>
    </tiles-definitions>
    Console output when starting the server:
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.17
    Jul 7, 2006 11:36:41 AM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    Jul 7, 2006 11:36:43 AM org.apache.struts.tiles.xmlDefinition.I18nFactorySet initFactory
    SEVERE: null : Can't find file '/WEB-INF/tiles-defs.xml'
    Jul 7, 2006 11:36:43 AM org.apache.struts.tiles.TilesPlugin initDefinitionsFactory
    SEVERE: Can't create Tiles definition factory for module ''.
    Jul 7, 2006 11:36:43 AM org.apache.struts.action.ActionServlet init
    SEVERE: Unable to initialize Struts ActionServlet due to an unexpected exception or error thrown, so marking the servlet as unavailable. Most likely, this is due to an incorrect or missing library dependency.
    javax.servlet.ServletException: null : Can't find file '/WEB-INF/tiles-defs.xml'
         at org.apache.struts.tiles.TilesPlugin.initDefinitionsFactory(TilesPlugin.java:233)
         at org.apache.struts.tiles.TilesPlugin.init(TilesPlugin.java:137)
         at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:869)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:336)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3917)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4201)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
    Jul 7, 2006 11:36:43 AM org.apache.catalina.core.ApplicationContext log
    INFO: Marking servlet action as unavailable
    Jul 7, 2006 11:36:43 AM org.apache.catalina.core.StandardContext loadOnStartup
    SEVERE: Servlet /admin threw load() exception
    javax.servlet.UnavailableException: null : Can't find file '/WEB-INF/tiles-defs.xml'
    I have the following jars in my Web App Libraries (WEB-INF/lib):
    standard.jar
    commons-fileupload.jar
    antlr.jar
    struts.jar
    commons-beanutils.jar
    commons-logging.jar
    commons-validator.jar
    myswl-connector-java-3.1.12-bin.jar
    struts-el.jar
    jstl.jar
    commons-digester.jar
    Struts is version: 1.2.9.
    JRE / JDK: 1.5.0_06 (Program files shows I have JRE 1.5.0_05 in the tree as well)
    Note: Struts will work if I comment out the tiles plug-in in the struts-config.xml file.

    you don�t call o files-defs.xml in jsp?

  • I get itunes can't find file when I tried to play a TV show I had purchased that was supposed to be in the cloud. There are several of these, including an entire season. In the store it shows that I purchased these shows when I checked them.

    I get itunes can't find file when I tried to play a TV show I had purchased. I then checked and had this problem with an entire TV season I had purchesed. The shows were supposed to be in the cloud. I went to the itunes store, went to the tv shows and they showed that I had purchesed them. They do not show up when I click on purchesed in the store.

    Try this...
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • Upgraded to 6.01 & "can't find file" appears

    I upgraded to Ilife 6 and DVD made in V4 open with the message "can't find file". I upgraded to 6.01 and still have this message. How do you fix this problem.
    thanks,

    teit:
    You're getting that message because iDVD uses links to iPhoto's library folder system for the photos in the iDVD project. Since V6 has changed that folder system iDVD has lost it's links and cannot find the files. Unless you only have one or two files to re-link, doing it manually is impossible. iDVD 6.0.1 was supposed to fix that problem but apparently not for you. At this point, you may not be able to recover the project unless you have a backup copy of your V4 library that you can put in the Pictures folder for iDVD to find and use.

  • Trying to export RAW originals from Aperature 3 to LightRoom 4: I choose File Export Originals. I think then Pictures LR. But then I can't find files in LR library.Files seem stuck in Pictures as NEF

    Trying to export RAW originals from Aperature 3 to LightRoom 4: I choose File>Export>Originals. Then Pictures>LR. But then I can't find files in LR library.Files seem stuck in Pictures as NEF and or DNG files. I know Im stuck on something dumb but I am stuck. Help?

    You now need to import those files into Lightroom.
    BTW, Lightroom uses a "referenced" system so your images will always be in the folders you download/copy them to. Lightroom is a database first and foremost, albeit with non-destructive editing capabilities (effectively Adobe Camera Raw).

  • Can't find file to sync photos - why not?!?

    I recently re-organised my photos on my PC & changed the file location for the photos to sync to my iPod. I reconnected the iPod & it went through to organise the photos in a new photo cache as I would expect...but then when it went to actually move the pictures onto the iPod, I get told 'can't find file' and so it does not sync
    I can see the pics in the cache, the location of the photos on iTunes is right, but they don't seem to talk to each other & so nothing happens
    anyone seen this before or have any suggestions??
    thanks
    Ian

    ok one more question
    The file syncing issue now seems to be resolved & the ipod connects to the PC without too much argument now
    the only outstanding issue is that I have seom videos within my pictures. Previously these existed within the Pictures folder, but I could still play them
    However now this doesn't happen & in the Pictures folder I just get the first frame of the video, without being able to play them. I don't know why suddenly it won't play them
    They are all in mp4 format. as most are home videos I wanted to keep them in the Pictures folder rather than move them into the official Videos section
    thanks

  • HT1451 I am trying to restore my playlists that disappeared yesterday. I have followed these instructions but when I get to step 7, I can't find File Library Import playlist. What am I missing?

    I am trying to restore my playlists that disappeared yesterday. I have followed the instrutions on the support page but when I get to step 7, I can't find File>Library>Import Playlists. What am I missing?

    I suspect the menus have changeed slightly since that document was written...
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping.  Note that in iTunes 11 an "empty" library may show your past purchases with links to stream or download them.
    In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    Alternatively, depending on exactly when and why the library went missing, there may be a more recent .tmp file in the main iTunes folder that can be copied & renamed as iTunes Library.itl to restore the library to an earlier state. Look for a recent .tmp file that is similar in size to the .itl files in the Previous iTunes Libraries folder. If it has happened repeatedly you may want the earliest such file generated since the last iTunes upgrade.
    If applicable, see iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device.
    I've noticed more of these missing library posts of late and a common factor to most since I started asking is AVG Anti-Virus. It seems in some cases it might be at least part of the reason why the library file disappears. Try excluding the iTunes folder from any AV scanning process.
    tt2

  • I can not find File "Import to Library" in iPhoto.

    I can not find File> "Import to Library" in iPhoto.

    Nevermind. After I sent this I found it in the File on the banner tab at the top of my screen.

  • Where can I find file manager, to manage files for my iPad Air?

    Where can I find file manager, to manage files for my iPad Air?

    There are some apps that allow for a decent amount of file management on the iPad! depending on what you want to do. Take a look at some of these.
    http://appadvice.com/appguides/show/best-iPad-file-managers

  • When exporting to Photoshop can not find files

    I have a drive that when I export an image to Photoshop it can not find the files. Any suggestions on getting them to read?

    I'm using MAC OS 10.49 the latest. I have 9 external hard drives. I can bring in all thumb nail images from all drives and as I update meta data it changes on all drives. But when I go to edit a specific image in Photoshop any image from this one drive and only this one drive I get error message "can not find file". If go out of Lightroom and into Bridge I can see the image and launch it in photoshop. It only happens so far with this one drive. I have several of the same manufacture drives. Does this help!

  • Windows can not find ' FILE ': error.

    I have downloaded and installed the production version of SQL Developer. (1.0.0.14.67)
    Windows XP SP 2.
    When I started it for the first time I checked all the file association check boxes.
    If I double click on a .sql file the following windows error occurs:
    Windows can not find '<file>'. Make sure you typed the name correctly, and then try again. To Search for a file, click the Start button, and then click search.
    SQL Developer does startup. The error message is closed when the OK button is selected.
    Any Ideas?
    Regards;
    Robert

    Hi Robert,
    Just to confirm, SQL Developer does actually open the file. The only issue is the error message displayed. I have logged a bug for that.
    There is a work around until that is sorted. If you use explorer to associate the file types with SQL Developer, they open without this error.
    Regards
    Sue

  • Emca -config dbcontrol db + Can't find file emoms.properties

    HI,
    Recently we upgradated the database from oracle 11.2.0 to 11.2.0.3 afte that i am unable to start the oem
    now i am configuring the dbcontrol by the following command:
    emca -config dbcontrol db
    but getting the error
    Please enter repository password:
    Exception caught
    Feb 13, 2013 12:04:54 PM oracle.sysman.emcp.util.PlatformInterface executeCommandExitValue
    CONFIG: stty: standard input: Invalid argument
    stty: standard input: Invalid argument
    Can't find file /orahome/oracle/product/11.2.0.3/db_1/youtele_pindb/sysman/config/emoms.properties
    java.lang.IllegalStateException: Can't find file /orahome/oracle/product/11.2.0.3/db_1/youtele_pindb/sysman/config/emoms.properties
            at oracle.sysman.emSDK.conf.ConfigManager.processProperties(ConfigManager.java:1154)
            at oracle.sysman.emSDK.conf.ConfigManager.processProperties(ConfigManager.java:1127)
            at oracle.sysman.eml.sec.rep.EmKeyUtil.<init>(EmKeyUtil.java:111)
            at oracle.sysman.eml.sec.rep.EmKeyUtil.main(EmKeyUtil.java:507)
    log4j:WARN No appenders could be found for logger (sec.rep.EmKeyUtil).
    log4j:WARN Please initialize the log4j system properly.
    Feb 13, 2013 12:04:54 PM oracle.sysman.emcp.util.DBControlUtil copyEmkeyToRepos
    SEVERE: Error copying Em Key to Management Repository. The Em Key is not configured properly or is corrupted in the file system and does not exist in the Management Repository. To correct the problem:
    1) Copy the emkey.ora file from another OMS or backup machine to the /orahome/oracle/product/11.2.0.3/db_1/sysman/config and run following commands:
    i) /orahome/oracle/product/11.2.0.3/db_1/bin/emctl config emkey -emkeyfile /orahome/oracle/product/11.2.0.3/db_1/sysman/config/emkey.ora  -force
    ii) /orahome/oracle/product/11.2.0.3/db_1/bin/emctl  config emkey -copy_to_repos
    iii) Run EM Configuration Assistant again
    2) If emkey.ora is not available from backup, run /orahome/oracle/product/11.2.0.3/db_1/bin/emca with -repos create optionAppreciated inputs on the above errors
    Thanks

    actually the above error provide with solutions also.

  • Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back?

    Photos 10.10.3 will not let me play or move my videos and keeps sending a message saying "can not find file". What do I do to get the videos back? It is only during videos that I previously uploaded off my phone. It loads them and tells me how long they are but when I go to press play it says can not find file. I have restarted my computer, what else can I do?

    Check the information on the song, Right-Click -> Get Info.
    In the fist pane, (Summary), you will see the AppleId (Account Name) that was used to buy the song.
    Be sure to login to use this account to register this computer to play the song
    What I often see, Is that people have many different AppleID, sometime not even knowing it, which is a big problem.

  • HT204088 I installed iphone 5 from iTunes backup but still have one app showing [ ! ] not installed can not find file . How do I get rid of this pop up

    I installed iphone 5 from itunes back up and get a pop up [ ! ] app not installed can not find file. I have looked through everything that have with "CANADA" in the app title. That is the only info there is.

    If you haven't found out which app it is then if you go into list view in the Apps part of your library do any of the apps have an exclamantion mark against them ? If they do then they are the one(s) that iTunes can't find the actual app file(s) for - if you delete that app from your library then if it is still in then you should be able to re-download it via the Purchased link under Quicklinks on the right-hand side of the iTunes store homepage on your computer's iTunes, or you can just download it directly on your phone via the Purchased tab in its App Store app

Maybe you are looking for

  • How can I share printers using a non apple router, imac to ipad?

    Newbie in osx, but experienced in linux. My new imac has 3 printers setup for sharing, but ipad 2 / iphone 4 fail to see them.  I am using the belkin router that I owned already, instead of buying an Airport. I found a solution at askubuntu.com Q 261

  • My ipod touch is stuck in recovery mode..i have tryed eveything,plz help

    i have tuned eveything off and back on . i tunes is still in recovery mode. the Ipod is either froze on the Apple or is on the connect to itunes screen...

  • Failed to start HTTP server while installing companion CD

    Hi all, I am installing apex 3.1.2 (though it is old version, clients are still using it :) ), on the oracle 10.2.1 database. I am installing HTTP servers from the companion CD and getting error while starting HTTP server from the configuration assis

  • Fax PO attachments along with general header data using smartforms

    Hi all, I have a requirement which is as follows in ECC 6 system. When the purchase order is sent to the vendor through fax, it should also include the attchemnts that are in the Purchase order along with the general header data for the purchase orde

  • Samsung HT-Z310 Help

    I am lookiing into getting this system - wondering if anyone has comments or has this system.  I have read a few things not great about wireless surround sound - We don't know anything about it and don't want to make it harder than it has to be just