Download file to webserver

I have a csv file that needs to be downloaded to a webserver.
using GUI_DOwnload, the error is  unknown_dp_error        = 14.
Any advice?

Hi,
   If you meant Application Server, then refere the sample code:
      Write error log to application Server
FORM f0020_write_application .
  IF p_f1 IS NOT INITIAL.
    CONCATENATE p_direct p_obj sy-datum text-037 INTO p_f2.
  ELSEIF p_f2 IS NOT INITIAL.
    REPLACE text-036 IN p_f2 WITH text-037.
  ENDIF.
  OPEN DATASET p_f2 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
  IF sy-subrc <> 0.
    EXIT.
  ENDIF.
  LOOP AT i_error INTO wa_error.
    TRANSFER wa_error TO p_f2.
    IF sy-subrc <> 0.
      EXIT.
    ENDIF.
    CLEAR wa_error.
  ENDLOOP.
  CLOSE DATASET p_f2.
Reward points if this Helps.
Manish

Similar Messages

  • How to download  file with Save As dialog

    I am trying to download files with a Save As dialog, according to Jason Hunter's instructions in Jave Enterprise Best Practices.
    String filename = "content.txt";
    // set the headers
    res.setContentType( "application/x-download" );
    res.setHeader( "Content-Disposition", "attachment; filename=" + filename);
    // send the file
    OutputStream out = res.getOutputStream();
    returnFile( filename, out);
    The file content.txt is in the root directory of my webapp. But I get this stack:
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.io.FileNotFoundException: content.txt (The system cannot find the file specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.(FileInputStream.java:64)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.returnFile(FileDownloadServlet.java:43)
         at com.interwoven.cssdk.examples.servlets.FileDownloadServlet.doGet(FileDownloadServlet.java:24)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:432)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:386)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:534)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:530)
         at java.lang.Thread.run(Thread.java:484)

    The root of the webservers changes from server to server and
    sometimes it depends on the path you run webserver exe.
    The best i have found to overcome this kind of problems is by
    using getResourceAstream() method which basically looks at classpath locations only, but still this has some problems like it should kept at the
    specified classpath becoz the getResourceAsStrem() method is not static
    method and it always associated with the class object and the file
    accessing also should be in the same package/classpath.
    by using getResourceastream you cannot look at other places (except classpaths)
    and this should be used only if you looking for .properites definitions.
    the Second best method is
    see you have a file called "context.txt" right
    before you create a file, first create a directory at the root, let say
    "\tmp"
    and then create a file \tmp\context.txt
    and then open an output stream to it either using fileoutputstreamm...
    and then write all output content to servlet/client output stream.
    this will be the best becoz you are specifying the "\" the root
    and this is common for all operating systems and definitely it will create at the root directory either serverroot or harddiskdrives root
    so you will never missout and the exceptin will also not comes along the way
    cheers..
    if you get new thing , let me know
    bye
    with regards
    Lokesh T.C

  • Safari Crashes when attempting to download files

    Ever since I uninstall DAP (Download Accelerator Plus), I can no longer download files. For example, when I click to download a zip or dmg file, (direct http) Safari (2.0 412) crashes with the following message:
    Date/Time: 2006-04-01 20:40:38.474 -0600
    OS Version: 10.4.5 (Build 8H14)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [272]
    Version: 2.0 (412)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 4120000
    PID: 698
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 <Unknown disk fragment> 0x00670c28 0x669000 + 31784
    1 <Unknown disk fragment> 0x0066a208 NPP_SetWindow + 328
    2 <Unknown disk fragment> 0x0066ae74 PrivateSetWindow__FP4_NPPP9NPWindow + 36
    3 com.apple.WebKit 0x95666fdc -[WebBaseNetscapePluginView setWindowIfNecessary] + 88
    4 com.apple.WebKit 0x95666978 -[WebBaseNetscapePluginView updateAndSetWindow] + 60
    5 com.apple.WebKit 0x956666d4 -[WebBaseNetscapePluginView start] + 284
    6 com.apple.WebKit 0x9564fee4 -[WebFrame(WebPrivate) _transitionToCommitted:] + 1260
    7 com.apple.WebKit 0x9564f51c -[WebDataSource(WebPrivate) _commitIfReady:] + 296
    8 com.apple.WebKit 0x956831ac -[WebDataSource(WebPrivate) _commitLoadWithData:] + 40
    9 com.apple.WebKit 0x9564f27c -[WebMainResourceClient addData:] + 84
    10 com.apple.WebKit 0x9564f1a8 -[WebBaseResourceHandleDelegate didReceiveData:lengthReceived:] + 68
    11 com.apple.WebKit 0x956a9ab0 -[WebMainResourceClient didReceiveData:lengthReceived:] + 136
    12 com.apple.WebKit 0x9564f144 -[WebBaseResourceHandleDelegate connection:didReceiveData:lengthReceived:] + 60
    13 com.apple.Foundation 0x929197f4 -[NSURLConnection(NSURLConnectionInternal) _sendDidReceiveDataCallback] + 564
    14 com.apple.Foundation 0x92917c94 -[NSURLConnection(NSURLConnectionInternal) _sendCallbacks] + 488
    15 com.apple.Foundation 0x92917a30 _sendCallbacks + 156
    16 com.apple.CoreFoundation 0x9075da68 __CFRunLoopDoSources0 + 384
    17 com.apple.CoreFoundation 0x9075cf98 __CFRunLoopRun + 452
    18 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    19 com.apple.HIToolbox 0x9318f1e0 RunCurrentEventLoopInMode + 264
    20 com.apple.HIToolbox 0x9318e874 ReceiveNextEventCommon + 380
    21 com.apple.HIToolbox 0x9318e6e0 BlockUntilNextEventMatchingListInMode + 96
    22 com.apple.AppKit 0x9368c104 _DPSNextEvent + 384
    23 com.apple.AppKit 0x9368bdc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    24 com.apple.Safari 0x00007058 0x1000 + 24664
    25 com.apple.AppKit 0x9368830c -[NSApplication run] + 472
    26 com.apple.AppKit 0x93778e68 NSApplicationMain + 452
    27 com.apple.Safari 0x00002700 0x1000 + 5888
    28 com.apple.Safari 0x00057190 0x1000 + 352656
    Thread 1:
    0 libSystem.B.dylib 0x9000b1e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b13c mach_msg + 60
    2 com.unsanity.ape 0xc0002afc _apeinternal + 3300 (icplusplus.c:28)
    3 com.unsanity.ape 0xc0001910 _apeagent + 64 (icplusplus.c:28)
    4 libSystem.B.dylib 0x9002b1e0 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b1e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b13c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928f6384 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928f62bc -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x95640410 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928e73b4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b1e0 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b1e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b13c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9290e8bc +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x928e73b4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b1e0 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b1e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b13c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x9290f9fc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x928e73b4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b1e0 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002b888 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9002fffc pthreadcondwait + 488
    2 com.apple.Foundation 0x928ee520 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x99bbf50c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x928e73b4 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002b1e0 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9001f1ec select + 12
    1 com.apple.CoreFoundation 0x9076f9a8 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b1e0 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9000b1e8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b13c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928f6384 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928f62bc -[NSRunLoop run] + 76
    6 com.apple.Safari 0x00035c18 0x1000 + 216088
    7 com.apple.Foundation 0x928e73b4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b1e0 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000000670c28 srr1: 0x000000000200f030 vrsave: 0x00000000fff00000
    cr: 0x22022222 xer: 0x0000000020000004 lr: 0x000000000066bdb4 ctr: 0x0000000000000000
    r0: 0x0000000000000000 r1: 0x00000000bfffe090 r2: 0x00000000018e6c00 r3: 0x00000000bfffe0c8
    r4: 0x00000000bfffe0d7 r5: 0x00000000ffffffff r6: 0x00000000000c9ede r7: 0x00000000442f39a6
    r8: 0x00000000000356b0 r9: 0x000000000000000c r10: 0x0000000043300000 r11: 0x00000000a073b2d4
    r12: 0x0000000090126674 r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000001
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000008e4f r19: 0x0000000000000000
    r20: 0x000000002441289f r21: 0x00000000a28d95c0 r22: 0x00000000053a8250 r23: 0x0000000000000000
    r24: 0x00000000004d9700 r25: 0x00000000a563f9f8 r26: 0x0000000000000000 r27: 0x0000000000000000
    r28: 0x0000000005812750 r29: 0x00000000006fb040 r30: 0x0000000000000000 r31: 0x00000000018e7288
    Binary Images Description:
    0x1000 - 0xd7fff com.apple.Safari 2.0 (412) /Applications/Safari.app/Contents/MacOS/Safari
    0x669000 - 0x675d53 <Unknown disk fragment> PEF binary: <Unknown disk fragment>
    0x522a000 - 0x522cfff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x53726b0 - 0x537276b CFMPriv_Help PEF binary: CFMPriv_Help
    0x5376a10 - 0x5376ada CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x53a9090 - 0x53a9166 CFMPriv_OpenScripting PEF binary: CFMPriv_OpenScripting
    0x53a92e0 - 0x53a939e CFMPriv_Print PEF binary: CFMPriv_Print
    0x53a9820 - 0x53a98f7 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x53aa110 - 0x53aa1dd CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x53aad30 - 0x53aadf2 CFMPriv_QD PEF binary: CFMPriv_QD
    0x53aafc0 - 0x53ab0a2 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x53ab240 - 0x53ab329 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x53ac650 - 0x53ac723 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x53ac8c0 - 0x53ac993 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x53acb40 - 0x53acc02 CFMPriv_AE PEF binary: CFMPriv_AE
    0x53acdc0 - 0x53ace85 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x53ad2d0 - 0x53ad3a7 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x53b12d0 - 0x53b1382 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x53c5790 - 0x53c586a CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x53c9dc0 - 0x53c9e96 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x53ca260 - 0x53ca343 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x53d4040 - 0x53d4126 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x53d7c70 - 0x53d7d40 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x53d8670 - 0x53d8743 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x53d8b10 - 0x53d8bf0 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x53deb80 - 0x53debf7 CFMPriv_System PEF binary: CFMPriv_System
    0x53e16e0 - 0x53e17b3 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x574a000 - 0x5763fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x57b8000 - 0x57d3fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x5824790 - 0x5824875 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x5905000 - 0x5af5fff com.macromedia.Flash Player.plugin 8.0.22 (1.0.1f22) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x6bde000 - 0x6c33fff com.DivXInc.DivXDecoder 6.0.0 /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x6c41000 - 0x6d50fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x6d7f000 - 0x6fd6fff com.apple.ATIRadeon8500GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon8500GLDriver.bundle/Contents/MacOS/ATIRadeo n8500GLDriver
    0x70b2000 - 0x71013c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x8ed72000 - 0x8f731fff com.apple.QuickTimeComponents.component 7.0.4 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x8fa79000 - 0x8fd27fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x9020ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90211000 - 0x90264fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90291000 - 0x90342fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90371000 - 0x906aefff com.apple.CoreGraphics 1.256.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073a000 - 0x90813fff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085c000 - 0x9085cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085e000 - 0x90960fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909ba000 - 0x90a3efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a68000 - 0x90ad6fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aed000 - 0x90afffff libauto.dylib /usr/lib/libauto.dylib
    0x90b06000 - 0x90ddefff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e44000 - 0x90ec4fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0e000 - 0x90f4ffff com.apple.CFNetwork 10.4.4 (129.9) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f64000 - 0x90f7cfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8c000 - 0x9100dfff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91053000 - 0x9107dfff com.apple.Metadata 10.4.4 (121.34) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108e000 - 0x9109cfff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109f000 - 0x91262fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91365000 - 0x9136efff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91375000 - 0x9139cfff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913af000 - 0x913b7fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913bc000 - 0x913dcfff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913e2000 - 0x913eafff libbsm.dylib /usr/lib/libbsm.dylib
    0x913ee000 - 0x9146efff com.apple.audio.CoreAudio 3.0.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914ad000 - 0x914adfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914af000 - 0x914e7fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91502000 - 0x915cffff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91624000 - 0x916b7fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916fe000 - 0x917bbfff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f9000 - 0x91857fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91885000 - 0x918a9fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918bd000 - 0x918e2fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918f5000 - 0x91937fff com.apple.LaunchServices 168.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91953000 - 0x91967fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91975000 - 0x919affff com.apple.ImageIO.framework 1.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919c4000 - 0x91a8cfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ada000 - 0x91aeffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91af4000 - 0x91b11fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b16000 - 0x91b85fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b9c000 - 0x91ba0fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ba2000 - 0x91bd3fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bd7000 - 0x91c1afff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c21000 - 0x91c3afff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c3f000 - 0x91c42fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c44000 - 0x91c44fff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c46000 - 0x91d30fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d38000 - 0x91d57fff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91dc3000 - 0x91e28fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e32000 - 0x91ec4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ede000 - 0x9246efff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924b6000 - 0x927c6fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927f3000 - 0x9287ffff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928c1000 - 0x92aecfff com.apple.Foundation 6.4.4 (567.25) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c0a000 - 0x92ce8fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d08000 - 0x92df6fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e08000 - 0x92e26fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e31000 - 0x92e8bfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ea9000 - 0x92ea9fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92eab000 - 0x92ebffff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ed7000 - 0x92ee7fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ef3000 - 0x92f08fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f1a000 - 0x92fa1fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92fb5000 - 0x92fc0fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fca000 - 0x92ff7fff com.apple.openscripting 1.2.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93011000 - 0x93021fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9302d000 - 0x93093fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930c4000 - 0x93116fff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93142000 - 0x9315ffff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93171000 - 0x9317efff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93187000 - 0x93499fff com.apple.HIToolbox 1.4.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935e5000 - 0x935f1fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935f6000 - 0x93617fff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93682000 - 0x93682fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93684000 - 0x93cb7fff com.apple.AppKit 6.4.4 (824.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94044000 - 0x940b4fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940ed000 - 0x941b7fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9420b000 - 0x9420bfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9420d000 - 0x94385fff com.apple.QuartzCore 1.4.5 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x943cf000 - 0x9440cfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94414000 - 0x94464fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x944f4000 - 0x9452cfff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9456f000 - 0x9458bfff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9459f000 - 0x945e3fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94607000 - 0x94616fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9461e000 - 0x9462afff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94670000 - 0x94688fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9468f000 - 0x94712fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94892000 - 0x949c0fff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94a52000 - 0x94a61fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94a69000 - 0x94a96fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94a9d000 - 0x94aadfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94ab1000 - 0x94ae0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94af0000 - 0x94b0dfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9563e000 - 0x956cafff com.apple.WebKit 417.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95725000 - 0x9581afff com.apple.JavaScriptCore 417.8.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95856000 - 0x95b60fff com.apple.WebCore 417.19.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ce7000 - 0x95d10fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96fd5000 - 0x96ff4fff com.apple.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9770b000 - 0x977ccfff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x977f7000 - 0x977f8fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x977fa000 - 0x97807fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99bbc000 - 0x99bf2fff com.apple.Syndication 1.0.4 (51) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x99c0f000 - 0x99c21fff com.apple.SyndicationUI 1.0.4 (51) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0xc0000000 - 0xc000ffff com.unsanity.ape 1.5.1 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac10,1, BootROM 4.8.9f4, 1 processors, PowerPC G4 (1.2), 1.42 GHz, 1 GB
    Graphics: ATI Radeon 9200, ATY,RV280, AGP, 32 MB
    Memory Module: DIMM0/J11, 1 GB, DDR SDRAM, PC3200U-30330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Bluetooth: Version 1.7.0f18, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: ST9808210A, 74.53 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-K05, 4.26 GB
    USB Device: Hub, , Up to 480 Mb/sec, 500 mA
    USB Device: PowerShot S110, Canon Inc., Up to 12 Mb/sec, 500 mA
    USB Device: Microsoft USB Wireless Mouse, Microsoft, Up to 1.5 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: USB Device, , Up to 12 Mb/sec, 500 mA
    FireWire Device: Firewire Drive, PI-036, Up to 400 Mb/sec
    Mac mini PPC Mac OS X (10.4.5)

    http://discussions.apple.com/thread.jspa?messageID=1808669
    The answer is to delete the DAP plugin from BOTH ~home/library/plugins AND HARDDRIVE/Library/plugins

  • Fail to download file with explorer 10 while explorer 9 and other browsers succeed to download the same file

    I try to download file from management website of switch device. The file size is 11.66K.
    The webserver is GoAhead, OS is windows7 and explorer version is 10 (it also happens with explorer 11). The server is using Transfer-Encoding: chunked.
    After I download the file, I get pop-up message from the browser “Do you want to open or save running-config.txt from 1.1.1.11?”
    If I press the save/open button I get message “running-config .txt couldn’t be downloaded”. If I press the retry button the file is downloaded successfully.
    When I used meddler to debug the problem, it didn’t occur and the file was downloaded successfully.
    I took capture of successful download (with meddler debugger) and  another capture of download that raised “couldn’t be downloaded” message, but I didn’t see any difference between the requests and the responses. I also made sure the last chunk
    “0” was not missing in the response and it wasn’t.
    Please note, I also tried many suggestions given to other users that reported similar problem – restart explorer, remove add-ons, etc – nothing worked!
    Please help.

    Hi,
    Did  this issue occur on when you download file from other website?
    This problem occurs if the Do not save encrypted pages to disk option in Internet Explorer is selected.
    To fix this issue, try these methods:
    Methods 1
    On the Tools menu in Internet Explorer, click Internet Options, click the
    Advanced tab, click to clear the check mark from the Do not save encrypted pages to disk check box in the
    Security area, and then click OK. (This is the default Internet Explorer setting.)
    Methods 2
    1.Start Registry Editor.
    2.For a per-user setting, locate the following registry key:
    HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
    For a per-computer setting, locate the following registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings
    3.On the Edit menu, click Add Value, and then add the following value:
    "BypassSSLNoCacheCheck"=Dword:00000001
    4.Exit Registry Editor
    Karen Hu
    TechNet Community Support

  • HTML tag to upload and Download files

    hello all
    IS there any HtTML tag to upload and download files ???
    rgds
    ASHWIN

    Yea, for downloading you can use a normal link. For uploading, you need an html form like
    <form name="form1" enctype="multipart/form-data" method="post" action="doSomething.jsp">
      <input type="file" name="file">
    </form>To be honest I know nothing about jsp and servlets yet, but I would guess that it works just the same as with php, with which I am alot more familiar. Basicly, the form tag with the input type="file" tag tells the form to submit your file to the webserver.
    Then, whatever script you call with action="anythingYouWantHere" will handle the file the user submitted. There must be very similar functions to handle them in java than there is in php.
    Things to look for with file upload that often are buggy is the permissions / security settings you have on your webserver. Sometimes you need to make a special folder with extra permissions to allow you upload to work.
    Thats about all I know on this matter, good luck :)

  • IPod seen by Windows, not downloading files ...

    Tried the '5R' bit. Didn't help. Let me see if I can explain.
    * Purchased iPod for my wife for Christmas a month+ ago
    * Downloaded iTunes and created a fairly large library of MP3 files from our CD collection. Use iTunes regularly on Windows, no problem.
    * Got the iPod out of the box today, and followed directions.
    * Plugged it in.
    * iTunes sees it, entered information for iPod name, did registration stuff. [NOTE: each time I plug the iPod in and iTunes sees it, it brings up the "Setup Wizard", which is kind of pointless ...]
    * It said it was updating the iPod. It showed it was copying the library file by file.
    * It copied the files not to the iPod, but to: C:\iPod_Control in a folder there (they MP3 files in the library are in a folder called "C:\MP3s" and stored in folders there for individual CDs). This now doubles the disk space used on the harddrive, but also did not copy the files to the iPod itself.
    Suggestions? What did I do wrong? Is it me, the software, what?
    When I plug the iPod in, it is seen by iTunes. It shows the library of files, but in that other folder. How do I know? I go to the iPod menu, select "Settings" and "About" and it shows zero songs, zero videos and zero pictures (have no videos or pictures set for download, just trying to be complete). Any help will be gratefully accepted.

    Thanks. The problem appears to be that the iPod was not being recognized by Windows as a drive. I had to go do some weird jumping through hoops. The computer wanted to map it as drive 'J:' which had a reference to my hard drive that had been mapped for my network -- am not quite sure why. But I could not get the computer to assign as any other drive letter (I am sure it's something I've just forgotten). Anyway, once I unmapped the drive 'J:' mapping, suddenly the iPod showed up as drive J: and I was able to start downloading files to it. I am still doing it, but I think it's working. I should note that I had previously deleted the iPod folder that I mentioned in the first post first. As noted, it apepars to be working, so we'll see. Thanks!

  • Media Encoder CC 2014.0.1 error on install: I can't unpack the downloaded files (translation).

    I have troubles with the latest update of Media Encoder CC (2014). I get an error which says: I can't unpack the downloaded files (translated from Dutch). Please try again. I try again, but it don't help. I have a MacPro early 2008 with Mavericks.
    =======================================
    Moderator moved thread from Premiere Pro forum to AME, and trimmed the title.

    Looks like one component in Media Encoder is either missing or corrupted somehow.
    Could you uninstall Adobe Media Encoder CC 2014 and please make sure all files are deleted after uninstall?  Then, please try re-installing it.

  • How do you transfer your adobe creative suite cs5.5 from one laptop to another. I bought downloadable files from the Adobe website; I did not own physical cds.

    I bought a downloadable file when I bought Creative Suite CS5.5 for my laptop, which has now become slow and laggy. So I bought a new laptop and have downloaded trial versions of CS5.5 on to it, as suggested by information online, only to type in my serial number and it tells me that it's unvalid. I'm a college student and spent a lot of money to have this compliation of programs, and I do not have the money to invest into CS6 quite yet, as my needs are met with the previous version.
    Is there any way to transfer the creative suite from one computer to another, as I've tried many and have been unsuccessful.

    No, transferring between machines does not work.  You need to install using installation files.  You can download thru the following and use your serial number to activate...
    CS5.5 - http://helpx.adobe.com/creative-suite/kb/cs5-5-product-downloads.html

  • In finder, or say anything else such as downloaded files, I have to push open with in order to open the file. If I simply double-click on a document from finder, it does not open.

    Hey guys. I have this problem where when I try to open say a document from finder, I have to push "open with."
    Simply double-clicking does not work. I would greatly appreciate it if anybody could help.
    Another unrelated problem is that when I push to open itunes, it says that it is on a locked disk.
    Thanks

    Select a particular download file. Press COMMAND-I to open the Get Info window.  In the Open With section choose the desired default application from the dropdown menu then click on the Change All button.
    For .dmg files use DiskImageMounter (System/Library/CoreServices/ folder.)
    For .zip files use Archiver - same folder as above - or download TheArchiver - MacUpdate or CNET Downloads.

  • How do I get rid of the downloaded files showing on my desktop?

    That is what do I have to do so that my downloads do not show up on the desktop whether they are simple documents or program files?  If I put them in the trash it seems to delete them altogether... Any advice will be very welcome as my desktop is almost full of downloaded file icons

    It's not good practice to have a desktop full of icons. Is that your default download location? If so, you'd do better to designate a new destination, maybe the Downloads folder on your user account. Or any folder you create.
    Each web browser will allow you to select a destination in its preferences.

  • How do I find a downloaded file on my iPhone

    How do I find a downloaded file on my iPhone

    sir i have the same problem
    How do I find a downloaded file on my iPhone
    iPhone 4S, iOS 8.1.2
    exel file from gmail

  • Can't download files after Snow Leopard upgrade

    Hello all,
    yesterday I upgraded my leopard to snow leopard, since then I cannot download files with safari (also tried firefox, camino). When I click some link it looks like its going to start downloading but it doesn't. Most of the links are .dmg files. I have tried these steps so far but the problem still occurs.
    1) Repair the Disk Permissions.
    2) Downloaded onyx to clean the system.
    3) Cleaned the safari cache and settings, as well as the plugins directory.
    4) installed firefox and camino but they act the same.
    5) I uninstalled iGetter (if I copy the link location and add it to iGetter I can download the file).
    6) I created a new User to check if the problem was system wide or with the user account. The problem is the same in the new user account as well.
    Any ideas what to try next ?
    Thank you all in advance.
    John.
    ps: I have 10.6.2 and safari 4.04.

    Try using your OnyX to clean the LaunchSevices caches, or use Terminal.
    Launch /Utilities/Terminal and copy & paste this at the command line to rebuild LaunchServices:
    Code:
    <pre class="alt2" style="margin:0px; padding:3px; border:1px inset; width:640px; height:34px; overflow:auto">/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user</pre>
    Then press return. Wait until terminal returns to the command line. Quit Terminal. After that, log out and back in or restart. Let us know
    -mj

  • Problem with downloading file from FTP server

    Hello all
    I have uploaded a file from an application i developed and i want to download this file from another application. The code is
    public static void FTPcon() throws FtpException{
       String hostname = "my.ftp.server";
       String username = "myusername";
       String password = "mypass";
       Ftp ftp = new Ftp(hostname,username,password);
       ftp.setHostname(hostname);
            ftp.setUsername(username);
            ftp.setPassword(password);
            ftp.connect();
            ftp.setBinary();
            ftp.download("file.dat");
            ftp.disconnect();
    }The error i receive is java.io.FileNotFoundException: public.dat (The system cannot find the file specified) but the file is on the server.
    Thanks in advance for any help

    Cotton thank you for your reply
    Any other sugestions please?The server disagrees. So...
    - the file does not existThe file exists.I checked it with an FTP client program.
    - the file has a different nameThe file name is correct
    - you are connected to the wrong serverI am connecting to the correct server
    - you are in the wrong ftp directoryThe file is placed in the home directory
    - the ftp library you are using is broken (less
    likely)I am using the library from jscape.I dont think is broken because i can upload the file from the first application.
    >
    FTP isn't somehow broken in Java. I use it all the
    time. The problem is something listed above. I would
    check all of the first four if I were you because
    that's most likely where the problem is.Message was edited by:
    flightcaptain

  • [HELP] Download file from FTP server

    hi,
    I want to write a java program that can download and upload files from ftp server. Currently I only manage to upload a file to ftp server but i cant download file from ftp server. Here is the source code that only allow user to upload file. Anyone can give me some guidelines so that my program can download and also upload file? thx.
    import java.io.*;
    import java.net.*;
    public class FTPUpload {
    private static final int CTRLPORT = 21;
    private static Socket ctrlSocket;
    private static PrintWriter ctrlOutput;
    private static BufferedReader ctrlInput;
    private static byte[] localHostAddress;
    public final static String DIR = "C:\\zip\\";
    public static void main(String[] args) {
    try {
    String host = "192.168.1.1";
    String loginName = "testuser";
    String password = "password";
    String dirName = "/home/testuser";
    String fileName = "hello.zip";
    ctrlSocket = new Socket(host, CTRLPORT);
    localHostAddress = ctrlSocket.getLocalAddress().getAddress();
    ctrlOutput = new PrintWriter(ctrlSocket.getOutputStream());
    ctrlInput = new BufferedReader(new InputStreamReader(ctrlSocket.getInputStream()));
    ctrlOutput.println("USER " + loginName);
    ctrlOutput.flush();
    ctrlOutput.println("PASS " + password);
    ctrlOutput.flush();
    ctrlOutput.println("CWD " + dirName);
    ctrlOutput.flush();
    ctrlOutput.println("TYPE I");
    ctrlOutput.flush();
    FileInputStream fis = new FileInputStream(DIR + fileName);
    Socket dataSocket = dataConnection("STOR " + fileName);
    OutputStream outstr = dataSocket.getOutputStream();
    int n;
    byte[] buff = new byte[1024];
    while ((n = fis.read(buff)) > 0) {
    outstr.write(buff,0,n);
    dataSocket.close();
    fis.close();
    ctrlOutput.close();
    ctrlInput.close();
    ctrlSocket.close();
    }catch (Exception e) {
    e.printStackTrace();
    private static Socket dataConnection(String ctrlcmd)
    throws IOException,UnknownHostException {
    String cmd = "PORT ";
    ServerSocket serverDataSocket = new ServerSocket(0,1);
    for (int i=0;i<4;i++) {
    cmd = cmd + (localHostAddress[i] & 0xff) + ",";
    cmd = cmd + (((serverDataSocket.getLocalPort())/256) & 0xff)
    + ","
    + (serverDataSocket.getLocalPort() & 0xff);
    ctrlOutput.println(cmd);
    ctrlOutput.flush();
    ctrlOutput.println(ctrlcmd);
    ctrlOutput.flush();
    Socket dataSocket = serverDataSocket.accept();
    serverDataSocket.close();
    return dataSocket;
    }

    Or just use a java.net.URL("ftp://...) ..., get its input stream, and away you go ...

  • Download file from ftp server

    Can I download files from an ftp server by simply using the ip address or https:// url?    I've only gotten this to work by using the "ftp//:" address in previous projects and I'm not getting this to work in many different attempts. 
    Here is one...
     # FTP Config
    $FTPHost =
    "10.10.10.5"
    $Username =
    "admin"
    $Password =
    "12345678"
    $FTPFile =
    "test.log"
    # FTP Log File Url
    $FTPFileUrl =
    "ftp://" +
    $FTPHost +
    "/" +
    $FTPFile
    # Create FTP Connection
    $FTPRequest =
    [System.Net.FtpWebRequest]::Create("$FTPFileUrl")
    $FTPRequest.Credentials
    = New-Object System.Net.NetworkCredential($Username,
    $Password)
    $FTPRequest.Method =
    [System.Net.WebRequestMethods+Ftp]::DownloadFile
    $FTPRequest.UsePassive
    = $false
    $FTPRequest.UseBinary
    = $true
    $FTPRequest.KeepAlive
    = $false
    # Get FTP File
    $FTPResponse =
    $FTPRequest.GetResponse()
    $ResponseStream =
    $FTPResponse.GetResponseStream()
    $FTPReader =
    New-Object System.IO.Streamreader
    -ArgumentList $ResponseStream
    do
    Write-Host
    $FTPReader.ReadLine()
    while ($FTPReader.ReadLine()
    -ne $null)
    $FTPReader.Close()
    # Create FTP Connection
    $FTPRequest =
    [System.Net.FtpWebRequest]::Create("$FTPFileUrl")
    $FTPRequest.Credentials
    = New-Object System.Net.NetworkCredential($Username,
    $Password)
    $FTPRequest.Method =
    [System.Net.WebRequestMethods+Ftp]::DownloadFile
    $FTPRequest.UsePassive
    = $false
    $FTPRequest.UseBinary
    = $true
    $FTPRequest.KeepAlive
    = $false
    # Get FTP File
    $FTPResponse =
    $FTPRequest.GetResponse()
    $ResponseStream =
    $FTPResponse.GetResponseStream()
    $FTPReader =
    New-Object System.IO.Streamreader
    -ArgumentList $ResponseStream
    do
    Write-Host
    $FTPReader.ReadLine()
    while ($FTPReader.ReadLine()
    -ne $null)
    $FTPReader.Close()

    Hi!
    You don't need to specifically use an IP address. E.g can use
    $FTPHost = "myrandomserver.mycompany.com"
    $Username = "admin"
    $Password = "12345678"
    $FTPFile = "test.log"
    # FTP Log File Url
    $FTPFileUrl = "ftp://" + $FTPHost + "/" + $FTPFile

Maybe you are looking for

  • Number of records in BPC Cube

    Dear Friends, I am working in EPM10 NW/BW 7.31. I just want to know  how can I find number of records in BPC cube from the back end (i.e using T-Code RSA1) As I am not a BW expert, any simple suggestion will be appreciated. Thanks, Rahul

  • IB in Xcode 4 not creating ivars

    I'm not able to create ivars for my outlets in Interface Builder. I follow these steps: Open the header file in the Assistant Editor Ctrl-Drag from a UILabel in the view to the header after the @interface line When the popup appears, select "outlet"

  • Previewing site design in other browsers.

    How does one go about previewing  the site design in other browsers as one is working / building it?. ie. Is the Muse Browser the best and only way with out full publishing or uploading the site?

  • Flexunit failed on "command not unterstood"

    I use Ant to compile tests and generate reports, and the compile phase succeeded, but the <flexunit> failed, the error log following: java.util.concurrent.ExecutionException: command [<testcase classname="XXX", name="XXX",  time='0.000'   status='suc

  • Where are the Bounced Back Emails?

    Pardon the cross-posting, since I didn't get any responses in the JavaMial Forum. ==================================== Hi Java Gurus: My application sends emails using JavaMail API. I am not receiving any bounced back emails though. What do I have to