File adapter write to network drive fails

Hi all,
I have a problem using the FIle adapter. The situation is as follows:
- SOA Suite 10.1.3.5.0. installed on Windows
- SOA Suite runs under windows user soaadmin, a user with local admin rights.
- A network share is mapped as a network drive on a remote (windows) server, assigned drive letter 'T'.
- user soaadmin is added to a user group on the remote server that has local admin rights on the remote server.
- In my BPEL process, the file adapter is configured to write files to 'T' drive.
- At runtime, ORABPEL-11054 occurs: Directory cannot be created successfully. Directory: T:/ cannot be created successfully.
- If I configure the file adapter to write to 'C' drive all functions well.
- From the windows explorer, user soaadmin can create files on 'T' successfully soa apparently has the right privileges on 'T'.
Any clue as to what may be wrong?
Thanks in advance,
Regards Rob

please use FTP adapter instead of File Adapter.
Thanks,
Chandra_

Similar Messages

  • UTL_FILE - Write to a file on a mapped network drive

    Hello,
    I am trying to get the UTL_FILE package to write a file to a mapped network drive on
    Windows NT. We have the following definition in the init<SID>.ora file pointing to the
    network drive:
    UTL_FILE_DIR=v:\hawkrpt
    Here is the code to write to the file:
    CREATE OR REPLACE PACKAGE pkgUtlFileTest AS -- package spec
    PROCEDURE isp_UtlFileTest ( vcDir IN VARCHAR2,
    vcFileName IN VARCHAR2,
    vcOpenType IN VARCHAR2,
    vcMessage1 IN VARCHAR2 );
    END pkgUtlFileTest;
    CREATE OR REPLACE PACKAGE BODY pkgUtlFileTest AS -- package body
    PROCEDURE isp_UtlFileTest ( vcDir IN VARCHAR2,
    vcFileName IN VARCHAR2,
    vcOpenType IN VARCHAR2,
    vcMessage1 IN VARCHAR2 ) IS
    -- vcDir is the utl file directory
    -- vcOpenTpye is the open type a = append, w = write or r = read
    -- vcFileName is any file name you want.
    -- vcmessage is the entry you want placed into the file
    vcUtlFile UTL_FILE.FILE_TYPE;
    BEGIN
    IF LOWER(vcOpenType) = 'a' OR LOWER(vcOpenType) = 'w' THEN
    vcUtlFile := UTL_FILE.FOPEN(vcDir, vcFileName, vcOpenType);
    UTL_FILE.PUT_LINE(vcUtlFile, vcMessage1);
    UTL_FILE.FCLOSE(vcUtlFile);
    END IF;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    DBMS_OUTPUT.PUT_LINE('no_data_found');
    UTL_FILE.FCLOSE_ALL ();
    WHEN UTL_FILE.INVALID_PATH THEN
    DBMS_OUTPUT.PUT_LINE('UTL_FILE.INVALID_PATH');
    UTL_FILE.FCLOSE_ALL ();
    WHEN UTL_FILE.READ_ERROR THEN
    DBMS_OUTPUT.PUT_LINE(' UTL_FILE.READ_ERROR');
    UTL_FILE.FCLOSE_ALL ();
    WHEN UTL_FILE.WRITE_ERROR THEN
    DBMS_OUTPUT.PUT_LINE('UTL_FILE.WRITE_ERROR');
    UTL_FILE.FCLOSE_ALL ();
    WHEN UTL_FILE.INVALID_OPERATION THEN
    DBMS_OUTPUT.PUT_LINE('UTL_FILE.INVALID_OPERATION');
    UTL_FILE.FCLOSE_ALL ();
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('OTHER ERROR' );
    UTL_FILE.FCLOSE_ALL ();
    END isp_UtlFileTest;
    END pkgUtlFileTest;
    Here is the code to execute the stored procedure:
    Begin
    pkgUtlFileTest.ISP_UTLFILETEST('v:\hawkrpt','test.txt','w','This is a test');
    End;
    When the stored procedure is executed, the following error is returned:
    UTL_FILE.INVALID_OPERATION
    Can someone tell me how to get the UTL_FILE package to write a file to a network drive
    on a Windows NT server?
    Your help will be greatly appreciated!
    Mike

    Did you restart the database after changing the init.ora parameter? Make sure that you have this new value in v$parameter view.

  • Load of file from a windows 2003 network drive failed

    Hello,
    I working on a windows 2003 Server machine with a Oracle database 10.2.0.3.
    I must automate a database task that consist in reading tow files from a network drive, load it on database and making some processing on loaded data
    I defined entities for use of scheduler but when job with this processing is run it doesn't complete it work
    In column additional_info of table user_scheduler_job_run_details I have found this message
    CHAIN_LOG_ID="20298", STEP_NAME="LOADZILE", ORA-27369: job of type EXECUTABLE failed with exit code: Incorrect function.
    STANDARD_ERROR="SQL*Loader-500: Unable to open file (Z:\ControlCAMarjaZilnic.ctl)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: The system cannot find the file specified."
    The file is on the network drive and it mname is correct - I am sure of this
    What's wrong?
    Thanks in advance,
    Aurel

    Hi,
    My environment consist in Windows 2003 Server and Oracle database 10.2.03 database
    My job must read 2 files from an network drive - mapped on Z , load files in Oracle database and process data for output on some devices
    I build a CHAIN based job
    BEGIN
    DBMS_SCHEDULER.create_chain (chain_name => 'loadchain',rule_set_name => NULL,evaluation_interval => NULL,comments => 'Loading chain.');
    END;
    I defined programs : trunc and processing as STORED_PROCEDUREs and sqlldrDays and sqlldrMonths as EXECUTABLEs
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM(program_name=>'trunc',program_type=>'STORED_PROCEDURE',program_action=>'XXBLU.xxblu_dex_vanzari_pkg.Truncatelunizile',number_of_arguments=>0,comments=>'Truncate for loading',enabled=>FALSE);
    DBMS_SCHEDULER.ENABLE(name=>'trunc');
    END;
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM(program_name=>'sqlldrDays',program_action=>'c:\oracle\product\10.2.0\client_1\BIN\sqlldr.exe',program_type=>'EXECUTABLE',number_of_arguments=>2,comments=>'Loading days',enabled=>FALSE);
    DBMS_SCHEDULER.DEFINE_PROGRAM_ARGUMENT(program_name=>'sqlldrDays',argument_position=>1,argument_type=>'CHAR',default_value=>'xxblu/xxblu@dextera',out_argument=>FALSE);
    DBMS_SCHEDULER.DEFINE_PROGRAM_ARGUMENT(program_name=>'sqlldrDays',argument_position=>2,argument_type=>'CHAR',default_value=>'Z:\ControlCAMarjaZilnic.ctl',out_argument=>FALSE);
    DBMS_SCHEDULER.ENABLE(name=>'sqlldrDays');
    END;
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM(program_name=>'sqlldrMonths',program_action=>'c:\oracle\product\10.2.0\client_1\BIN\sqlldr.exe',program_type=>'EXECUTABLE',number_of_arguments=>2,comments=>'Loading months',enabled=>FALSE);
    DBMS_SCHEDULER.DEFINE_PROGRAM_ARGUMENT(program_name=>'sqlldrMonths',argument_position=>1,argument_type=>'CHAR',default_value=>'xxblu/xxblu@dextera',out_argument=>FALSE);
    DBMS_SCHEDULER.DEFINE_PROGRAM_ARGUMENT(program_name=>'sqlldrMonths',argument_position=>2,argument_type=>'CHAR',default_value=>'Z:\ControlCAMarjaLunar.ctl',out_argument=>FALSE);
    DBMS_SCHEDULER.ENABLE(name=>'sqlldrMonths');
    END;
    BEGIN
    DBMS_SCHEDULER.CREATE_PROGRAM(program_name=>'processing',program_action=>' XXBLU.xxblu_dex_vanzari_pkg.Prelucreaza',program_type=>'STORED_PROCEDURE',number_of_arguments=>0, comments=>'Processing for BlackBerry output',enabled=>FALSE);
    DBMS_SCHEDULER.ENABLE(name=>'processing');
    END;
    This chain has 4 steps : truncatetabsStep,loadDaysStep,loadMonthsStep and processingForDexteraStep
    BEGIN
    DBMS_SCHEDULER.define_chain_step (chain_name => 'loadchain',step_name => 'truncatetabsStep',program_name => 'trunc');
    DBMS_SCHEDULER.define_chain_step (chain_name => 'loadchain',step_name => 'loadDaysStep',program_name => 'sqlldrDays');
    DBMS_SCHEDULER.define_chain_step (chain_name => 'loadchain',step_name => 'loadMonthsStep',program_name => 'sqlldrMonths');
    DBMS_SCHEDULER.define_chain_step (chain_name => 'loadchain',step_name => 'processingForDexteraStep',program_name => 'processing');
    END;
    I want to run these tasks sequential
    BEGIN
    DBMS_SCHEDULER.define_chain_rule (chain_name => 'loadchain',condition => 'TRUE',action => 'START truncatetabsStep',rule_name => 'chain_rule_1',comments => 'Truncate step');
    DBMS_SCHEDULER.define_chain_rule (chain_name => 'loadchain',condition => 'truncatetabsStep completed',action => 'START loadDaysStep',rule_name => 'chain_rule_2',comments => 'Load days');
    DBMS_SCHEDULER.define_chain_rule (chain_name => 'loadchain',condition => 'loadDaysStep completed',action => 'START loadMonthsStep',rule_name => 'chain_rule_3',comments => 'Load Months');
    DBMS_SCHEDULER.define_chain_rule (chain_name => 'loadchain',condition => 'loadMonthsStep completed',action => 'START processingForDexteraStep',rule_name => 'chain_rule_4',comments => 'Processing for Dexterra');
    DBMS_SCHEDULER.define_chain_rule (chain_name => 'loadchain',condition => 'processingForDexteraStep completed',action => 'END',rule_name => 'chain_rule_5',comments => 'End of chain');
    END;
    I enabled the chain
    BEGIN
    DBMS_SCHEDULER.enable ('loadchain');
    END;
    I run the chain
    BEGIN
    DBMS_SCHEDULER.run_chain (chain_name => 'loadchain',start_steps => 'truncatetabsStep',job_name => 'loadchain_run_job');
    END;
    When I watch user_scheduler_job_run_details I can see STORED_PROCEDUREs programs succeded and EXECUTABLEs (sqlldr based) didn't
    in additional_info table I can read - STANDARD_ERROR="SQL*Loader-500: Unable to open file (Z:\ControlCAMarjaZilnic.ctl) and
    STANDARD_ERROR="SQL*Loader-500: Unable to open file (Z:\ControlCAMarjaLunar.ctl) respectively
    But this file exists - I copied path+filename from error messge and I pasted in comand prompt
    Many thanks,
    Aurel

  • File Adapter Write missing files

    Hello
    I have some trouble with a bpel process containing a file adapter that should write files to disk. Each bpel-process is started when a read file adapter reads a new matching file (*.xml).
    I have tested the process with a few files (5-20) and a new process is started for each file, and at the end of the process a new file is written to disk by the file adapter (Write). But when I am testing with a large number of files (40-50 files) something strange happens.
    A new process is started for each file, but it looks like the file adapter that should write files to disk is not capable to handle the pressure. 10-20% of the processes doesnt complete as expected. In the BPEL Console everything looks ok, it seems like the File Adaper has written a file to disk, no error is trown. But when I look in the directory the file is not there...
    Has this something to do with performance? Is there any parameters or settings I can tune to make the file adapters work better? Sometimes it also looks like the file adapter (read) doesnt manage to start a new process for each incomming file even if they are deleted and archived...

    I ran into a similar issue. As a workaround we ended up just using java to write the files out. When the File Adapter attempts to write out a file it first writes that file to a temp file and then copies that to the appropriate directory.
    I believe that when two or more threads were attempting to write at the same time the write was failing for one (but appearing to work in the console logs). I think a race condition may be created when two threads attempt to write using the File Adapter for access to the temp file. I contacted my oracle rep about it but they are always pretty worthless so I havent ever heard anything back concerning the issue.

  • HT201250 Hello i am using TimeMachine to back-up entire Mac image (data + system) on an usb-local drive. I would like (on top of it) add a specific plan to back up some files on a remote network drive. Does TimeMachine support multiple back-up plans ? How

    Hello i am using TimeMachine to back-up entire Mac image (data + system) on an usb-local drive. I would like (on top of it) add a specific plan to back up some files on a remote network drive. Does TimeMachine support multiple back-up plans ? How ?

    Time Machine is capable of backing up to multiple locations, and can be used to back up to both a local hard drive and a networked drive (provided that that drive is in or connected to a Time Capsule or another Mac that is sharing it over the network). The catch, though, is that you can't specify different things to back up to different destinations. Whatever you exclude from Time Machine backups is excluded from ALL backups, and whatever is included is included on all.
    So, get a large enough drive that you can back up everything you want in all locations, or use something else for maintaining the network backup.
    More information on these topics can be found here:
    How do I set up Time Machine to a shared drive on another Mac?
    How do I set up Time Machine to a Time Capsule or Airport Extreme?
    "Rotating" Time Machine backup disks

  • Network drives fail (drives used to share databases among multiple computers)​.

    I am using databases on multiple computers to store test results for a production line. The computers share info from thier databases with each other using dsn's made with the ODBC Windows XP Admin Tool (Control Panel). This works well most of the time but occasionally one of the network drives fails - I have to disconnect and then use ODBC to make a new connection (a new dsn). Why are the network drives failing? Should I use somenthing else that is more reliable? datasocket? Shared Variable? [email protected]

    Gary MavSysInc,
    When you say that your program fails, are you referring to the same thing as your LabVIEW Application that is reterieving data? If so, what do you mean by it fails? Is there an error message? Does it Crash? What happens when it "fails"?
    Ben Sisney
    FlexRIO V&V Engineer
    National Instruments

  • Zenwork 7 app to backup file normal.dot to network drive

    I'm attempting to build a simple zenwork app that backs up the file normal.dot from C:\Documents and Settings\NWUSERNAME\Application Data\Microsoft\Templates
    The file no matter what will not copy to the network.
    I have succussfully copied other files to the same network drive but for some reason the normal.dot will not copy
    Any suggestion(s) would be most appreciated
    Thanks

    Originally Posted by AndersG
    MurphNE,
    > I have succussfully copied other files to the same network drive but
    > for some reason the normal.dot will not copy
    >
    > Any suggestion(s) would be most appreciated
    Antivirus? Also check that the file is not zero bytes
    - Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Novell has a new enhancement request system,
    or what is now known as the requirement portal.
    If customers would like to give input in the upcoming
    releases of Novell products then they should go to
    http://www.novell.com/rms
    Thanks for suggestion
    A) the file is not zero bits and
    B) I disabled the antivirus software
    and my zen app will still not copy the normal.dot file but it will copy another generic file from the same place where my normal.dot file is located
    Again tanks for the suggestion
    Joe Murph

  • XI3.0 Receiver file adapter write to windows shared drive

    Hi,
    Our XI server SP09 currently runs on windows 2003 server,  I wish to use the receiver file adapter to create a file on another windows server.  I have created a folder on the other server and set permissions so that anyone can read and write to it. 
    The communication channel has been set-up with a target directory of //server/shared_folder/folder and a transport protocol of 'File system(NFS)'
    When I try and send an XML message to the file adapter I get the following error on the runtime workbench :-
    Last message processing started 09:47:10 2005-06-09, Error: Message processing failed with java.lang.Exception: Message processing failed - configuration error in file receiver adapter (Directory does not exist / cannot be created)
    My questions are as follows :-
    a) Do I have the target directory on the communication channel set-up correctly?  i.e. do I use / or \
    b) What username will need to be set-up on the other server so that the file adapter can write to the shared folder
    c) Is there another way of providing user and password information for connecting to the other server?
    Many thanks
    Ian

    Hi Ian
      as i understood from ur description is that u want ur file to b generated in some other machine then u have to mention that machine in ur SLD using correct specification..
    u go thru this link in order to get more Clearance..
    http://help.sap.com/saphelp_nw04/helpdata/en/31/f0ff69551e4f259fdad799a229363e/frameset.htm
    Hope this ll help u.
    Regards
    Shailesh

  • How do I delete files from HFS+-formatted network drive

    Relevant system components:
    Very recent iterations of a MBA and MBP both running 10.7.4
    Cisco Linksys e4200v1 wireless router, FWver1.0.04
    Seagate 1.5 Tb FA GoFlex external drive
    Full-size, single partition reformated by DiskUtility to HFS+ (Mac extended volume, Journaled)
    Connected by USB to storage port on e4200
    Storage set to share at root with either Anon r&w access or admin level user acct.
    Demonstrated read and write access
    I have set up an external drive as above.  The drive is to be used to archive large amounts of uncommonly used data (not a backup) and then is backed up to crashplan+ off-site. 
    The drive came formatted as FAT32 (I believe.) As we still have one PC and all individual files are smaller than 4Gb, I set up the archive drive as formated out of the box. 
    Data was written to the drive without issue, backed upi off-site with no issue and accessed a couple times.
    The issue came when recently upgraded some itunes albums.  These albums had been previously removed from the library and from the computer and stored in the archive drive.  These albums were upgraded and redownloaded from apple generating a copy of the album data, but in a superior format (no-drm, greater sampling rate.) This made the archived files obsolete and generated a risk of mixing versions.  I decided to delete the obsolete files from archive.
    When I attempted to do this by selecting, right-clicking and chosing "move to trash"  I was prompted that this was not a "undo-able" action, suggesting that while I was selecting "move to trash," the action would not generate a copy in the trash.  Next I was prompted to enter my user and PW.  The only user and PW combo that would not cause the dialog to "shake it's head" at me, was my computer user-specific password.  The network or drive associated user and PW combos would not take.  When I entered my computer user and PW, it was accepted, but a dialog labeled "Trash" popped up with small font, reading "The operation can't be completed because you don't have permission to access some of the items."
    Trying to delete only a random selection of one or two files would not work. 
    I checked the drive permissions and was only able to see "You have custom access."  This is not modifiable.  I attempted to alter my access permissions from the router, but made no headway.  Again, I could read and write, as the router setup suggests, but not "modify," to use a windows term.
    Assuming, with little data, that the FAT32 was perhaps at issue I unmounted the network drive, connected it by USB and reformated as above.  After formating, I tried the same procedure with no change in outcome.
    I am nearly 100% sure that when the drive was connected by usb, I could delete to my heart's content, but not when it is connected via network.
    I will note that the drive is accessed by first connecting to the router, which the mac sees as a "PC."  This access can be controlled, but can be set to anon.
    When I connect I see two identically named folders.  One is a sharepoint folder and one is a volume.  They access the same data. Deleting thorugh either route has identical outcomes.
    As I am a complete newb to Macs, I am really not sure where I should even begin to look for access.  Should I bind my router access to my user acct?  Is this even doable? Can I reset permissions to this folder through the terminal?  Is this really a Cisco or Seagate issue? 
    Any knowledgable advice is appretiated.  I can do the speculating.

    Ugh.
    This is not an Apple issue.  This is a permission issue associated directly with the router.  No settings on the mac need to be touched to solve this issue.
    In this specific case, it was required that I enter into the router storage settings (192.168.0.1,) disable all anon access, save settings, log in as admin (or just r&w) PRIOR TO deleting the files, then delete the files.
    I was trying to enter login info AFTER trying to delete the files. Obviously, that didn't work.
    Anyway.  I hope this might help someone. 

  • Problem with NFS file adapter using a network share as source of files

    Hello,
    I have set up a sender cc with NFS format file adapter, with at the source directory a network share (
    server\sharename ). The share is on another system and not mapped to a local drivename, but it is open for everybody.
    The problem is, the adapter seems to not pick up the files in the directory, so there must be something I'm overlooking.
    - Both servers run on Windows
    - Share is available normally and open for everybody for all actions (including the SAPServiceSID user)
    - Files themselves are okay. If I put a file on a local drive and make the source directory the local drive instead of the network path, the file gets processed correctly
    - Because of the need for a file completion check, FTP is not an option
    Does anybody know what is going wrong, or what I could check for trace / logging info on possible cause of the problem?

    Hi,
    While using NFS mode you are supposed to put the file on XI server directory NOT to a common share directory of any other machine. And this is the reason your adapter in not picking the file.
    You can upload the file on XI server directory by using the tcode "SXDA_TOOLS", morevere you can check the file on the same directory with tcode "AL11". It is otherway-around, you can first select or chose the dir by AL11 and then put the file in the same dir by tcode SXDA_TOOLS.
    If you need more info about SXDA_TOOLS, let me know.
    Regards,
    Sarvesh

  • File adapter(write files with same extension as we read them)

    Hello
    I am trying to read file as an attachment using file adapter (it can be of any extension .pdf,.txt,.xml)
    I want to write this file using file adapter with the same extension i.e. whatever is read as it is....I am least bothered for reading the content inside the file so am reading it as an attachment..
    Please if anyone knows the answer..reply....

    I ran into a similar issue. As a workaround we ended up just using java to write the files out. When the File Adapter attempts to write out a file it first writes that file to a temp file and then copies that to the appropriate directory.
    I believe that when two or more threads were attempting to write at the same time the write was failing for one (but appearing to work in the console logs). I think a race condition may be created when two threads attempt to write using the File Adapter for access to the temp file. I contacted my oracle rep about it but they are always pretty worthless so I havent ever heard anything back concerning the issue.

  • Batch export to network drive fails on large clips

    SO I have dozens of clips to batch export in full quality uncoompressed format. THey come out anywhere from 1-10 gigs per file.
    When I export to a desktop drive everything works great, when I do the same batch export to a network attached storage drive I have all the larger files failing on me.
    Has enyone experienced this before and can you help?
    Desktop drive works
    Network drive works on smaller file sizes.
    G5 Quad, G5 Dual, G4 PB   Mac OS X (10.4)  

    ah yes, known but ignored issue no. 456282
    files over 2 gigs will not transfer over network when transfer is initiated via FCP, either by export, media manager, or any other process.
    doesn't matter if target drive is mac format or otherwise, it doesnt work.
    doesn't help, but at least you know its not something you did or didn't do.
    cheers
    Andy

  • LR5.2 Destroys raw-files if working with network drives

    I have a serious bug with LR5.2: It destroys my raw files CR2 (Canon ESO 60d) if I work with my local network drive. All my pictures are stored on this network drive. If I try to import from sd card or local drive new pictures and copy/move them via import or synchornize to my network drive the files are corrupted. I also can't open them with other sw-programms like DPP from Canon. The original files on the sd card are okay. Even if I copy the files via explorer to the network drive I can open them with for ex. DPP, but after I imported them into LR5.2 the files are corrupted and I can't open them with DPP again.

    LeeScoresby wrote:
    I have a serious bug with LR5.2: It destroys my raw files CR2.
    Lr doesn't write CR2 files, except if moving/copying, and then only via call to operating system. If your raw files are going bad, you probably have a system/hardware problem.

  • Questions on organizing/sharing music files on 3 PC networked drive

    I just added 1Tb network drive to 3 pc home network... I am planning on moving my iTunes music folder from the older, smaller network drive. I exceeded the 160GB size of the old drive when converting all of the WMA losselss files to Apple lossless while maintaining the old WMA files(I still think the Windows Media Player system is superior). With the new addition to our network, I am planning on the 3 pcs sharing music files... (my wife has been using iTunes for a while, I have just recently went over to the dark side)
    What is the best way to organize the files??
    -How to shuffle all without the folder of Christmas & Holiday music playing.
    -Segregate each users individual files.
    Any advice or suggestions are appreciated, I know it would save a lot of time and pain instead of the trial and error method.

    Thanks, Jason & Mike. This is how I resolved the problem. Turned out the disk with the data was in NTFS format. Neither my eMac nor my wife's Carbon iMac (prehistoric, in other words) was able to read it, on repeated attempts. In process I discovered (to my surprise) that the external hard drive attached to my eMac (a 320 Gig My Book) was formatted in FAT 32 format, and that the PC laptop (Thinkpad) read from it, and wrote to it, without any problem. (Is FAT 32 less than optimal for use with a pre-Intel Mac?). So I just copied the needed files from the NTFS disk to the FAT 32 disk, via the Thinkpad. When I reconnected the FAT 32 drive to the eMac, it turned out that it was easy [with some fiddling] to put the titles of the new music into the iTunes Library, without having to copy the music itself into iTunes. Making playlists does still seem to have to go manually. Sometimes the "New Playlist from Selection" option automatically gives a name (the original name) to the album from which the music came, sometimes it doesn't. Rationale not clear to me. Other problem: often the sequence is jumbled (this is after I added the whole collection of folders containing music to my iTunes Library in one fell swoop). Usually it was possible to correct this by copying track names for albums one album at a time from the external HD (in Columns view, selecting all the tracks in each folder simultaneously) directly into the playlist; the playlist name then always had to be copied or typed in separately. I don't know if I'm missing an easier route. Also, I see that I have version 4.7.1 of iTunes - I'll download a newer version! Don't know whether newer version will affect what I want to do in a positive sense.

  • Firefox Does Not Open a Link Pointing to a .bat file on a the network drive on local website

    Make and model of network drive?
    --HP Priliant DL580 G5
    How is you network set up?
    --Novell Netware 6.5
    What router are you using?
    --Cisco router c3825
    What are you trying to do with the batch file?
    --simple program that launches a batch file that is in the network drive
    Interent Explorer shows the following when launching the link.
    >File Download-Security Warning
    >do you want to run or save this file?
    >Name: johndoe.bat
    >Type: MS-DOS Batch File, 308 bytes
    >From T:\xx\xxxbat
    Has this worked in previous versions of FireFox?
    >no and it does not work with newer v11.
    Whats the issue with using IE if it works from IE?
    >we have users that use FF on regular bases and just for a link to switch browser it is not user friendly. all though we are supporting two browsers we do not want to take FF out of network.
    Is there a reason you want to use FireFox?
    >FF has gained popularity in our agency and it would be best to have this link work on FF as well.
    --HERE IS THE CODE--
    <td valign="top"><a href="file:///T:/Geosupport Desktop Edition/bat/Goat.bat"
    type="application/bat" target="_blank"><img src="../../images/technology/Goat.gif" alt="Goat" width="32" height="28" hspace="4" vspace="2" border="0" align="left"></a>Geosupport On-Line Address Translator, or GOAT, is an interactive Windows application that allows the user to request geographic data through Geosupport function calls. Use of GOAT requires no programming skills and provides valuable information to the casual user.<br>

    Firefox sees that (at least local or network dive located) .bat files are text and renders them as such. To download it as a .bat file, use save page as, (or Control-S) change "text file" to "all files" and type .bat onto the end of the filename, then hit save. Not ideal I know, but better than nothing.

Maybe you are looking for