Getting "Warning: The file upload failed.No such file or directory." while trying to upload image using af:inputFile

Hi,
I have a <af:inputFile> component which will upload only image file and render  the corresponding image...
It work with normal application deployed on weblogic server however when i use same taskflow as a part of human task in SOA BPM worklist...
I get this warning message "Warning: The file upload failed.No such file or directory." for certain files where as it works for certain image files.
And in BPM whenever i upload PNG file it throws this error.
Please help.

For some files like Images with .png extensions it gives following error :
java.io.IOException: No such file or directory
  at java.io.UnixFileSystem.createFileExclusively(Native Method)
  at java.io.File.checkAndCreate(File.java:1705)
  at java.io.File.createTempFile0(File.java:1726)
  at java.io.File.createTempFile(File.java:1803)
  at org.apache.myfaces.trinidadinternal.config.upload.UploadedFileImpl._createOutputStream(UploadedFileImpl.java:284)
  at org.apache.myfaces.trinidadinternal.config.upload.UploadedFileImpl.loadFile(UploadedFileImpl.java:208)
  at org.apache.myfaces.trinidadinternal.config.upload.CompositeUploadedFileProcessorImpl._processFile(CompositeUploadedFileProcessorImpl.java:344)
  at org.apache.myfaces.trinidadinternal.config.upload.CompositeUploadedFileProcessorImpl.processFile(CompositeUploadedFileProcessorImpl.java:95)
  at org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl._doUploadFile(FileUploadConfiguratorImpl.java:329)
  at org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl.beginRequest(FileUploadConfiguratorImpl.java:162)
  at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:610)
  at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:216)
  at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:155)
  at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.bpel.services.workflow.client.worklist.util.WorkflowFilter.doFilter(WorkflowFilter.java:175)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.bpel.services.workflow.client.worklist.util.DisableUrlSessionFilter.doFilter(DisableUrlSessionFilter.java:70)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
  at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
  at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
  at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
  at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
  at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
  at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
  at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
  at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
  at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
  at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
  at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
  at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
  at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
  at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
  at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

Similar Messages

  • Compilation errors- sbfocus exec failed: No such file...

    Please help, as I am geting these errors when I am compiling my test program using make file.
    I am using SUN SPARC server with Forte Compiler Collection 7 on new server.
    I am moving my HP C++ code on this new server.
    I have created my string, util and ipc libraries using ar - ruv command. all the libraries are created OK (means no errors) and named them as libstring.a etc.
    CC -g -sb -compat=5 -compat=4 -I. -I/ford/thishost/u/rbhave/mqrouter/include -c test.C
    /opt/SUNWspro/bin/CC test.o -L/ford/thishost/u/rbhave/mqrouter/lib -L. -lutils -lipc -lstring
    libldstab: file test.o: sbfocus exec failed: No such file or directory: SourceBrowser data will be lost
    Undefined first referenced
    symbol in file
    unsafe_ostream::do_opfx(void) /ford/thishost/u/rbhave/mqrouter/lib/libstring.a(strops.o)
    cout test.o
    unsafe_ostream::do_opfx(void) /ford/thishost/u/rbhave/mqrouter/lib/libstring.a(strops.o)
    ld: fatal: Symbol referencing errors. No output written to a.out
    *** Error code 1
    make: Fatal error: Command failed for target `/ford/thishost/u/rbhave/mqrouter/error_log/test'
    Thanks in advance.
    Ravi

    You usually cannot mix -compat=4 and -compat=5 code in the same program. The C++ Migration Guide(search on docs.sun.com) that comes with the compiler explains the limitations.
    When building a C++ static (.a) library, you should use
    CC -xar
    instead of
    ar
    so that any required template instances get included in the library.
    The warning message about sb probably means that the -sb or -xsb option was not used consistently. Use it when compiling and when linking, or not at all. (You don't have to use it on all compilations, but you'll be missing some symbol data.)
    - Rose

  • Getting Error in CMC - source file error. [No such file or directory]: [CrystalEnterprise.Smtp]

    Dear All,
    I am able to schedule the Crystal report successfully means mail gets auto triggered as we set in SCHEDULE option. But when we tried to use the notification option we get the status as FAILED. nd in details we get "source file error. [No such file or directory]: [CrystalEnterprise.Smtp]".
    But still a mail gets triggred and each and every person will get mail. but the issue is notification will not work properly and no notification mail. And the status is despayed as FAILED with "source file error. [No such file or directory]: [CrystalEnterprise.Smtp]" this message.
    Regards,
    Rohan Ghadi

    Do you have multiple job servers in your environment? Did all the Job servers configured SMTP settings?

  • Ld.so.1: oracle sid : fatal: libjox8.so: open failed: No such file or direc

    RDBMS Version: 8.1.7.4
    Operating System and Version: trusted solaris intel 8
    Error Number (if applicable):
    Product (i.e. SQL*Loader, Import, etc.): installation of patch set 8.1.7.4
    Product Version: 8.1.7.4
    ld.so.1: oracle&lt;sid&gt;: fatal: libjox8.so: open failed: No such file or directory
    I get this error when connecting to with SQLPLUS to Oracle.
    I have reordered paths in LD_LIBRARY_PATH
    so $ORACLE_HOME/lib is before /usr/lib
    and recompiled make -f ins_rdbms.mk install
    and make -f ins_rdbms.mk ioracle
    I can only connect as oracle in the install group
    I have found some posts the suggest changing mode of the oracle executable. but that doesn't seem to help.
    I have tried to $ORACLE_HOME/bin/relink all
    but that didn't help either.
    Please advise.

    According to the following docs, you should not get this error when you apply Patch 8904424 so I would suggest you log a SR.
    Patch 8557019: make: Fatal error: Command failed for target `dejvm'0.1.2/lib32/WS6U1/crti.o: open failed: No such file or directory (Doc ID 1291895.1)
    make: *** [dejvm] Error 1 While Applying 8557019 For Forms Upgrade Doc 437878.1 (Doc ID 1543498.1)
    Thanks,
    Hussein

  • [SOLVED]eCryptfs fails with mount: mount(2) failed: No such file or d

    Since some weeks back I cant seem to mount my eCryptfs stuff.
    Usually I just mounted my lvmdrive and did a:
    sudo mount /dev/sda1 /media/Olddrive;sudo ecryptfs-recover-private /media/Olddrive/home/.ecryptfs/user/.Private;sudo ecryptfs-recover-private /run/media/user/lvmdriveid/.ecryptfs/user/.Private
    Hit y,y [password] repeat and there it was, truly bob was my uncle.
    However, These days I get a:
    Inserted auth tok with sig [key] into the user session keyring
    mount: mount(2) failed: No such file or directory
    What have changed?
    *disclaimer: I might not be supersure about the exact " /media/Olddrive/home/.ecryptfs/user/.Private " as I fiddled a bit with it before I rebooted earlier today after a -Suy.
    Last edited by danielpublic (2014-11-01 10:23:35)

    Forgot to update, in any case I managed to access my data through the old manual way.
    cd /run/media/user/harddrive/.ecryptfs/user/.encryptfs
    sudo ecryptfs-unwrap-passphrase ./wrapped-passphrase
    sudo ecryptfs-add-passphrase --fnek
    Inserted auth tok with sig [aaaaaaaaaaaaaaaa] into the user session keyring
    Inserted auth tok with sig [bbbbbbbbbbbbbbbb] into the user session keyring
    sudo mount -t ecryptfs /run/media/user/harddrive/home/.ecryptfs/user/.Private /media/mountdir
    Used default settings execpt for:
    Enable filename encryption (y/n) [n]: y
    and of course inserted [bbbbbbbbbbbbbbbb] when asked:
    Filename Encryption Key (FNEK) Signature [aaaaaaaaaaaaaaaa]: bbbbbbbbbbbbbbbb

  • Ld.so.1: sqlplus: fatal: libm.so.2: open failed: No such file or directory

    Hi,
    I m getting the below error while connecting to sqlplus:-
    sqlplus
    ld.so.1: sqlplus: fatal: libm.so.2: open failed: No such file or directory
    Killed
    regards,
    Bhatia

    Bhatia,
    Did you source the env file before running sqlplus? If yes, please issue the following:
    $ cd $ORACLE_HOME/bin
    $ relink utilitiesMake sure that sqlplus is relinked successfully and try it again.

  • TMS_ORA10g: fatal: libclntsh.so.10.1: open failed: No such file or director

    While trying to boot up the Tuxedo Server, we are getting the error:-
    exec TMS_ORA10g -A :
    ld.so.1: TMS_ORA10g: fatal: libclntsh.so.10.1: open failed: No such file or directory
    This file, libclntsh.so.10.1, is present in the /oracle/app/product/10g2/db_1/lib32 dir, which is included the LD_LIBRARY_PATH environment variable. We build the TMS_ORA10g executable with the following command :- buildtms -o TMS_ORA10g -r Oracle_XA and the corresponding entry in the udataobj/RM file is "Oracle_XA:xaosw:-L${ORACLE_HOME}/lib32 ${ORACLE_HOME}/lib32/libsql10.a -lm -lC -lclntsh"

    Hi,
    After your advice we migrated our Tuxedo to 64 bit's and now all the object files and libraries are of 64 bit. The problem related with buildtms has been resolved. But even after this we are facing an issue, while building the Application Server(BAS). When we do BAS (Build Application Server), we get this error:-
    Undefined first referenced
    symbol in file
    int sqlcxt(void**,unsigned*,sqlexd*,sqlcxp*) /users/appbin/lib/libUTCS/xlerrlib.a(dm_olpa.o)
    tpurcode /users/appbin/lib/libUTCS/tuxedoreal.a(oltp.o)
    tperrno /users/buildsrv/InitW1/security/homebs/src/lib/sparc/security_qpp1.a(security_et_sy00102
    getusr_dtls.o)
    int sqlbuft(void**,char*) /users/appbin/lib/libUTCS/xlerrlib.a(dm_olpa.o)
    ld: fatal: Symbol referencing errors. No output written to /users/buildsrv/InitW1/server/securityET
    What could be the possible reason for the same.
    The entire command for BAS is
    CC -xtarget=ultra -xarch=v9 -xarch=v9 -w -mt -I$TUXDIR/include -o /users/buildsrv/In
    itW1/server/securityET BS-6ddd.c -L${TUXDIR}/lib /users/buildsrv/InitW1/server/sttqz.c /users/buildsrv/InitW1/server/main.c
    /users/appbin/lib/libUTCS/conv.o /newutitux/newtux/tuxedo9.1/lib/libtux.a /oracle/app/product/10g2/db_1/lib/libsql10.a /use
    rs/appbin/lib/libUTCS/rpcqz_date.o /users/appbin/lib/libUTCS/dm_auditinfo.o /users/buildsrv/InitW1/security/homebs/src/lib/s
    parc/security_qpp1.a /users/buildsrv/InitW1/security/homebs/src/lib/sparc/security_query1.a /users/buildsrv/InitW1/security/
    homebs/gencode/lib/sparc/security_dm1.a /users/buildsrv/InitW1/security/homebs/gencode/lib/sparc/security_const.a /users/bui
    ldsrv/InitW1/security/homebs/gencode/lib/sparc/security_rpc1.a /users/buildsrv/InitW1/security/homebs/gencode/lib/sparc/secu
    rity_rpcqry1.a /users/compogsw/InitW1/lib/libUTCS/sparc/master_qpp1.a /users/compogsw/InitW1/lib/libUTCS/sparc/master_query1
    .a /users/compogsw/InitW1/lib/libUTCS/sparc/master_dm1.a /users/compogsw/InitW1/lib/libUTCS/sparc/master_rpc1.a /users/compo
    gsw/InitW1/lib/libUTCS/sparc/master_rpcqry1.a /users/compogsw/InitW1/lib/libUTCS/sparc/ext_intf_qpp1.a /users/compogsw/InitW
    1/lib/libUTCS/sparc/ext_intf_query1.a /users/compogsw/InitW1/lib/libUTCS/sparc/ext_intf_dm1.a /users/compogsw/InitW1/lib/lib
    UTCS/sparc/ext_intf_rpc1.a /users/compogsw/InitW1/lib/libUTCS/sparc/ext_intf_rpcqry1.a /users/compogsw/InitW1/lib/libUTCS/sp
    arc/scheme_qpp1.a /users/compogsw/InitW1/lib/libUTCS/sparc/scheme_query1.a /users/compogsw/InitW1/lib/libUTCS/sparc/scheme_d
    m1.a /users/compogsw/InitW1/lib/libUTCS/sparc/scheme_rpc1.a /users/compogsw/InitW1/lib/libUTCS/sparc/scheme_rpcqry1.a /users
    /compogsw/InitW1/lib/libUTCS/sparc/common_rpc1.a /users/compogsw/InitW1/lib/libUTCS/sparc/party_rpc1.a /users/compogsw/InitW
    1/lib/libUTCS/sparc/holding_rpc1.a /users/compogsw/InitW1/lib/libUTCS/sparc/oth_srvc_rpc1.a /users/compogsw/InitW1/lib/libUT
    CS/sparc/comp_red_rpc1.a /users/compogsw/InitW1/lib/libUTCS/sparc/utility_lib.a /users/appbin/lib/libUTCS/libmem.a /users/ap
    pbin/lib/libUTCS/utillib.a /users/appbin/lib/libUTCS/dmstdlib.a /users/appbin/lib/libUTCS/tuxedoreal.a /users/appbin/lib/lib
    UTCS/xlerrlib.a /users/appbin/lib/libUTCS/xlclasslib.a /users/appbin/lib/libUTCS/libclass.a /users/appbin/lib/libUTCS/utilli
    b.a /users/appbin/lib/libUTCS/Qmystring.o -ltux -lbuft -L${ORACLE_HOME}/lib -lclntsh -lfml -lfml32 -lengine -R/usr/lib/lwp
    -lpthread -lposix4 -lsocket -lnsl -lm -lnsl -lsocket
    Please reply
    Regards,
    Namit Maheshwari

  • UTL_SMPT ORA-22288: file or LOB operation GETLENGTH failed No such file or

    Hello Everyone!
    I am trying to write a script to send emails as an attachment(exists in the unix box) using utl_smtp
    i have my reports in the directory : /opt/local/application/orafin/applmgr/out/outfaud. File existing in the directory is S1759.zip
    i have created a directory as:
    create or replace directory
    REPORT_DIRECTORY
    as
    '/opt/local/application/orafin/applmgr/out/outfaud';
    when i use BFILENAME as select BFILENAME('/oracle/oradata/bfiles', 'S1759.zip') from dual
    output: REPORT_DIRECTORY//S1759.zip
    my code is something like this
    v_bfile:= BFILENAME(p_oracle_directory, p_file_name);
    v_file_length := DBMS_LOB.GETLENGTH(v_bfile);
    Error: ORA-22288: file or LOB operation GETLENGTH failed
    No such file or directory
    Could anyone please help me as im really struggling to fix this. Thanks!

    Thank you for the response..
    v_bfile:= BFILENAME(p_oracle_directory, p_file_name);
    -- Get the size of the file to be attached
    v_file_length := DBMS_LOB.GETLENGTH(v_bfile);
    -- Calculate the number of pieces the file will be split up into
    v_pieces := TRUNC(v_file_length / v_amt);
    -- Calculate the remainder after dividing the file into v_amt chunks
    v_modulo := MOD(v_file_length, v_amt);
    IF (v_modulo <> 0) THEN
    -- Since the file does not devide equally
    -- we need to go round the loop an extra time to write the last
    -- few bytes - so add one to the loop counter.
    v_pieces := v_pieces + 1;
    END IF;
    DBMS_LOB.FILEOPEN(v_bfile, DBMS_LOB.FILE_READONLY);
    FOR i IN 1 .. v_pieces LOOP
    -- we can read at the beginning of the loop as we have already calculated
    -- how many iterations we will take and so do not need to check
    -- end of file inside the loop.
    v_buf := NULL;
    DBMS_LOB.READ(v_bfile, v_amt, v_file_pos, v_buf);
    v_file_pos := I * v_amt + 1;
    UTL_SMTP.WRITE_RAW_DATA(p_conn, UTL_ENCODE.BASE64_ENCODE(v_buf));
    END LOOP;
    END;
    DBMS_LOB.FILECLOSE(v_bfile);
    end_attachment(p_conn => p_conn);
    this is the existing code..so you which part of the code should i be replacing? im sorry im new to these concepts. thanks!

  • Upload failed your changes were saved but could not be uploaded because of an error. you may be able to upload this file using server web page. save a copy

    Hi All,
    upload failed your changes were saved but could not be uploaded because of an error. you may be able to upload this file using server web page. save a copy button.
    This is the issue which I am facing while working with SharePoint 2010. In a sharePoint 2010 document library I am having an excel file and I am trying to open it from Windows 7 and is office 2010.
    I cam e across few suggestion as mentined below but unable to find the location where to do
    Go to Resource Policies > Web >
    Rewriting > Custom Headers > (if 'Custom Headers' is not visible, click
    Customize on the right top to enable the view).
    Create a new policy with the Resource as <fully qualified domain name of the SharePoint server:*/*> (for example https://sharepoint.juniper.net:*/* ).
    Create the action as Allow Custom Headers.
    Apply the settings to the required roles.
    Please suggest.

    Hi rkarteek
    All things you have to do is as follows:
    1. Open regedit.exe
    2. Naviagate to following key:
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\14.0\Common\Internet]
    3. Click Edit Menu -> New -> DWORD with name of "FSSHTTPOff"
    (without quotes)
    4. Click on "FSSHTTPOff" and enter value of 1
    5.
    Close any Office Applications and browser sessions
    6. Try to reopen your document (no more read only or failure to upload)
    have a nice day!

  • Hdiutil: attach failed - No such file or directory, in Maven Projects using applescript??

    Hi All.
    am trying to mount the application which is present in some module named x, am using Maven projects here, so for my mounting the app am using shell script and  i have given path of the application which is present in module x. If a try to run the test from the class where this mounting method is present its being compiled and am getting results properly, but when i used this mounting method in some other test class and ran the test, its saying no such file present, i know this looks something starnge, but am facing this issue, pls guide how to overcome the same.
    do shell script "hdiutil mount ../../common/src/main/resources/Modulex/AdbeRdr11000_en_US.dmg"

    I just want to point out for anyone else who may be confused on this point that the 'mount' verb is undocumented for hdiutil (at least in 10.7).  The correct verb to use is 'attach' as in hdiutil attach ../common/src/main/resources/Modulex/AdbeRdr11000_en_US.dmg - 'mount' is probably a compatability verb aimed at people used to linux or standard unix.
    I was surprised 'mount' worked at all, really, but there you go.

  • An error occurred while attempting to install the BizTalk application: Failed extracting CAB files.

    Ok I have a BizTalk Application that's called :
    FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200
    I know that is a long name but why should I be punisched when I create an installer for that. I also have a WebService that exposes this schema. And this webservice is stored inside the MSI cab files. So far so good.
    But now when I try to install this MSI alongside all my other MSI's I get the following message :
    Failed to extract file "C:\Program Files\Generated by BizTalk\FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200\36FAA7B1-99DE-4AF6-A910-ED56D02D84EF\WebDirectory\-FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200.WES\App_Data\FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200.Schemas.FinancieleOpdrachtLogistiekMiddel_v0200.xsd".
    (Length=306)
    The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters., (NULL), (NULL), (NULL).
    If i could install in C:\Program Files\Generated by BizTalk\FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200 but the extraction would take place in d:\temp or whatever, I would not have a problem. But unfortunately it extracts in a subdir of an already
    very long path......
    Is there anybody who knows how to solve this... (can I tell the MSI to use D:\TEMP\ as an extract folder).
    And using shorter names is not an option.
    Well0549, Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

    You can control the destination path of resources in your MSI by modifying them in the Resources folder of a BizTalk application.
    %BTAD_InstallDir% defaults to C:\Program Files\Generated by BizTalk\... etc etc.  You can put in whatever you like here.
    You can get more granular control over the resources by using the
    BTSTask.exe tool.
    If you can tell me how to make the extract process of he cabs point to c:\temp i will be happy to use BTSTASK (wich i am already doing). But the problem is with the extraction oft he web service. It will extract to :
    C:\Program Files\Generated by BizTalk\FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200\36FAA7B1-99DE-4AF6-A910-ED56D02D84EF\WebDirectory\-FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200.WES\App_Data\FH.CCE.CDM.FinancieleOpdrachtLogistiekMiddel_v0200.Schemas.FinancieleOpdrachtLogistiekMiddel_v0200.xsd
    Wich is just to long. I want the cabs to extract to c:\temp or something like that.....
    Well0549, Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

  • Remote Resources: "A problem with the system proxy caused the connection to fail: End of file"

    Hi, I am trying to use "Remote Resources" on the current version of the Microsoft Remote Desktop for Android app, I can input the webfeed and it even shows the apps that I have configured on the server for "Remote App", sadly whenever
    I try to load any of the RemoteApps, I receive an error stating " A problem with the system proxy caused the connection to fail. End of File".
    I don't know what I can do to fix this, I've tried many things to no avail, also, normal Remote Desktop connections from the Microsoft Android app work flawlessly to the server.
    The relevant log is the following:
    [2014-Jan-09 04:40:54] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-09 04:40:54] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||ZWaveUtil
    remote.workingdirectory 
    remote.name ZWave Adapter Utility
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=administrator
      redirectionGUID = 
      proxyHost = 200.5.68.10
      proxyPort = 8080
      sessionId = -1
    [2014-Jan-09 04:40:54] RDP (0): Using HttpConnect proxy at 200.5.68.10:8080
    [2014-Jan-09 04:40:54] RDP (0): Using Basic Authentication with username ''
    [2014-Jan-09 04:40:54] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    [2014-Jan-09 04:40:54] RDP (0): Resolved '200.5.68.10' to '200.5.68.10' using NameResolveMethod_DNS(1)
    [2014-Jan-09 04:40:54] RDP (0): Resolved '200.5.68.10' to '200.5.68.10' using NameResolveMethod_DNS(1)
    ASIOSocketAdapter (9): readSomething error. message: End of file. instance: 0x5d39d5c0
    RpcOverHttp (9): Stream error in endpoint 0x5abbc170 : A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Error message: A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Error message: A problem with the system proxy caused the connection to fail: End of file
    [2014-Jan-09 04:40:55] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleRead(): exception: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : Failed to read from channel: -1. instance: 0x5d39d5c0
    [2014-Jan-09 04:40:55] RDP (0): Disconnect initiated by client
    RpcOverHttp (9): Exception in endpoint 0x5abbc170 : Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    [2014-Jan-09 04:40:55] RDP (0): Exception caught: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    [2014-Jan-09 04:40:55] RDP (0): Exception caught: Exception in file '/var/lib/jenkins/jobs/rc-android-app/workspace/rdp-layer/library/jni/librdp/private/httpendpoint.cpp' at line 489
        User Message : A problem with the system proxy caused the connection to fail: Failed to read from channel: -1
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-09 04:40:57] RDP (0): ------ END ACTIVE CONNECTION ------

    My problem is that the "proxy" is the proxy set up by my 3G configuration so, I tried connecting to the remote resources through my work wifi and I get the following:
    [2014-Jan-14 16:58:13] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-14 16:58:13] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||chrome
    remote.workingdirectory 
    remote.name Google Chrome
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username Administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=Administrator
      redirectionGUID = 
      proxyHost = 
      proxyPort = 0
      sessionId = -1
    [2014-Jan-14 16:58:13] RDP (0): Not using any proxy
    [2014-Jan-14 16:58:13] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d474090
    RpcOverHttp (9): Stream error in endpoint 0x5d46b678 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d445158
    RpcOverHttp (9): Stream error in endpoint 0x5d49fa30 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 16:58:17] RDP (0): Disconnect initiated by client
    [2014-Jan-14 16:58:17] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-14 16:58:17] RDP (0): ------ END ACTIVE CONNECTION ------
    Now, I know the host can be resolved because: if I connect to the same host but on a full remote desktop (as opposed to just RemoteApp on it) I have no trouble either through 3G OR through my work connection.
    Moreover, I also tried directly inputting the IP as opposed to the web address of my server, I get the same error, that is the Remote Resources tab is able to access the feed (because it shows the available RemoteApps) but when I click an app it says it can't
    find the Host, here's the log for the connection directly to the IP address/rdweb/feed/webfeed.aspx :
    [2014-Jan-14 17:09:27] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-Jan-14 17:09:27] RDP (0): Final rdp configuration used: memory bookmark [
    label 
    hostname DIAZSERVER
    port 3389
    loadbalanceinfo 
    ui.swapmousebutton false
    remote.program ||chrome
    remote.workingdirectory 
    remote.name Google Chrome
    remote.args 
    rail true
    soundmode 0
    connect_to_console false
    redirectsdcard true
    performance_flags 134
    arc.sessionid 0
    anonymous_username 
    authentication_level 2
    use_redirection_server_name false
    username administrator
    gateway [
      host = DIAZSERVER
      port = 443
      bypass = false
    connect info[
      hostnames = [localhost]
      gatewayHost = DIAZSERVER
      gatewayPort = 443
      routingToken = Cookie: mstshash=administrator
      redirectionGUID = 
      proxyHost = 
      proxyPort = 0
      sessionId = -1
    [2014-Jan-14 17:09:27] RDP (0): Not using any proxy
    [2014-Jan-14 17:09:27] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    AsioEndpointContext (0): startup(): starting up down context
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d372f28
    RpcOverHttp (9): Stream error in endpoint 0x5dd6b168 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    ASIOSocketAdapter (9): handleResolve(): boost error: Host not found. Please provide the fully-qualified name or the IP address of the host.. instance: 0x5d378de0
    RpcOverHttp (9): Stream error in endpoint 0x5e9cc1f0 : Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    [2014-Jan-14 17:09:31] RDP (0): Disconnect initiated by client
    [2014-Jan-14 17:09:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    AsioEndpointContext (0): shutdown(): shutting down context
    AsioEndpointContext (0): shutdown(): context shut down
    [2014-Jan-14 17:09:31] RDP (0): ------ END ACTIVE CONNECTION ------
    I'm really puzzled here, I've tried checking if ports where open, and ports 443 and 3389 are wide open, I don't know what else it could be.

  • Connect(/var/imap/socket/lmtp) failed: No such file or directory' + DBERROR

    Mail server won't work: Dual 2 GHz PowerPC G5 running Mac OS X Server 10.5.8
    Cleared /var/imap/db
    Rebuilt the database using 'sudo mailbfr -f'
    Logs say:
    master: process started
    deliver[nnn]: connect(/var/imap/socket/lmtp) failed: No such file or directory
    ctl_cyrusdb[nnn]: DBERROR db4: unable to join the environment
    ctl_cyrusdb[nnn]: verifying cyrus databases
    ctl_cyrusdb[nnn]: skiplist: recovered/var/imap/mailboxes.db (xxx records, yyyyy bytes) in 0 seconds
    ctl_cyrusdb[nnn]: skiplist: recovered/var/imap/annotations.db (0 records, zzz bytes) in 0 seconds
    Help!

    Update(s):
    (1) problem went away on a reboot
    (2) problem re-appeared at 02:00 this morning, following a attempted mailbfr backup
    (3) new problem on reboot:
    - IMAP now working
    - Overview shows SMTP status as 'Running'
    - SMTP log says: postfix/postfix-script[nnnn]: fatal: the Postfix mail system is not running
    (4) so, try to shut down mail gracefully with 'serveradmin stop mail'
    'mail: state = "STOPPING"'
    'mail: status = 0'
    BUT!
    (5) 'Overview' shows IMAP and so on 'Stopped' and for SMTP 'Shutting down'
    (6) 'Overview' now shows Outgoing SMTP and Incoming SMTP 'Running'
    (7) Try again, says 'Shutting down' for a while, then 'Running' again

  • When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Will a program mention for MAC OSX be allowed to download on the newest iPad version. If so, how do I get past the "safari" can not download this file?

    Will a program mention for MAC OSX be allowed to download on the newest iPad version. If so, how do I get past the "safari" can not download this file?

    No, because iPads do not run Mac OS X. They run iOS.

Maybe you are looking for

  • Dynamic url and jdbc for entity class

    Hi all,... I want to create a data aware program by using netbeans 6.0. So that open a contextual menu in projects section, and simply add a new 'Master/Detail Sample Form'. The IDE than ask me about the connection (jdbc driver, url etc) and table na

  • Publishing iWeb Site on a Personal Domain

    Hi, I'm having a lot of trouble publishing my site to a personal domain. I am using iWeb 08 and am publishing via MobileMe and domains.com is my host. For some reason, I just can't get the site to publish on my personal domain. My personal domain is

  • New Upgrade crashes

    I've just upgraded to iTunes 10.6. When I relaunch iTunes it crashes. I've rebooted and it still comes up and crashes a few seconds later. I'm running MAC OS 10.7.3. Any ideas?

  • ? The Chromatic Aberration slider in Camera Raw V. 6.7 disappeared.How do I retrieve it?

    The chromatic aberration slider in the Lens Correction panel in Camera Raw 6.7 (PS CS5) has disappeared. Must I re-download again, or? If I do, should I uninstall what is on the computer now? I use a Mac. Robert C. Tanner

  • Find out the Condition record deletion

    Please help me anybody  below issue. My issue is how to find out the Log  " deletion of condition record". i need  which user has been deleted the condition record. Please help me this how to find it. I checked in Standard we didn't able to find out.