Unix file path not working to retrieve file

I have an application I developed on a Windows machine to generate some XML and then later read it. Well when I generate on my Windows machine it works fine, and then I can read it with no problem. When I generate on the Unix machine, It works fine, but I can not read the file at all. The path is correct, the file is there, Java just can't read it for some reason, I get a FileNotFoundException. It gets the path from a properties file, then adds the filename to the path and tries to retrieve it. The path looks like this /pages/content/net/tool/Custom.xml and when I vi the file vi can read it fine. So anyone run across this before, not being able to read the file at all? To generate I use betwixt and to read I use digester.
Thanks in advance.

I am going to give you the output here, and all of the configuration info as well and the checkSlash method too. But I suspect what is happening is some kind of stream/os control is holding on to the file and not letting someone take a look at it in the application level. If it's not that then it's a permission issue, which I chmod'ed the file and made rw-rw-r-- (it was rw-r--r--)just like the files that already work. Also I winSCP'ed into the box and tried a simple overwrite with another file of the same name and got a permision denied.
my application level exception :
com.spectra.common.CommonException:
/pages/content/net/tool/OpFinderCategoryReview.xml 
(No such file or directory)
the real exception thrown by the application:
Caused by: java.io.FileNotFoundException:
/pages/content/net/tool/OpFinderCategoryReview.xml 
(No such file or directory)
/*this method checks the file name passed in and see if it leads
with a slash to cap on the end of the path from the properties file
which is /pages/content/net/tool/ */
private String checkSlash(String fileName) {
   if(fileName != null && !fileName.startsWith("/"))
     return "/"+fileName ;
   return fileName ;
/*I use betwixt to write out the XML for me and then I try and use it but it fails . this is the way I call betwixt */
try {
              WizardProduct wizProduct = (WizardProduct)request.getSession().getAttribute(PricingResources.WIZARD) ;
              String fileName = CommonUtil.checkSlash(this.createFileName(wizProduct)) ;
              int pageId = this.createPage(wizProduct,fileName) ;
              GenerateProduct genProduct = new GenerateProduct() ;
               Product product = genProduct.doExecute(wizProduct, pageId) ;
               PropertiesReader reader =  new PropertiesReader() ;
               String path = reader.getRepositoryProps().getProperty(PricingResources.REPOSITORY_DIR) ;
               FileWriter fileWriter = new FileWriter(new File(path + fileName));
               BeanWriter writer = new BeanWriter(fileWriter);
               writer.getBindingConfiguration().setMapIDs(false) ;
               writer.enablePrettyPrint();
               XMLIntrospector introspector = writer.getXMLIntrospector( );
             introspector.getConfiguration().setWrapCollectionsInElement(false);
               writer.write("product", product);
               writer.flush();
               writer.close() ;
               fileWriter.close() ;
/* The read file process works fine in every scenario EXCEPT when I generate a document from my application and then try to read it. The problem is not in reading it normally, it's reading it only on a Linux machine after I generate a doc, not on windows.
Thanks

Similar Messages

  • Windows Server 2012 - Printing using UNC path not working

    Hi,
    I have a problem printing using the printer's UNC path ("\\Server_Name\Printer_Hostname") to work with a web
    app hosted on IIS 8. With a windows forms application the UNC path is working fine and the app prints.
    With
    the web app I receive an error "The data area passed to a system call is tool small". 
    Also,
    in the event viewer under Applications and Services Logs -> Microsoft -> PrintService -> Operational, I receive the error "The print spooler failed to reopen an existing printer connection because it could not read the configuration information
    from the registry key S-1-5-82-1980832875-2702362896-1795126167-3622310632-1152289074\Printers\Connections. The print spooler could not open the registry key. This can occur if the registry key is corrupt or missing, or if the registry recently became unavailable."

    I have contacted IIS forum support.
    Please review the link: http://forums.iis.net/p/1213109/2079229.aspx?Re+Windows+Server+2012+Printing+using+UNC+path+not+working
    Their final response:
    Printing from ASP.NET using System.Drawing.Printing itself is a horrible approach, as this namespace was designed for Windows Forms only. The designers did not take everything about ASP.NET in mind, so any issue can happen. That can answer why the HP model
    works while the Samsung fails, as the HP one just "happens
    to work",
    http://msdn.microsoft.com/en-us/library/system.drawing.printing.printdocument.aspx
    Similarly, System.Printing was designed just for WPF.
    About which printing API to use in ASP.NET/IIS, there is no clear answer so far. Thus, your only resource is Microsoft support, who can perform further analysis (with their dedicate utilities and of course Windows source code) and might come across a solution
    to help you out. This is not a trivial scenario.

  • VI Search Path not working in LV2011 for VI Server Plug-ins with exe

    I have found what seems to be a problem with the search path when a LabVIEW 2011 built executable calls a Plug-in VI. 
    When the plug-in VI has subVI’s from vi.lib on its diagram the executable has to know where to find them.  Not all VI’s in vi.lib are part of the run time engine or the dll’s that may get generated as part of the build. The things you have to do to make plug-ins work for an executable are explained in several Developer Zone articles.   The article titled “How Can I Change or Set the VI Search Path for LabVIEW Executables” describes the ini file setting  viSearchPath.  When this is set to the vi.lib directory I have not encountered problems with previous versions up to and including LabVIEW 2010.
    I have come across an example in LabVIEW 2011 where it doesn’t work.  I have attached an example (I am using LV2011 SP1).  It demonstrates the basic plug-in architecture. Everything works in the development environment.  But it doesn’t work from a built exe.  I haven’t included the actual built exe in the zip file in case that causes a problem downloading it.  If you run the build spec from the src directory project file the exe should get generated in the bld directory.  The problem appears to occur when certain VIs from the analysis library are in the Plug-in.  In the example attached, the Plug-in VI is very simple but I have placed the troublesome SubVI on the diagram.  The VI in this example where there is a problem finding it is the Butterworth Filter VI.  I have placed it on the diagram in a conditional disable structure so it is easy to enable and disable.  When enabled and you run the test Plug-in VI the error 1003 is raised, meaning a subVI cannot be found in the dynamically called VI (for example see this post).  Note that a way round this may be to incorporate the Plug-in VI into the built exe but this shouldn't be necessary.  It’s not a problem with this specific filter VI, as it occurs for other VIs I try on the diagram.  However if you place an FFT VI on the diagram there is no problem.  I suspect that one is built into the Run-Time Engine.
    I also note I am running Win7 64 bit and 32 bit LabVIEW (note the relevant viSearchPath in the ini file – you may need to change if you are on different version of Windows).  If the example is converted to LabVIEW 2010 everything works as expected for the built exe.  I tried that on a colleague’s computer running XP and 2010 but I am pretty sure in still also works on Win 7.
    Things I am suspicious of are that the analysis VI’s are part of a LabVIEW library (lvlib)  and perhaps something has changed there?  I understand there is a problem with OOP in LabVIEW 2011.  Perhaps it is related to that as that seems to be an issue in 2011 (see this Discussion Forum post).  Perhaps it is related to OS version?
    I also tried generating a Source Distribution to extract out all the vi.lib VI’s and place them directly in the Plug-in directory.  That didn’t help.
    Interested in whether anyone else reproduces this behaviour.  In any case something is different in 2011.
    Attachments:
    LV 2011 test Plug-in.zip ‏42 KB

    I found some more out about this issue working with my local NI rep here in Australia.  Apparently something has changed in the compiler between LabVIEW 2010 and 2011.  Using the viSearchPath token in the ini file, as described in various Developer Zone articles, now guarantees that the Plug-in will not work.  The only way to make it work appears to be to create a Source Distribution.  I noted in my original post that I had already tried this and it would not work.  It turns out that having the viSearchPath token in the ini file when using a Source Distribution causes the error 1003 to occur.  When the token is taken out of the ini file the Plug-in (containing an analysis VI) with a Source Distribution works - in the simple example I posted.
    Well I then found its a bit more complicated than this.  It all worked for the simple example I posted.  Recall we found the error when there was an analysis VI in the Plug-in VI.  In our actual application (which is a large one) that calls Plug-ins - we still got the error 1003.  By trial and error I found a workaround.  There are certain Build Spec settings for the calling exe that I set and found worked.  On the Additional Exclusions page I found that I had to make sure that I left unchecked "Modify Project Library File after removing unused members".  I've always had trouble understanding the need for this setting.  In the Build Spec Help on that page it notes that the build will take longer.  In most builds you remove polymorphic VI instances, remove unused members of Project libraries and also Modify the project library file after removing the instances (this is a sub setting of the previous).  This makes the exe smaller in size and a quicker build time. Obviously modifying the project library caused a problem.  In the big application exe calling Plug-in, I probably have the same analysis VI on the diagram (I haven't actually checked and also whether it is the same polymorphic instance) and in the simple example I posted I definitely did not have VI in the calling exe example - so there may be some clue there.  I should try putting the same analysis VI on the calling exe diagram in the simple example to see what happens but I'm running out of energy on this one :-(
    So none of this gives me much confidence and I wish I could get a better explanation from NI regarding this behaviour to be sure I am not going to encounter a different problem for different calling exe and Plug-ins.  I was advised that a CAR would be issued.  Perhaps this is now expected behaviour for 2011 but it would helpful if some definitive explanation could be given about what has changed from LV2010.  And an update of Developer Zone articles on the subject would be helpful.

  • Please Help! email name and password not working/ cannot retrieve email

    email stopped working. does not accept username and password. keychain repair works. password verified. still doesnt work. when I tried to pay for a new account it would not let me use my original name and password, saying they were already in use!
    help please, i want my email to work..

    The second list of 1 through 6 was for when you don't have a disc.
    Also...
    Reset OS X Password Without an OS X CD...
    http://theappleblog.com/2008/06/22/reset-os-x-password-without-an-os-x-cd/
    Admin Hack...
    http://www.hackmac.org/?q=node/4
    Starts up like the first time you buy a new Mac, but after filling in all that info again, you should have access to the computer and the other Users & files will still be there... though I was just thinking, this new User probably shouldn't be the same name as an existing one.
    If that doesn't work for you (and some users have reported it has not worked for them), try Niel's procedure Making the Setup Assistant reappear.
    http://discussions.apple.com/thread.jspa?messageID=607547
    I lost my admin user (Mac OS X 10.4 and earlier) ...
    http://discussions.apple.com/thread.jspa?threadID=121786&tstart=0
    I'd call AppleCare you can get Replacement Install Disks shipped to you at a reduced rate, have your Mac's Serial # handy...
    http://www.apple.com/support/contact/phone_contacts.html

  • Formula variable using Replacement path not working

    Dear All,
    I am using a query to calculate YTD values in the report. I am using a formula variable to calculate the number of months. Formula is
    Month To - Month From+1
    When I am giving the range from 001 to 006 for period in th evariable screen,
    I am gettung Month To as 6 and Month From as 6 with total no . of months as 1.
    I think Month From is not being caculated properly. I created another formul variable using Replacement path, for characteristic Posting period, replace with a Key and dimension ID as number with out any offset.
    Still not working.
    Any suggestions.
    Thanks and Regards,
    Srini
    Edited by: Srinivas on Apr 24, 2008 11:13 AM

    Hello,
    I have seen this document already. It is slightly different from what I am trying to do here than what the post shows. How ever,  I did everything right, atleast seems to be and don´t know why I am not getting the From value from the posting period selected. To value variable is coming right.
    Any more sugegstions.?
    Thanks and Regards,
    Srini

  • Dynamic ORACLE_HOME in env variable PATH  not working

    Hi,
    We have an issue whereby we want the PATH to be dyanmic with respect to the ORACLE_HOME.
    Have implemented the solution in 'ORA-12557: TNS:Protocol Adapter Not Loadable' While Running OUI [ID 735400.1 but not working.
    We have Windows 2008 R2 server with Oracle 11.2.0.3 client installed.
    First when did set to check environment varibales, fouND no env. variable for ORACLE_HOME even though in registry so have set ORACLE_HOME as user env variable.
    Have changed system env variable PATH to have  %ORACLE_HOME%\bin; at very start
    when do PATH to check value shows
    literally as %ORACLE_HOME%\bin at start rather than translating to the real physical location as it does with other logical variables.
    How can we ensure translates the ORACLE_HOME correctly so PATH is O.K.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    user5716448 wrote:
    Hi,
    We have an issue whereby we want the PATH to be dyanmic with respect to the ORACLE_HOME.
    Have implemented the solution in 'ORA-12557: TNS:Protocol Adapter Not Loadable' While Running OUI [ID 735400.1 but not working.
    We have Windows 2008 R2 server with Oracle 11.2.0.3 client installed.
    First when did set to check environment varibales, fouND no env. variable for ORACLE_HOME even though in registry so have set ORACLE_HOME as user env variable.
    Have changed system env variable PATH to have  %ORACLE_HOME%\bin; at very start
    when do PATH to check value shows
    literally as %ORACLE_HOME%\bin at start rather than translating to the real physical location as it does with other logical variables.
    How can we ensure translates the ORACLE_HOME correctly so PATH is O.K.
    open Command Window & issue command belowecho %ORACLE_HOME%COPY  the results, then PASTE all back here                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • "No such file or directory" error, Include header path not working?

    Hello all,
    I am porting some software from Microsoft visual studio to Xcode and i am having some trouble building a library. I keep getting an error about the include files not being found: " no such file or directory". I've searched and the remedy for this is to change the active target's "Header Search Paths" and it worked in one of the targets. Now I am trying to build a new target and for some reason i keep getting the same error and can not get rid of it. Thanks a bunch in advance!

    The one that works is a static library, while the one that isn't compiling is a dynamic one.

  • FTP /path not working for Safari

    I can't get Safari (native to OSX) to retrieve an FTP url from a
    Netware 6.5
    It will connect and display files for the url ftp://FS1 but it will
    not connect to the url ftp:/FS1/Software/MAC/
    Firefox on the same OSX box works fine with the added path AND
    Safari will work to a Windows ftp server with the added path in the
    url
    I had to set PSEUDO_SERVER_FLAG=3 to get Safari to
    display files to the NW65 ftp server. (with nwftpd's Default setting
    it would connect but not display)
    Now I want to lessen the burden for the user of having to navigate
    through folders
    Also,
    Why does Safari hands off an ftp connection to FINDER whereas
    Mozilla keeps the FTP connection within its browser window
    Any help would be appreciated
    Kirk

    Kirk,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • LinkListExplorer iview BackGround Image path not working

    HI All ,
    As i am using Layout set LinkListExplorer for few external links , when i am giving image name for eg growth.jpg in  background image path,  which is placed at /etc/public/mimes/images it is not showing anything , the same is working for NewsBrowser Layout set  . I have tried many thing all possiblities but no success .
    Pls help me in this regard.
    Shwetang saxena

    Hi Vedant,
    APEX only replaces the #WORKSPACE_IMAGES# variable within APEX itself. This is quite logical, because what you see in the APEX developer space is generated by PL/SQL from the database, so APEX can change what it wants. APEX can't access the files however, that's logical to because APEX would need premissions on the server and an Oracle directoryto start doing changes to files.
    So if you want to point to the image directory in the CSS file you need to provide the full path.
    Regards,
    Joni

  • Path not working in win xp pro, can call java but not javac !

    Hello,
    I just upgraded to win xp and set up the J2SDK. I have set the path variable in the environment settings.
    when I tried to test this by typing java from my documents directory it works all right but not the javac command, to which it gives the error
    "'javac' is not recognized as an internal or external command,
    operable program or batch file."
    when I type path then I get the following result -
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\FSC\PCOBOL32;C:\Program Files\FSC\PCOBOL32;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;c:\borland\bcc55\bin; c:\jdk1.4.0_01\bin;C:\FSC\PCOBOL32;C:\PROGRAM\PCOBOL32 , so my path settings are correct.
    Why is this happening? Thanks for any help.
    - rdg
    P.S. I also am also unable to invoke the c++ compiler from my documents, so I think this may be a problem with my path, but then how am i able to call the java.exe ?

    -----BEGIN PGP SIGNED MESSAGE-----
    In win xp you must type the name of the directory as Dos-8 format,
    for example, if you want to use c:\J2sdk1.4.0_01 you must write in
    the path c:\j2sdk1~1.0_0
    -----BEGIN PGP SIGNATURE-----
    Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com>
    iQEVAwUBPWL6quIx3Zm+mBoJAQFhVwf/dM2pfQYN5Wp5AnmD+HV1Nx+5MSm1zmUs
    b3UPC8xJt0JhJItyims6YLEJKAv+Mrm0sk3fVyfg1o4Tcpw0bzG/RsVdsTsrmlDu
    vUlqWrxgTRH85IAjro83lGNuLUo6PKs10hVj4h4tqL8BkLE4pCkZfLT2tpG7VLt0
    YylUFx6DZQzF1HVK9+6MqYOvBEjxLhkNRHThNysUJj6SBkNHKDbDgnOcUQf+8PpZ
    RxItuKGUys6FdLSvrxonbj2qbHJ34Ewb/a8DL1MXcCOtP2QGIta4ozq/3SVPDAK4
    BD/NG97FsuYbL/l18Je4EzXRWqtG9IlIY8WBhbdx8X3B3fpuq8gICw==
    =UJDG
    -----END PGP SIGNATURE-----

  • UNC path not working in pdf

    Hello
    I'm currently having troubles with some UNC paths in pdf files.
    I create a word document, insert some UNC paths like
    \\abc.local\docs\mydoc.DOC
    and convert it to pdf.
    if i open the pdf local i can use the paths without any problems.
    but if i host the pdf on our webserver and open it with a webbrowser, the links won't work.
    Now I'm not sure if its a problem with the pdf, the browser, some server restrictions or something else...
    any suggestions?
    Thanks

    -----BEGIN PGP SIGNED MESSAGE-----
    In win xp you must type the name of the directory as Dos-8 format,
    for example, if you want to use c:\J2sdk1.4.0_01 you must write in
    the path c:\j2sdk1~1.0_0
    -----BEGIN PGP SIGNATURE-----
    Version: PGPfreeware 7.0.3 for non-commercial use <http://www.pgp.com>
    iQEVAwUBPWL6quIx3Zm+mBoJAQFhVwf/dM2pfQYN5Wp5AnmD+HV1Nx+5MSm1zmUs
    b3UPC8xJt0JhJItyims6YLEJKAv+Mrm0sk3fVyfg1o4Tcpw0bzG/RsVdsTsrmlDu
    vUlqWrxgTRH85IAjro83lGNuLUo6PKs10hVj4h4tqL8BkLE4pCkZfLT2tpG7VLt0
    YylUFx6DZQzF1HVK9+6MqYOvBEjxLhkNRHThNysUJj6SBkNHKDbDgnOcUQf+8PpZ
    RxItuKGUys6FdLSvrxonbj2qbHJ34Ewb/a8DL1MXcCOtP2QGIta4ozq/3SVPDAK4
    BD/NG97FsuYbL/l18Je4EzXRWqtG9IlIY8WBhbdx8X3B3fpuq8gICw==
    =UJDG
    -----END PGP SIGNATURE-----

  • Using SXPG_CALL_SYSTEM  to execute Unix 'MV' command not working

    Here is the code (method - params begin with "p_").  This returns no error but yet the file is not moved (called in a test program).  Any ideas?
    DATA: lv_sourcepath TYPE rlgrap-filename,
            lv_targetpath TYPE string,
            lv_fname      TYPE rlgrap-filename,
            lv_path       TYPE rlgrap-filename,
            lv_paramstr   TYPE sxpgcolist-parameters,
            lv_status     TYPE extcmdexex-status,
            lv_execproto  TYPE TABLE OF btcxpm.
      " Get physical path to archive folder
      lv_targetpath = zcacl001_utilities=>get_appserver_path( 'ZDIR_KHRIS_INTF_ARCV' ).
      " Type casting needed for function module call below
      lv_sourcepath = p_sourcepath_in.
      " Split filename from path in source
      zcacl001_utilities=>parse_file_path( EXPORTING
                                              p_fullname_in   = lv_sourcepath
                                           IMPORTING
                                              p_filename_out  = lv_fname
                                              p_path_out      = lv_path ).
      " Concatenate filename to target path
      CONCATENATE lv_targetpath lv_fname INTO lv_targetpath.
      " Build parameter string
      CONCATENATE '-f' lv_sourcepath lv_targetpath INTO lv_paramstr SEPARATED BY space.
      CALL FUNCTION 'SXPG_CALL_SYSTEM'
        EXPORTING
          commandname                = 'mv'
          additional_parameters      = lv_paramstr
          trace                      = space
        IMPORTING
          status                     = lv_status
          exitcode                   = p_exitcode_out
        TABLES
          exec_protocol              = lv_execproto
        EXCEPTIONS
          no_permission              = 1
          command_not_found          = 2
          parameters_too_long            = 3
          security_risk                  = 4
          wrong_check_call_interface = 5
          program_start_error            = 6
          program_termination_error      = 7
          parameter_expected         = 8
          too_many_parameters            = 9
          illegal_command                = 10.

    Try to put this type of entry in the Object request.
    Prog Obje Objectname
    R3TR EXCC commandname
    I am not sure, weather this will work or not.
    Regards,
    Naimesh Patel

  • Flash video path not working on Mac

    Using the Flash Video component in Flash 8 I place my .flv in
    a directory called Video and then enter the path into the component
    as
    Video\myvideo.flv
    When it runs off my web site on Windows XP all is well but on
    a Mac OS X it fails to play. If I place the video in the route on
    the web server and alter the file path to just myvideo.flv it
    works!
    So is there a special symbol I need to use for the file
    seperator to make it work correctly on both platforms?

    Hi, Make sure the Shockwave Flash plugin is Enabled for one thing. I'm not familiar with Webcams so can't help you with that.
    If you have Installed Flash Player then test at this site to see if you can see the animation of the Flash logo and what version is listed.
    http://www.adobe.com/software/flash/about/
    Thanks,
    eidnolb

  • Flash Player 14 onwards - UNC Path not working

    Dear all,
    Up until and including Flash Player 13, I have been able to refer to a .SWF file using the UNC path of the file (\\Server\Folder\File.swf).
    Since I have installed both Flash Player 14 and 15, I have been unable to refer to the file using the UNC path, but instead having to Map Network Drive of the Server and Folder (X:\File.swf).
    Can someone tell me why I can no longer use the UNC path? Or is there a setting I need to check?
    Kind regards,
    Chris

    Hi Vincent.
    Thanks for responding to my post. I can confirm that I was running Version 15.0.0.152, which didn't work with UNC paths. I have now tried the beta Version 15.0.0.159, which fixes the issue.
    What can I take from this? Well the good news is that this is resolved in future versions.
    The bad news is that my user base can have any version installed on their machines. Some users are on Version 13, some on Version 14 and some on Version 15. The issue is that some of these users have opted for the "Never check for updates" option after Flash has installed, meaning that they are happy to remain on their chosen version. Having a user base of at least 500, it's impossible for one self to update all machines to the beta version. At the same time, users will now have to wait an unspecified period of time for the next version and if they have installed Version 14 or 15 with the selected option "Never check for updates", then I am permanently going to struggle with using UNC paths.
    This episode has the potential to cause serious issues for myself as a developer and also for my company. My respect for the Adobe Flash product has dropped big time.
    If there are any other suggestions, then I am all ears.
    Regards,
    Chris

  • FlashBuilder 4.7 Flex Module "Output SWF" path not working.

    I would like to use the Flex Module feature in FlashBuilder to easily compile some child SWF which are Modules.  The problem is that the "Output SWF" path is not respected, when I compile FlashBuilder 4.7 aways compiles the file default path.
    Cheers,
    Hays

    I forgot to attach my image.

Maybe you are looking for

  • [Solved] Tor Error

    Just got tor installed from the wiki. I run 'tor' and i get [notice] Tor v0.2.5.12 (git-whateverthisis) running on linux with Libevent 2.0.22-stable, openSSL 1.0.2a and Zlib 1.2.7 [notice] Read config file "/etc/tor/torrc" [notice] Opening Socks list

  • Problem using help areas on Organizer.  Log-in never connects

    Technical Question:  Problem-Can't log-in.  Details:  "Photoshop Elements-10 Organize" is open and I am trying to access the "suggestion" that shows in the lower right corner of the screen. I am using my ID as my email address and my Adobe password t

  • HT201209 how can i make it redeemable in canada

    I recieved an Itunes gift card, but when I go on to the Itunes store to redeem it, it say it is only redeemable in the U.S.A. How can I make it redeemable in Canada?

  • How do I stop iPhoto from launching every time I sync my iPhone?

    I have looked for something in Preferences on both my iPhone's PHOTOS tab as well as in iPhoto but cannot find where to tell whatever I need to tell to stop iPhoto from launching automatically every time I hook up my iPhone to my Mac to sync. This is

  • Mail search note working

    The search function has stopped working for me - entering a search term I know exists in a recent email shows up no relevant hits. Any ideas? Thanks!