Problems opening files on Win2003 Server in Tiger

I posted this as a reply to another thread, but got no response; so I am posting in a new thread in hopes of getting some insight.
I am in a largely Windows-based company, but work in a small Mac-based department. We recently relocated into new offices, and the new environment is run on a Windows 2003 server (our old offices were on a Windows 2000 server).
My issue is that when I try to double-click an icon, drag an icon to the Dock, or open with keyboard shortcuts, the application launches, but either a) no file opens, b) the wrong file opens, or c) a file opens that is comprised of a single column of pixel information. The only way I can open a file is via File>Open through the application, and even that does not seem to deter problems b and c (it only works around problem a).
My computer is a PowerMac G5 running OS X 10.4.4 -- oddly, our 10.3.x users do not appear to have this issue. And I never had any problems on the W2K server. So I'm sure there's something with the new 2003 server and 10.4, but I've searched through the threads and didn't see anything exactly like my issue.
Any thoughts? Are there server settings that may have been missed by our IT department? Or is there something I need to set on my Mac? Any help would be greatly appreciated.

Hi Krishna,
try to use:
    response->set_header_field( name = 'Content-Type'
                                value = 'application/vnd.ms-excel' ).
to set the correct content type for the file (example above Excel).
Also place the coding in the OnRequest Event and not on the Layout of the page with flow logic. As an alternative you can use a controller with a controller class. In there redefine the method do_request and place the coding for creating the response therein. The coding should look similar to:
*  send back the file
    response->set_header_field( name  = 'Content-Type'
                                value = ls_file-content_type ).
  response->delete_header_field( 'Cache-Control' ).         "#EC NOTEXT
  response->delete_header_field( 'Expires' ).               "#EC NOTEXT
  response->delete_header_field( 'Pragma' ).                "#EC NOTEXT
  CONCATENATE 'inline; filename="' ls_file-name INTO lv_string.
  response->set_header_field( name = 'Content-Disposition'
                              value = lv_string ).
  response->set_data( ls_file-content ).
In the example above lv_string has type string and ls_file is a structure containing strings for name and content-type and an xstring for the file content.
I usually don't set the content length as I have enabled compression and then the icm calculates the content length for me after compression.
Hope that helps.
Best Regards
Michael

Similar Messages

  • Problem opening file in application server received by FTP.

    Hi,
    I am using FTP_COPY to receive file in application server.
    I am receiving file from FTP but I am unable to open them because the mode was set as 640 as in attributes.
    Could you please help me in how to receive in readable format...
    Any suggestions to use FTP commands?
    Thanks in advance.

    If you do not have authorizations to open the file its easy: there is nothing you can do except contact the ftp admin.

  • Problems opening files from Windows server

    Since upgrading to Leopard, some files saved on an Windows server no longer open in the correct application. For example, documents created in Quark 6.1 or 6.5 show up as Unix Executable Files and attempt to open in the terminal. Copying the file to my desktop does not help. The files work correctly for pre-Leopard Macs. New files saved from Quark 6.5 on a machine running Leopard onto the server work fine for other Leopard Macs, but pre-Leopard Macs try to open the files with Script Editor. I can change the "Open With" preferences in a get info window for individual files, but if I select "Change All", i get an error that "not enough information is available".
    Also, Photoshop EPS files created with pre CS 1 versions of Photoshop appear as Illustrator EPS files.

    I'm not sure if anyone is working on it.
    I did copy everything to the Mac running 10.3.9 (above I mistakenly said the computer I was going to copy to was running 10.4).
    I then updated the Mac to 10.5 and all the files continued to open with the proper program even after I put them back on the server.
    I know that it's a hassle, but it worked. I guess if you don't have another Mac still running 10.3, you could put everything on your server, reformat you Mac to OS 10.3.9, then copy the server to your Mac, then upgrade to 10.5. That is, if you have a large enough hard drive. I don't claim to be a Mac expert so I can't guarantee anything in this paragraph. It just seems like that would be the only logical step given what worked for me with upgrading the computer running 10.3.9. Even after doing that, I'd then do a clean install on the computer. My Mac was having problems so that's what I did and plan on doing to the other Mac when I get the chance.
    I guess it all depends how many files you have and how annoyed you are at having to Control click all your files to open them.

  • InfoSpoke fails with message "Could not open file on application server"

    BW Experts,
    I created an InfoSpoke that is configured to extract to a flat file. The name of the file is specified using a logical filename. During extraction, the infospoke reports the error message "Could not open file on application server" adnd  marks the extraction process as red(failed). I have tried to run the InfoSpoke in background mode and in dialog mode and the same error appears. After i run in dialog mode, i checked SU53 for authorization errors and did not find any. I also tried changing the Logical filename setup in transaction FILE to a more "friendly" directory in which i'm sure i have authorizations (e.g. my UNIX home directory) and im still getting errors.
    Can you please share your thoughts on this? Any help will greatly appreciated. I also promise to award points.

    Hi Nagesh,
    Thanks for helping out.
    If i configure the InfoSpoke to download to a file using "File Name" option and also check the "Application server" checkbox, the extract works correctly (extraction to the defualt SAP path and filename=infospoke name). If i configure the InfoSpoke to download to the local workstation, the InfoSpoke also works correctly. It's only when i configure it to download to the application server and use the "Logical filename" option, that i encounter a failed extract.
    Here are the messages is the Open Hub Monitor:
    (red icon) Request No.147515
    0 Data Records
    Runtime 1 sec.
    (red icon)Run No. 1
    0 Data Records
    Runtime 1 sec.
    Messages for Run
    Extraction is running RSBO 305
    Could not open file on application server RSBO 214
    Request 147515 was terminated before extraction RSBO 326
    Request 1475151: Error occured RSBO 322
    If i clink on the error message, no messages nor clues are displayed. Note, this is a new InfoSpoke that is currently in the dev system.
    Please help.

  • The dialog box open twice when open file from the server

    I use the following code to download/open file from the server:
    <%
    String filename = "MengxianhuiDocTest.doc";
    String filepath = "D:\\";
    response.setContentType("APPLICATION/OCTET-STREAM");
    response.setHeader("Content-Disposition",
    ??attachment; filename=\"" + filename + "\"");
    java.io.FileInputStream fileInputStream =
    new java.io.FileInputStream(filepath + filename);
    int i;
    while ((i=fileInputStream.read()) != -1) {
    out.write(i);
    fileInputStream.close();
    out.close();
    %>
    If the application runs, the Open or Save dialog box display.When I select open the file,
    the dialog box will display twice.
    Pls help me.
    Thanks.

    thx
    but I tried it and it did't work.
    The dialog box also display twice.

  • I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. Some contacts have problems opening files sent by me using Mail too. This was never a problem on pre-Intel. A real Mac **** up !

    I'm using OS 10.6.8 and Mail 4.5. When I receive mails with attachments which are visible the save button doesn't work. And some contacts occasionally have problems opening files sent by me using Mail too. This was never a problem on pre-Intel Mac. A real Mac **** up ! Any ideas ?

    Can you drag and drop the attachments visible in the email to the Desktop OK or does that fail ?
    Re the sending: Are these recipients on Mac's or PC's as the file type could be an issue, if on Mac's then try setting the Mail Preferences Composing setting to Plain Text not Rich Text and see if that improves things.

  • I am running windows 8, 64 bit, & suddenly have a problem opening files, I have to keep re-booting

    I am running windows 8, 64 bit, & suddenly have a problem opening files, I have to keep re-booting - is there anything in preferences I can change?

    The clipboard error means that the OS or some other application messed up when placing data on the clipboard.
    The reboot to open files means that something has gone wrong at the OS level (otherwise just relaunching Photoshop would work).  We've heard from a few other users with that problem, but never heard back from them what was wrong with their system to cause that behavior.  My guess is a bad driver or malware.

  • Having problem opening files with gradients in CS2

    When I try to open an illustrator 9 file from CS2, I get "An unknown error has occurred." message. I believe this may be a CS2 problem because when I checked further, I discovered that only AI 9 files where the gradient feature was used were affected. Any suggestions would be appreciated.

    Hi Sjmitc, I followed Barbara's instructions about only about 24 hours ago and since then my files have been opening perfectly.  I tried it again before replying to you and they are still opening fine.
    I did have to go through my files a couple of times to find all the Elements preferences, but the solution is working fine so far.  I will let you know if I have any further problems.  It is maddening when it happens, so I hope you can fix yours.
    Best of Luck 
    Date: Wed, 6 Nov 2013 18:23:28 -0800
    From: [email protected]
    To: [email protected]
    Subject: Problem opening files with Mac OS Mavericks and Elements
        Re: Problem opening files with Mac OS Mavericks and Elements
        created by sjmitc in Photoshop Elements - View the full discussion
    Henwen, Is this solution still working for you? I tried this same solution on mine a few days ago and had no luck. However, it actually let me open files this afternoon then when I went back in later today, it was doing the disappearing act again.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5821793#5821793
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5821793#5821793
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5821793#5821793. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Problem opening files with Mac OS Mavericks and Elements

    I have recently installed Mac OS 10.9.x Mavericks.  Since this I have had problems opening files in Elements 11.  I upgraded to Elements 12, blindly hoping the problem would fix itself, however it hasn't.   When I try to open a file the Finder window pops up then disappears immediately.  Occasionally it will stay open until I scroll down but then closes.   I keep the files on an external drive but the drive is working with all other applications, so I don't think it is that.  If anyone has had a similar problem and has any ideas I would be grateful as the program is unusable for now.  Thanks very much in anticipation

    Hi Sjmitc, I followed Barbara's instructions about only about 24 hours ago and since then my files have been opening perfectly.  I tried it again before replying to you and they are still opening fine.
    I did have to go through my files a couple of times to find all the Elements preferences, but the solution is working fine so far.  I will let you know if I have any further problems.  It is maddening when it happens, so I hope you can fix yours.
    Best of Luck 
    Date: Wed, 6 Nov 2013 18:23:28 -0800
    From: [email protected]
    To: [email protected]
    Subject: Problem opening files with Mac OS Mavericks and Elements
        Re: Problem opening files with Mac OS Mavericks and Elements
        created by sjmitc in Photoshop Elements - View the full discussion
    Henwen, Is this solution still working for you? I tried this same solution on mine a few days ago and had no luck. However, it actually let me open files this afternoon then when I went back in later today, it was doing the disappearing act again.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5821793#5821793
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5821793#5821793
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5821793#5821793. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Photoshop Elements at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • ZENworks 11 problem opening files

    we have a problem opening files that are located in folders with spaces in their names.
    for example; I am trying to open an excel file named test.xlsx located in "S:\Test Folder\Excel Files"
    I have created a bundle that opens the text.xlsx... our older version of ZEN had no issues with this but with ZEN 11 I get the following errors:
    1. the file Test cannot be found
    2. the file Folder\Excel cannot be found
    3. the file Files\test cannot be found
    Seems like it breaks it down everytime it sees a space in the name... anyone know the cure for this?
    Thanks.

    Jeffb6000,
    Jeff, this forum is for the product ZENworks Package Management, i.e.,
    Adminstudio, sounds like you have a general query about bundles, and
    there's a forum for that. If you want to post in the
    novell.support.zenworks.configuration-management.11.bundles.windows
    forum, someone can help - do make sure you say exactly how you are
    specifying the path, and how the action is being run (if it's not run
    as the logged-in user, you won't see the mapped drives for example)
    Shaun Pond

  • Lion Preview and Textedit very slow when opening files from Leopard Server

    My small office (about 10 users) recently upgraded our iMac's, Mac Mini's, and Macbook Pro's.  We are experiencing a big problem with Preview opening super slow (1-2 minutes) when trying to open JPG's, PDF's, etc from our 10.5.8 Leopard Server.  We have deleted numerous plist files related to Preview, completely deleted Preview.app from one iMac and reinstalled it via Pacifist and still no change in performance.  One of the new iMac's does open much faster than the others, but we cannot figure out why this one machine works well and the others don't.
    All machines are showing the below error (dozens of times) in Console when trying to open files directly from the server...
    sandboxd:  ([###])  Preview(###) deny system-fsctl
    We have searched the internet for a solution but have not come up with anything that works.  This problem exists with Textedit as well.  We did try opening a file from one Lion machine to the other and it opened very fast.  We also can open files very quickly from older 10.4.11 Tiger machines directly from the server.  So the best we can determine right now is Lion and Leopard Server are not playing nicely together.
    Any help would be greatly appreciated.
    I have pasted (one of) the console log files below for reference.
    Preview(3364) deny system-fsctl
    Process:         Preview [3364]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Load Address:    0x102c9a000
    Identifier:      Preview
    Version:         ??? (???)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [114]
    Date/Time:       2012-04-24 13:28:40.470 -0700
    OS Version:      Mac OS X 10.7.3 (11D50d)
    Report Version:  7
    Backtrace:
    0   libsystem_kernel.dylib                  0x00007fff922a0516 fsctl + 10
    1   AppleShareClientCore                    0x0000000105629f4a afp_getMountURL + 112
    2   afp                                     0x0000000104e7fe03 AFP_GetMountInfo + 161
    3   NetFS                                   0x00007fff8a17c295 NetFSGetMountInfo + 147
    4   NetFS                                   0x00007fff8a17e08f GetCompleteMountURL + 68
    5   CoreServicesInternal                    0x00007fff86ef1e51 _ZL29addVolumeInfoForURLToBookmarkPK13__CFAllocatorR19BookmarkMutableDataPK7__C FURLmjPK9__CFArrayPP9__CFError + 1535
    6   CoreServicesInternal                    0x00007fff86ef12fb _ZL28createBookmarkWithURLAtDepthPK13__CFAllocatorPK7__CFURLmS4_PK9__CFArrayR19 BookmarkMutableDatajbPP9__CFError + 3230
    7   CoreServicesInternal                    0x00007fff86ef2443 _CFURLCreateBookmarkData + 1309
    8   CoreFoundation                          0x00007fff8d1e3219 -[NSURL bookmarkDataWithOptions:includingResourceValuesForKeys:relativeToURL:error:] + 105
    9   Foundation                              0x00007fff91b72fbf -[NSURL(NSURL) encodeWithCoder:] + 239
    10  Foundation                              0x00007fff91b2e4ed _encodeObject + 1120
    11  Preview                                 0x0000000102cdfb4d
    12  AppKit                                  0x00007fff90975f0b -[NSWindow encodeRestorableStateWithCoder:] + 316
    13  AppKit                                  0x00007fff90974a00 -[NSPersistentUIRecord generateArchive:] + 177
    14  AppKit                                  0x00007fff90975937 recursivelyEncodeInvalidPersistentState + 525
    15  AppKit                                  0x00007fff90973ccc -[NSPersistentUIManager flushAllChangesOptionallyWaitingUntilDone:updatingSnapshots:] + 1128
    16  AppKit                                  0x00007fff90973836 -[NSPersistentUIManager flushPersistentStateAndClose:waitingUntilDone:] + 182
    17  AppKit                                  0x00007fff90973714 __-[NSPersistentUIManager acquireDirtyState]_block_invoke_1 + 53
    18  libdispatch.dylib                       0x00007fff8a79b2b6 _dispatch_source_invoke + 635
    19  libdispatch.dylib                       0x00007fff8a797f77 _dispatch_queue_invoke + 71
    20  libdispatch.dylib                       0x00007fff8a7986f7 _dispatch_main_queue_callback_4CF + 257
    21  CoreFoundation                          0x00007fff8d0da06c __CFRunLoopRun + 1724
    22  CoreFoundation                          0x00007fff8d0d9676 CFRunLoopRunSpecific + 230
    23  HIToolbox                               0x00007fff86aa731f RunCurrentEventLoopInMode + 277
    24  HIToolbox                               0x00007fff86aae5c9 ReceiveNextEventCommon + 355
    25  HIToolbox                               0x00007fff86aae456 BlockUntilNextEventMatchingListInMode + 62
    26  AppKit                                  0x00007fff90918f5d _DPSNextEvent + 659
    27  AppKit                                  0x00007fff90918861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    28  AppKit                                  0x00007fff9091519d -[NSApplication run] + 470
    29  AppKit                                  0x00007fff90b93b88 NSApplicationMain + 867
    30  Preview                                 0x0000000102c9bdb4
    Binary Images:
           0x102c9a000 -        0x102e7efef  com.apple.Preview (5.5.1 - 719.16) <EE12E506-F88C-319F-A2B4-5EF997884F0C> /Applications/Preview.app/Contents/MacOS/Preview
           0x104e7f000 -        0x104e86fff  com.apple.URLMount.AFPPlugin (4.0 - 4.0) <91C71C5D-562D-37C4-9131-6E6F086288DE> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
           0x105618000 -        0x105664ff7  com.apple.AppleShareClientCore (2.5 - 2.5) <CC62F28C-398E-35E2-B2C0-B85A02E57247> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
        0x7fff86aa5000 -     0x7fff86dcfff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff86eec000 -     0x7fff86f17ff7  com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8a17a000 -     0x7fff8a181fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8a795000 -     0x7fff8a7a3fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff8d0a1000 -     0x7fff8d275fff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff90910000 -     0x7fff91514fff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff91ae2000 -     0x7fff91dfbff7  com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff92289000 -     0x7fff922a9fff  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib

    "Enable Related Files" isn't the fix for this issue. It's slightly different - I wanted to still load related files, but only the ones local to the file I was editing.
    The fix was to use DW's Resolve To IP Address feature. It required adding a registry value - it fixed the issue straight away
    This Adobe support doc helped: http://kb2.adobe.com/cps/887/cpsid_88742.html

  • Dreamweaver reports file "not found" when attempting to open files from SMB server...

    User's work-files are hosted on a Windows Server 2003 SP2 volume accessed via SMB. She's been opening and saving the files from the server successfully in Dreamweaver for years from other Macs running Dreamweaver CS4.
    Now she has an iMac running 10.7.4 and Dreamweaver CS6... and it's not the SMB problem you'd expect.
    She mounts the server volume. She opens and saves files normally with full r/w permissions from any app... except Dreamweaver. For any file that she attempts to open in Dreamweaver -- whether from the Finder or from within Dreamweaver -- Dreamweaver pops up an alert reporting that the file at the file-path was not found. The same file is easily accessible from other apps and from the Finder. She continues to have full read/write access to the shared volume.
    Local copies of the files do not have the problem. It only affects files hosted on the server and it only happens in Dreamweaver.
    So, I create a new user account and everything works fine... The user mounts the sharepoint, opens a file with Dreamweaver... perfectly normal. Then she quits Dreamweaver and relaunches it... everything's fine. Repeatedly. It all works normally. She quits Dreamweaver and unmounts the share, then she mounts the share again and tries to open a file in Dreamweaver again... and it reports that the file was not found.
    This is reproducible: If the server volume has been mounted and unmounted repeatedly under any user account, that triggers the error which continues occurring under that user account from that point on. A restart will not fix it. A safe-boot will not fix it. (In fact, restarting seems to trigger the problem by unmounting the volume.)
    I tried trashing the entire contents of the ~/Library folder in one of the test-user accounts. It doesn't fix the problem. Once it strikes a user account, the only temporary fix seems to be using a new user account. And that's like a ticking time bomb just waiting for the problem to pop up again.
    Any ideas?
    TIA!!

    I've seen on two computers so far. Looking at the mount point under unix, the share is being mounted at two different locations. This is normal behaviour for Macs when you mount two different shares with the same name.
    From terminal I run:
    df
    Which returns something like
    /dev/disk0s2                           1951845952 224463456 1726870496    12%    /
    devfs                                         360       360          0   100%    /dev
    map -hosts                                      0         0          0   100%    /net
    map auto_home                                   0         0          0   100%    /home
    //[email protected]/website  204360384  38067872  166292512    19%    /Volumes/website
    //[email protected]/website  204360384  38067872  166292512    19%    /Volumes/website-1
    map -fstab                                      0         0          0   100%    /Network/Servers
    Notice that the share "website" has been mounted once as website, and again as website-1. This is the underlying unix name for the share, which is how most programs (99% sure including Adobe suite products) will reference files. So, if it thinks that the file is at /Volumes/website/site/index.html but can only see /Volumes/website-1/ then it doesn't know what to do.
    The confusion arises because both will show in Finder as "website". Even more annoying is that Finder does not always unmount shares correctly, so that /Volumes/website might not be accessible but /Volumes/website-1 will be. As far as the user is concerned, the share "website" is still mounted, but as far as Dreamweaver is concerned, it isn't, although website-1 is.
    It's the same share, same data, but is being referenced by different names, so does not seem accessible.
    BUT
    I don't have a solution yet, apart from force unmounting both (or rebooting), remounting, and checking that Dreamweaver is using the right share (perhaps by removing and readding from within Dreamweaver).
    Tedious.

  • Acrobat 9.1.3 problems opening files

    Hi,
    I'm having problems opening some files with Adobe Acrobat Reader 9.1.3 and Windows XP and Vista.  The problem also exists in other versions of Acrobat reader as well.  I updated to the latest version hoping it would fix things.  The problem is when I double click an Acrobat file, no matter where I save it, it starts Acrobat reader and then freezes.  This does not seem to be the case with ALL acrobat files, mainly ones created in Excel and saved using the save as pdf utility provided by Microsoft.  I have to forcibly quit Acrobat reader from the task manager.  I have found that if I start Acrobat reader first that I can open the file by using the open command in the file menu.  If I e-mail the file to someone else they are unable to open it unless they go through the same procedure I do.
    Any thoughts as to what may be wrong?  Any help would be greatly appreciated!

    Thanks for the response! I should have been a little more clear, though. The software is installed on and being run off of each of the individual local machines. The server just manages the users' home folders.
    David Rither  
    Seattle Pacific University
    Art Center

  • WebUtil Problem - Open File - Francois Degrelle  Please reply

    Dear Francois
    I'm facing a problem file trying to open file dialogue
    1. Created a Module with two items 1. Push button 1. Text Item
    2. Created trigger "When Button Pressed" with code
    DECLARE
         LC$Path VARCHAR2(250);
         LC$File VARCHAR2(275);
    BEGIN
         LC$Path := CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory;
         LC$File := WEBUTIL_FILE.FILE_OPEN_DIALOG(LC$Path,'','|All files|*.*|','Select a file to upload');
         MESSAGE('File Selected : '||LC$File);
         :OPENFILE.TX_FILENAME := LC$File;
    EXCEPTION
         WHEN OTHERS THEN
         MESSAGE(sqlerrm);
    END;
    4. Attached PL/SQL Lib webutil.pll (with path removed option) as well as with Path ( tried both option to get rid of my problem)
    5. Open webutil.olb in object Lib
    6. Did both "subclass" as well as "Copy" in Object Group ( tried both option to get rid of my problem)
    Now ....
    Run Form --- Forms run perfect and "Open File Dialogue" comes up, can select file, move directories up/down and file name with path gets copied to text item
    Problem
    Now I save the form and close Builder and OC4J Server
    Now start Oc4J and Open this form again
    Try to complie the form and run the form then I get this error
    "FRM-92101 There was a failure in the forms Server during startup. This could happen due to invalid configuration.
    Please check the webserver log for detail"
    Another Problem , if do any combination of "Webutil.pll" (copy Path) or "Webutil.olb" (Subclass)
    I don't get First Problem but get "WEBUTIL_C.API_REGISTER_FUNCTION" werror.
    Interestingly
    I downloaded your example "WEBUTIL_DOC.fmb" and ran many times I DON"T GET THIS ERROR
    I have configured WBUTIL as per webutil manual.
    I'm using DeveloperSuite 10g (complete installation) version 10.2 On Windowx XP prof.

    Apologies for mentioning your name as I used one of your example to do it myself.
    Just thought that you will be right person to understand my problem.
    Apologies again from you and everyone on forum

  • Error opening files on a server "Application is missing" for every file type

    Hello,
    I have got quite a strange problem with Maverick and a server (Isilon NAS).
    When we connect to this server, with SMB or CIFS, it's impossible to open a file because "The application is missing". They are .PDF or .XLSX files mainly, so nothing exotic.
    If we copy those files locally we are able to open them. The problem is only happening on two new MacBook Pro, we have roughly 40 other various Macs without this bug.
    It's possible to "fix" the problem temporary by connecting to the same server, but on another share : smb://my_server/one_share -> "The application is missing", smb://my_server/another_share -> Working as expected. But next time "another_share" won't work, but "one_share" will...
    We tried to troubleshoot the problem but it looks like a really rare bug, we are going to install the Combo Updates to see if it helps.
    Any suggestion or idea is welcomed.
    Have a nice day

    Hi
    Did you try some steps given in the following article
    "Some files on the server may be missing or incorrect" Warning Message
    See if that helps. Do let me know if you have any question.

Maybe you are looking for

  • Problems Install Financial Reporting 11.1.2 Client on 32 bit machine

    I am having issues installing Financial Reporting 11.1.2 on my 32 bit machine. Per Oracle's read me document I: - Downloaded all of the necessary files - Unzipped them - Placed all of the assemblies files into one assemblies folder with in the system

  • Iphoto 11 installation can't find some of my pics; can't get past errors without crashing

    Back in 2009 when I got my Mac I made a big mistake: I had iPhoto reference my external hard drive for some of my older photos (was trying to save space at the time). I had all new photos going directly to iPhoto (the correct, recommended way). In 20

  • How to Print two layouts into one page

    Hi, I have developed a report by blocked ALV.In this report i have created two blocks. But when i give print out the two blocks are not printing continuously.It is displaying one block in one page and another block in anther page. And i need page num

  • Error message "cannot locate file"

    I purchased a new computer and used Detto Intelli Mover to transfer all my music files. When I opened the library, they all appeared to be there, but when I try to plan anything I get an error message "cannot locate file" This happens with all of my

  • How do I generate a static caption that has an object style applied?

    For instance, I have a photo and have set up a shortcut to generate a static caption. I can apply a paragraph style to it, but I don't see a away to apply an object style that will automatically apply an 11 pt text wrap on the bottom of the text box.