Webutil_file_transfer.AS_To_client

Hello,
The webutil_file_transfer.AS_To_client only works in ascii mode. Therefore on Unix we add the command unix2dos to workaround this problem.
The code is as follows:
if upper(get_application_property(operating_system))
not like '%WIN%'
then
host('unix2dos '||g_ap_directory||g_file_name
||' '||g_ap_directory||g_file_name);
end if;
if not webutil_file_transfer.AS_To_Client
( user_preferences.get_output_directory||g_file_name
, g_ap_directory||g_file_name
then
end if;      
This works fine the first time the code is executed. The second time the code fails. The unix2dos does not do the job. When we do not do the file transfer it does work ok.
Looks like the webutil_file_transfer.AS_To_Client prevents other actions on the AS.
Any ideas?
Regards Erik

You may need to clear your variables and find some way to reset everything after the function is complete. That would be my first guess. Nothing is jumping out at me from the code at the moment.

Similar Messages

  • Problem using webutil_file_transfer.AS_to_Client

    I have configured webutil package successfully
    I have made the following configuration to webutil.cfg:
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=c:\temp
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp
    I have the following code:
    BEGIN
         IF NOT webutil_file_transfer.AS_to_Client('C:\temp\saad.pdf', 'C:\temp\saad.pdf') THEN
              message('Upload was not successful');
         ELSE
              message('Upload was successful');
         END IF;
    END;
    I always got "Upload was not successful" can any body tell me what the problem is ?

    Francois Degrelle wrote:
    - be sure that the first argument is the client machine file and the second the server file
    FRancois
    It is OK
    Francois Degrelle wrote:
    - at runtime, display the Java console to see if there is any error message
    FRancois
    No Errors
    Francois Degrelle wrote:
    - try another function in the Webutil_File_Transfert package
    FRancois
    I have tried client_to_db successfully

  • Webutil_file_transfer.as_to_client  WUT-121 error?!

    I am trying to transfer a .csv file (22k) from my Apps Server using webutil_file_transfer.as_to_client('c:\temp/','c:\epsis/reports/serv.csv') command.
    I have amended my webutil.cfg to allow file transfers and other webutil functions work fine so I am presuming the install is good.
    I continue to get the WUT-121 error but don't understand why. Any suggestions?

    To transfer from the App Server to another machine, you have several options:
    1. Use the HOST command. This may be difficult depending on the server's platform and security configuration. If Windows, by default the process (Forms) will not have permission to access network resources (i.e. mapped/shared drives). You will need to refer to the Microsoft documentation in order to overcome these restrictions.
    2. Use HOST to execute a ftp connection for transferring the file. Of course the remote machine must support ftp. If you have access to "My Oracle Support", see note 110531.1
    3. Create a java class which could be imported into the form that can perform this task. Refer to the Forms Java Importer documentation for information about importing java for server side execution. Also, here is a starting place for the java information:
    http://www.google.com/#&q=java+transfer+file

  • Problem reading file after using webutil_file_transfer.as_to_client

    Hi all,
    The Forms webapplication I'm working on has to talk with a cardreading-application on the client-PC. The communication is carried out by exchanging small files. Reading from the client by Forms on the AS goes well (using client_text_io from webutil). The problem arises when the application has to respond back with a file. The file is made on the AS and then transfered from the AS to the client using webutil_file_transfer.as_to_client. This file can not be read by the cardreading application when the AS is on Linux. Our developement AS server is on a Windows 2000 box and then the communication doesn't show this problem.
    If I open the file from the AS on Linux , I can see that there is only 1 long line. The Windows version of the file contains 2 lines (as it should be). It seems that before/during/after the transfer some special characters like carriage return and tab are causing the problem.
    Looking in web_file_transfer.as_to_client I see that the procedure reads lines from a temporary file into a buffer. The lines are separated by a CHR(10). Could the transfer from Linux to Windows(DOS) cause a problem with these characters ?
    Has anyone experienced this problem ? If someone has a clue this would be very welcome.
    We work with :
    - Forms and AS 10.1.2.0.2
    - Webutil 1.0.6
    - Development OS: Windows 2000 (Service Pack 4)
    - Production OS: Red Hat Enterprise Linux AS release 3 (Taroon Update 3)
    - Client-PC OS: Windows 2000 (Service Pack 4)
    Thanx,
    Enrico

    Without going into a long winded answer, the only thing I can really offer is to say this... If you feel as though your code has been correctly written and you simply cannot identify any other possible solution, add SYNCHRONIZE. In short, its execution acts similar to a reset or refresh button.
    Another common place where SYNCHRONIZE has been helpful is when calling RUN_REPORT_OBJECT. For example, if you use the code we offer in the Forms/Reports Integration document you will find that it works very well - most of the time. However, sometimes it fails for what seems to be unexplainable reasons. If you message out the values being assigned you will see that some variable values are not being set even though the code execution has already passed the point where a value should have been assigned. Adding the SYNCHRONIZE just after the point where the value should have been assigned forces the assignment before executing the next line of code. For example,
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := report_object_status(v_rep);
    In the above code, a request for a report is made followed by a check of its status. At this point you would expect that the status would be something like one of the following:
         'RUNNING', 'OPENING_REPORT', 'ENQUEUED'
    However, we have seen instances where the value assigned to the variable would actually be NULL, which of course will make the rest of the code likely fail. By adding SYNCHRONIZE the problem is correctable.
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := report_object_status(v_rep);
         SYNCHRONIZE;
    It is important to understand, however that using SYNCHRONIZE comes at a price. Each time it is executed a network round-trip occurs which will give the application the appearance of degraded performance. So use this built-in only when you know you must.

  • Problem with webutil_file_transfer.as_to_client

    Hi all,
    I am migrating some Forms/Reports from 6i to 10g, well, when i make a report sometimes i want to save some of those reports from server to client.
    For doing this i am using the WEBUTIL functinality with webutil_file_transfer.as_to_client.
    this works fine with some reports but doesn't work with other ones, but the problem is that no error appers, it just doesn't write the report, so i don't know what is the problem
    thx in advance.

    Hi Michael,
    I have found what it's the problem.
    As i said i am upgrading reports from 6i to 10g,
    when i run the report in 6i, the report is generated always with data, for example, if the result of the query is nothing, the report is created with the date, name of the report, and some other information that appears in all of my reports by default, so the report is created and then transferred.
    when i run the report in 10g, and the result of the query takes back some data, the report is created in the the server and then transferred properly, but when i create the report as a txt file, it's created without the default data, i don't know why, but those data doesn't appears, but only in .txt files, it works perfectly with .pdf file.
    So the problem comes when the user run's a report with no query result, then in the OracleAS it says it's has been created, but as it's empty, it doesn't tranfer the file to the client machine.
    It's a very strange thing, i don't understand why in 6i it adds the default data to the report, and in 10g it doesn't add that default data...
    P.S: As my english is not very good, when i say default data, i mean eveything that is not returned with the querys of the report, for example the date, the name of the report...
    Do you guys have any idea of why this could happen only with txt files?
    thx for your time!

  • Error in WEBUTIL_FILE_TRANSFER.AS_To_Client  if client ip path provided

    Hi All,
    I am using forms Version 10.1.2.0.2 (Production)
    In my application i have to transfer the "test.tif" file stored in application server to fax client machine. I have used webutil for transfer with ip address of the fax client.
    x:=WEBUTIL_FILE_TRANSFER.AS_To_Client('\\10.10.10.33\fax\test.tif' , 'd:\temp.tif');
    But its giving the error
    *ERROR>WUT-131 [WEBUTIL_FILE_TRANSFER.DownloadInt] Invalid client file name 10.10.10.33\fax\test.tif. Cannot create client file.*
    the webutil config file have following details added
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=d:\temp
    transfer.appsrv.read.2=c:\temp
    transfer.appsrv.read.3=\\10.10.10.33\fax
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp
    transfer.appsrv.write.2=d:\temp
    transfer.appsrv.write.3=\\10.10.10.33\fax
    Can someone please provide me solution in which i can specify the ip path of client machine for file transfer.

    To transfer from the App Server to another machine, you have several options:
    1. Use the HOST command. This may be difficult depending on the server's platform and security configuration. If Windows, by default the process (Forms) will not have permission to access network resources (i.e. mapped/shared drives). You will need to refer to the Microsoft documentation in order to overcome these restrictions.
    2. Use HOST to execute a ftp connection for transferring the file. Of course the remote machine must support ftp. If you have access to "My Oracle Support", see note 110531.1
    3. Create a java class which could be imported into the form that can perform this task. Refer to the Forms Java Importer documentation for information about importing java for server side execution. Also, here is a starting place for the java information:
    http://www.google.com/#&q=java+transfer+file

  • WEBUTIL_FILE_TRANSFER.AS_To_Client not working

    Hi all,
    server : win2008 R2 64 bit
    fmw : 11.1.1.4
    when we try to copy a file from AS to client, we get non-oracle exception 105101
    after searching this forum I added the following exception handler:
    exception
         --check for ORA-105100
         when ORA_JAVA.JAVA_ERROR then
           message('Unable to call out to Java, ' ||ORA_JAVA.LAST_ERROR);
         --check for ORA-105101
         when ORA_JAVA.EXCEPTION_THROWN then
           raisedException := exception_.new(ORA_JAVA.LAST_EXCEPTION);
              begin
                message('Exception: '||Exception_.toString(raisedException));
                message('Exception: '||Exception_.toString(raisedException));
                :javaerror := Exception_.toString(raisedException);
              exception
                when ORA_JAVA.JAVA_ERROR then
                  message('Unable to call out to Java, ' ||ORA_JAVA.LAST_ERROR);
              end;this gives us the following error :
    java.lang.Exception: java.lang.NoClassDefFoundError: oracle/forms/webutil/fileTransfer/AppServerFileReadernumerous people have searched all config files (webutil.cfg,...)
    webutil_is_as_readable for the file on the server returns true
    nothing found on google/metalink
    Kr
    Martin

    Hi all,
    some ... person copied frmwebutil.jar from another server
    with a different version
    solved

  • WebUtil AS_TO_CLIENT Problem

    <9iDS 9.0.2 RedHat 8.>
    I am running a procedure from a shared library, pretty much copied from Frank Nimphius' RUN_REPORT_OBJECT_PROC procedure. This library, and the WEBUTIL
    library, as well as the WEBUTIL object group is attached to my form. If I comment out the call to XXXX.RUN_REPORT_OBJECT_PROC my WEBUTIL_FILE_TRANSFER.AS_TO_CLIENT function works fine, but as soon as I put the RUN_REPORT_OBJECT_PROC before the AS_TO_CLIENT call, it runs the report ok, then when it gets to AS_TO_CLIENT the form crashes and I get this in the Java Console:
    oracle.forms.net.ConnectionException: Forms session <16> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    I tried switching the order of the attached libraries.

    Francois Degrelle wrote:
    - be sure that the first argument is the client machine file and the second the server file
    FRancois
    It is OK
    Francois Degrelle wrote:
    - at runtime, display the Java console to see if there is any error message
    FRancois
    No Errors
    Francois Degrelle wrote:
    - try another function in the Webutil_File_Transfert package
    FRancois
    I have tried client_to_db successfully

  • How to delete file from application server(Unix)

    Hi All,
    Using the below code downloading a file from application server(Unix) to client machine. I want to delete the file from application server once it is downloaded to client
    We work on Forms 11.1.1.4.0 and Oracle DB 10g. Client machine are Windows 7.
    BEGIN
      IF webutil_file_transfer.AS_to_Client
      (clientFile => Name_In('global.g_file_name')
      ,serverFile => ls_AppServer_Loc)THEN
      message('Data exported Successfully');
      ELSE
       message('File download from Application Server failed');
      END IF;
    EXCEPTION
      WHEN OTHERS THEN
      message('File download failed: '||SUBSTR(sqlerrm,1,200));
      END;
    I have search for solution on OTN. Few suggested to use HOST.
    Can any one help me how to use Host() built_in to delete the file.
    Thanks,
    Maddy

    Can any one help me how to use Host() built_in to delete the file.
    Host('/bin/rm <complete file path>');

  • File Transfer From Unix server to Windows Client System Using WebUtil

    Hi all,
    I want to Transfer a File from Unix Server to Window Client System using Webutil. But below mention code is not working.
    DECLARE
         V_Server_Path VARCHAR2(500) := Null;
         V_Client_Path VARCHAR2(500) := Null;
    BEGIN
         V_Server_Path := '/proj/oraapps/viper/dev/reports/cache/Saveauftr.txt';
         V_Client_Path := 'C:\Migration\EU_Applications\Lima\OAS_WorkArea\Client\Saveauftr.txt';
         IF WebUtil_File_Transfer.Is_AS_Readable(V_Server_Path) THEN
         IF WebUtil_File_Transfer.AS_To_Client(V_Client_Path,V_Server_Path) THEN
              Message('Downloading the File ..... .... ... .. .');
              Message('Downloading Was Successfull ...');
              Message('File Transfer from Server Was Successfull ...');
         END IF;
    END IF;
    END;
    Can anyone suggest me,Why the above code is not working and what to do for solve the Problem.
    Regards
    Gany

    Hello,
    You have more chances to get an answer in the Oracle Forms OTN Forum :
    Forms
    Regards

  • Webutil file transfer problem

    I have a problem, I am using webutil_file_transfer.AS_To_Client to copy a file in a directory, but when I want to delete the original file with webutil_file.delete_file I get the error that the file is in use and it remains blocked until I close the application and the console of Java is closed too.
    How can I solve this?
    Thanks in advance.

    v_origen := 'C:\archivo.pdf';
    v_destino := 'D:\archivo.pdf';
    l_success := webutil_file_transfer.client_to_As(v_origen,v_destino,false,null);
    if l_success then
    SET_ALERT_PROPERTY('ALT_INFO',ALERT_MESSAGE_TEXT,'File saved);
    ALERTA := SHOW_ALERT('ALT_INFO');
    else
    SET_ALERT_PROPERTY('ALT_INFO',ALERT_MESSAGE_TEXT,'ERROR File not saved);
    ALERTA := SHOW_ALERT('ALT_INFO');
    end if;
    -- delete de original file
    l_success := webutil_file.delete_file(v_origen);
    if l_success then
    SET_ALERT_PROPERTY('ALT_INFO',ALERT_MESSAGE_TEXT,'Deleted OK);
    ALERTA := SHOW_ALERT('ALT_INFO');
    else
    SET_ALERT_PROPERTY('ALT_INFO',ALERT_MESSAGE_TEXT,'Deleted NOT OK);
    ALERTA := SHOW_ALERT('ALT_INFO');
    end if;
    The first message is l_success=true, the second message is l_success=false.
    I want to copy the file of a directory to other one and to delete the original one (to move the file).

  • Webutil_file.copy_file slow in copying files

    Hi All,
    I've read about this problem previously and I'm finally suffering from it myself.
    It took between 5 and 10 minutes to copy a 500k file between two network drives connected to my client. How slow is it going to be for the 100Mb files we will want to copy?
    Has anyone found a solution? IS the only speedy alternative to use client_host and the copy command? I was hoping that the webutil_file.copy_file was a more elegant solution to the file copying process!!!
    TIA
    Tony

    Hello Tony,
    That would be fine if I wanted to transfer from the AS to the client.
    But I want to transfer between two network drives on the client,
    these drives are not visible to the AS at the moment.My understanding is that the functions are executed on the client and therefor the network drives have to be visible to the client and not to the AS.
    But currently i'm working in the OC4J and my server and client are the same.
    So it is not really tested.
    Is the AS to client copy much faster than the copy_file on the client?
    Why would that be? Is it access to network drives on the client that is slow?Yes it is faster. The procedures use different implementations. Files don't get divided in chunks when webutil_file_transfer.AS_to_Client is used.
    Bernd

  • WebUtil File transfer

    Hi
    Can anybody give me example of WEBUTIL_FILE_TRANSFER_AS_TO_CLIENT(I want to transfer file from AS to Client).
    Thanks in advance
    Murthy

    If WEBUTIL_FILE_TRANSFER.AS_to_client( 'client_file_name', 'AS_file_name') Then
    Else
         message('!!! Transfert error : client_file_name !!!');
    End if ;

  • Wut 118 application server file abc.prn does not exist or is of zero length

    dear members,
    I am printing a character mode report which gives the following error:
    "wut 118 application server file c:\abc.prn does not exist or is of zero length"
    my code on when-button-pressed is here:
              declare
                   repid REPORT_OBJECT;
                   v_rep VARCHAR2(200);
                   rep_status VARCHAR2(50);
                   report_name varchar2(100);
                   v_path varchar2(200);
                   rep_server varchar2(50);
              BEGIN
                   select parameter into rep_server from mis where parameter_type = 'REPORT_SERVER';
                   report_name := 'C:\TEMP\abc.prn';
                   repid := find_report_object('reports');
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,:global.report_path||'abc123.rdf');
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,:global.report_path||'dflt.prt');
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,report_name);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,REP_SERVER);
    PF_FGOWGPNO='||:FG_DISPATCH_M.FGOWGPNO||' PF_FISCAL_YEAR='||:FG_DISPATCH_M.XFISCAL_YEAR||:FG_DISPATCH_M.XFISCAL_YEAR||' P_USERNAME='||:DUMMY.USER);
    PF_FGOWGPNO='||:FG_DISPATCH_M.FGOWGPNO||' PF_FISCAL_YEAR='||:FG_DISPATCH_M.XFISCAL_YEAR);
                   SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no PF_FGOWGPNO='||:FG_WH_INTERCHANGE.FG_TRANSIT_ID||' PF_FISCAL_YEAR='||:FG_WH_INTERCHANGE.XFISCAL_YEAR||' PRINT_IT='||:DUMMY.PRINT_IT);
                   v_rep := RUN_REPORT_OBJECT(repid);
                   rep_status := REPORT_OBJECT_STATUS(v_rep);
                   WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
                        rep_status := report_object_status(v_rep);
                   END LOOP;
                   IF rep_status = 'FINISHED' THEN
                        --WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repsrv10g','_blank');
                        NULL;
                   ELSE
                        message('Error when running report');
                   END IF;
                   exception
                        when others then
                        message(sqlerrm);
                        raise form_trigger_failure;
                   END;
                   declare
                        a boolean;
                   begin
                        a := webutil_file_transfer.as_to_client('c:\temp\abc.prn','c:\temp\abc.prn');
                   end;               
                   begin
                        client_host('cmd start /c type c:\temp\abc.prn > prn');
                   exception
                        when others then null;
                   end;Regards:

    Disregard my last. I see what you are doing. You are using file transfer to move the file to the local machine. It was confusing because the paths are the same.
    I would suggest adding a SYNCHRONIZE after the file transfer and before the attempt to print. It might even be a good idea to add some error handling code to verify that the file has been copied and can be found. This will allow you to better deal with situations where the file doesn't get written for some reason. WebUtil offers some functions to check for file existence and size.
    Also, if you are using Java 7U21, this may cause some issues with your CLIENT_HOST call.

  • Webutil Error WUT-131

    I am on this exercise because I am trying to print a report to local printer, and I am on the web based environment. I am trying to use the pdfp.exe available online to accomplish my task.
    /***********************************C O D E****************************************/
    declare
    declarations...
    begin
         :global.user_home := webutil_clientinfo.get_system_property('user.home');
    go_block('bl_main');
    first_record;
    loop
    lnu_mst_rec := lnu_mst_rec + 1 ;
    i := 0;
    go_block('bl_dtl');
    first_record;
    loop
    if :bl_dtl.victim_full_name is not null then
    /*creating report parameters*/
    rp2rro.setDestype('FILE');--destination is file
    if :bl_main.sbi_no is not null then
    lvc_count := lvc_count + 1;
    lvc_file := 'vtn_vnwl' ||lvc_count||'_'|| :bl_main.sbi_no||'.pdf';--filename
         tool_env.getvar('VISITATION_REQUEST_PATH',v_path);
         --fname VARCHAR2(200) := '"'||:global.user_home||'\vtn_vnwl4_00999998.pdf"';
    lvc_loc_file := '"'||:global.user_home||'\'||lvc_file||'"';--target file in client directory
    lvc_sfile := v_path||lvc_file;--report in report server
    lvc_server_executable := v_path||'pdfp.exe';
    end if;
    rp2rro.setDesname(lvc_sfile);
    rp2rro.setOthers('DESFORMAT=PDF');
    /* calling the right report*/
    IF ltrim(rtrim(:bl_main.VICTIM_NTFC_RESN)) = '7' then
    rp2rro.rp2rro_run_product(REPORTS, 'vtn_vnwl_pardon', SYNCHRONOUS, RUNTIME,FILESYSTEM, pl_id, NULL);
    ELSIF UPPER(:bl_main.VICTIM_NTFC_RESN) = '6' then
    rp2rro.rp2rro_run_product(REPORTS, 'vtn_vnwl_parole', SYNCHRONOUS, RUNTIME,FILESYSTEM, pl_id, NULL);
    end if;
    END IF;
    /*this is to check if the report exists*/
    begin
    my_file := text_io.fopen(lvc_sfile,'R');
         if text_io.is_open(my_file) then
         :parameter.file_exist := 'TRUE';
         text_io.fclose(my_file);
         end if;
         exception
         when e_file_not_found then
         :parameter.file_exist := 'FALSE';
         when others then
         :parameter.file_exist := 'N/A';
         end;
         if :parameter.file_exist = 'TRUE' then--if report was created on the server
         v_bool := webutil_file_transfer.as_to_client(lvc_loc_file, lvc_sfile);-- transferring report
    /******ERRROR***************/
    WUT-131 cannot create client file => invalid client file name
    while my file name reads
    "C:\Documents and Settings\vijay.krishna\vtn_vnwl4_00999998.pdf"
    /********************************ERROR*************************************/
    help me out!
    thanks
    vijay krishna

    Try sending the file to the client machine where the directory path has no spaces.
    L :-)

Maybe you are looking for

  • I have a plane which is in effect till march but I also registered and payed for a teacher plan.

    Today I'm in a plan which is in effect till march but I also registered and payed for a teacher plan. How do I see both in my Adobe ID? Will I'll receive a receipt every month (I need to give it to my accountant)  since I see that I got a confirming

  • Backup software for 10.2.8

    OK, now that I have an external hard drive - I am trying to backup my Mac on OS 10.2.8. Per input here, I checked out Super Duper. This program does not seem to support OS 10.2.8. I want to back up, but really do not have time to fool with a complica

  • DQM moving data from STREET 2 field in SAP to STREET 3 field

    During the address cleanse function by DQM, it is currently taking the information I have supplied in SAP field STREET2 and moving and/or copying  it to STREET3. Does anyone know what is causing this or what the logic is being used to determine that

  • Mac OS X Standard sounds stop working

    Hi guys, Just all of the sudden the typical standard sounds like empty the trash can does not execute anymore. I don´t see why and how can I solve this issue. I tried the Sound into Preference, but dunno what to change. Any help? Thanks and best, Seb

  • Unable to Access OS X Samba Shares (from Win98 machine) after 10.4.6

    I've got a Windows 98 machine networked with my Mac. Under OS X, I used Share Points to setup shares on the Mac, which I was able to access fine from the Windows 98 (not SE) machine. Until I installed 10.4.6. Now when I try to access the same shares