Attaching file in OWA not possible

Since a while I cannot attach any file when working with Outlook web access application via Safari. It works with Firefox and was working in the past. Any suggestions? Thanks Nenad

Besides the click twice method you can choose tot use the webapp light version (simply tick the box at sign in)
This works allright with attatchments, not the best of options but it works.
Apperantly the issue started with Apple not supporting Silverlight as off Safari 7. Or microsoft for that mater. I've not yet found a decent solution for this.

Similar Messages

  • How can I work with my adobe Lightroom Version 5 which was added to my Samsung NX3000. If I want to load an .SRW File it is not possible, only the .JPG File. How and from where can I the Module and how is it to install ?

    How can I work with my adobe Lightroom Version 5 which was added to my Samsung NX3000. If I want to load an .SRW File it is not possible, only the .JPG File. How and from where can I the Module and how is it to install ?

    You need Lightroom 5.5 or later (the most current version is 5.7.1). This is a free update if you have already purchased an earlier version of Lightroom 5.
    Product updates

  • Fast file system search not possible in java?

    hi,
    I'd like to find all xml files on a disk as quickly as possible. The simple implementation takes far too long (e.g. over 30 seconds for a disk with 10,000 files and 1000 folders).
    This is a network drive, but the reason I think 30 seconds is slow is that the equivalent C code does it in much less time (over the same network conditions)
    I've seen it run on a drive with 200000 files and 30000 folders, and this takes between 10-15 minutes, while C code takes around 1-2 minutes.
    I'm not sure what the C code does exactly, and it may have access to much better OS calls than java can assume.
    The only three things I can think of are
    1) try to use fewer file objects (can't see a way of doing this)
    2) try threading (i've done small tests before and not got any gain)
    3) try using FileFilters (i've done small tests here too and not got any gain - I think they just implement what you'd do without them anyway..)
    the other option is JNI but this is very bad since I need to run any many platforms..
    profiling shows that most time is spent in the native code
    17.0% 0 + 287 java.io.WinNTFileSystem.list
    10.7% 0 + 181 java.io.WinNTFileSystem.getBooleanAttributes
    but I've heard that switching between java/native is very expensive? so there may be benefits from doing it all in one go somehow?
    any help would be really appreciated,
    thanks,
    asjf
    ps. caching the file list is not really an option since it needs to run fast on new targets

    heres some code that is much faster when I/O blocking is the main problem (seems to work much better on network drives..)
    it uses a slightly bizarre (?) thread pool of workers that process a list of Invocations.
    (this is one big file Pool.java)
    asjf
    ps. I don't normally write code like this :)
    import java.util.*;
    import java.lang.reflect.*;
    import java.io.*;
    public class Pool {
    List invocations;
    public void invoke(Invocation a){
    invocations.add(a);
    synchronized(invocations) {
    invocations.notify();
    //System.out.println("Added an invokation");
    ThreadGroup threads;
    Set pool;
    Pool(int noThreads){
    pool = new HashSet();
    threads = new ThreadGroup("Pool of "+noThreads);
    invocations = Collections.synchronizedList(new LinkedList());
    for(int i=0; i<noThreads; i++){
    Worker w = new Worker(i+" of "+noThreads);
    Thread t = new Thread(threads, w);
    pool.add(w);
    t.start();
    new Thread(new Runnable() {
    public void run(){
    try{
    while(poolActive) {
    int active = 0;
    for(Iterator i = pool.iterator(); i.hasNext(); ){
    Worker w = (Worker) i.next();
    if(w.working) active++;
    Thread.sleep(3000);
    System.out.println(invocations.size() + " : " + active);
    }catch(Exception e){
    e.printStackTrace();
    }).start();
    volatile boolean poolActive=true;
    public void join() {
    try {
    boolean alldone = false;
    while(!alldone) {
    alldone=true;
    for(Iterator i = pool.iterator(); i.hasNext(); ){
    Worker w = (Worker) i.next();
    if(w.working)
    alldone=false;
    if(invocations.size()>0)
    alldone=false;
    Thread.sleep(2000);
    }catch(Exception e){
    e.printStackTrace();
    //System.out.println("--------------------------> all done");
    poolActive=false;
    synchronized(invocations) {
    invocations.notifyAll();
    public void status() {
    threads.list();
    public static void main(String [] arg) throws Exception {
    long time=-System.currentTimeMillis();
    Pool pool = new Pool(200);
    Enumerater e = new Enumerater(pool);
    Invocation in = new Invocation(null,Enumerater.getXML, new Object [] {new File(arg[0]),e.result});
    pool.invoke(in);
    //pool.status();
    pool.join();
    time+=System.currentTimeMillis();
    System.out.println("Time taken "+time+"\nFound "+e.result.size());
    class Worker implements Runnable {
    String name;
    volatile boolean working;
    public Worker(String name) {
    this.name = name;
    public void run() {
    try {
    working=false;
    while(poolActive) {
    Invocation i = null;
    synchronized(invocations) {
    while(poolActive && invocations.size()==0){
    invocations.wait();
    //System.out.println("Hello from "+name);
    if(invocations.size()!=0) {
    working=true;
    i = (Invocation) invocations.remove(0);
    //System.out.println(name+" processed: "+i);
    if(i!=null)
    i.result=i.method.invoke(i.o,i.arg);
    working=false;
    }catch(Exception e){
    e.printStackTrace();
    class Invocation {
    Object o;
    Method method;
    Object [] arg;
    Object result;
    public String toString(){
    return o+" "+method+" "+arg;
    public Invocation(Object o, Method method, Object [] arg) {
    this.o=o;
    this.method=method;
    this.arg=arg;
    this.result=null;
    class Enumerater {
    Set result;
    static Pool pool;
    static Method getXML;
    static {
    try {
    getXML = Enumerater.class.getDeclaredMethod("getXML",new Class [] {File.class,Set.class});
    }catch(Exception e){
    e.printStackTrace();
    Enumerater(Pool p){
    pool = p;
    result = Collections.synchronizedSet(new HashSet());
    public static void getXML(File file, Set result) {
    File [] children = file.listFiles();
    if(children==null)
    System.out.println(file.getAbsolutePath()+" has null children");
    else
    for(int j=0; j<children.length; j++)
    if(children[j].isDirectory()) {
    Invocation in = new Invocation(null,getXML, new Object [] {children[j],result});
    pool.invoke(in);
    else
    if(children[j].getName().toUpperCase().endsWith(".XML"))
    result.add(children[j]);

  • Attach Files in EM not attaching

    Mac Book Pro, OSX 10.6.8,  Is not loading jpeg files onto EM's.  Everything goes as normal accept when I press "Attach files" nothing hapins.  The file is a photo of 1.4 MB.  What should be done to fix this?

    No no. What I'm attempting to do is use Media Encoder to encode a PP sequence that has CC data attached. All I want is the CC data to be accessible when broadcasting the MXF file. I understand that I shouldn't be able to see them (other than in the PP program window). However, I should be able to see them in an MXF viewer which I checking with the folks at VLC and AmberFin right now.
    You can use the TC00.scc file located in the FTP below. It's a test file with captions every 30 seconds (for 10 second duration) starting at 00:00:00:00. I just created a six minute "bars and tone" video with PP and used that for video.
    The FTP information is:
    HOST: intercaption.com
    USER: captioner
    PASS: access
    If you get it to work let me know and I'll send you the real data but it's a HUGE file.
    Dave

  • Gmail attach file icon does not work

    Is there a way to fix this problem? I tried network.http.spdy.enabled to false. No go. I tried resetting all the settings in ie, per a suggestion somewhere, no go.
    Safe mode - does not work.
    This problem seems to have come from no where. I can drag files into gmail, but the attach file icon does nothing.
    Attach file icon works in IE, but I am trying to use Firefox.
    Is there a fix or do I need a new computer?

    I also have this problem. It just started today out of the blue. Whenever I hit "attach file" in gmail, I never get a "file explorer" popup. Simply nothing happens.
    * I'm running 31.0 on Mac 10.8.5.
    * I have tried resetting firefox several times. I've tried restarting in safe mode multiple times. Nothing will allow the window to appear.
    * I've tried various (old) fixes I found through searching (mostly involving about:config settings) but none worked.
    * Drag and dropping files onto a note DOES work (but this is no solution!).
    * I have cleared the cache several times but to no avail
    * I don't have the stomach (or time) now to completely uninstall and re-install. Not yet anyway.
    * This function works fine in Chrome and Safari
    I finally went and UNCHECKED popup blocking. Now I get the file popup immediately! So it would seem that somehow Firefox is blocking the file "finder" interface as a popup. What gives?

  • About IDoc to file scenarios, ack not possible

    I almost work out this scenario except one error in XI, T-Code SXMB_MONI
    Acknowledgment not possible
    detail info is "Unable to convert the sender service FTP to an ALE logical system".
    Because I create two business service for SAP ERP and FTP, no technical system in SLD.
    Of course I assign the Logical system name to SAP ERP, and FTP has no Adapter specific identifiers.
    It is not Ok to create another Logical system and partner profile for this.
    Is there any expert can tell me what to do in this situation?
    Thanks for any suggestion.

    > detail info is "Unable to convert the sender service FTP to an ALE logical system".
    >
    > Because I create two business service for SAP ERP and FTP, no technical system in SLD.
    > Of course I assign the Logical system name to SAP ERP, and FTP has no Adapter specific identifiers.
    > It is not Ok to create another Logical system and partner profile for this.
    > Is there any expert can tell me what to do in this situation?
    >
    you need to do HEADER MAPPING in Receiver Agreement. Just define the sender logical system there and your problem will be solved...

  • Attachment file type .vcf not shown when send by android gmail

    When thunderbird 31.3.0 receives a .vcf attachment (contacts list made by android phone contacts) send from android gmail, it shows the attachment icon next to the list of new messages, but when opening it disappears. In the message no attachment shown, but it is in the message source.
    The menu View->Message Body As->'Original HTML' is set.
    When I change this option to 'Plain Text', the attchment is shown and can be saved.
    Other files like .pdf work ok though in 'Original HTML'
    The messages are received by a POP server (tried pop.online.nl and pop.googlemail.com).

    I realize that I should not see headers like that, and none of my other received emails that day had them. The particular email in question had other unwanted characters within its message, suggesting that something gone wrong with its encoding. Here is a small sample (i.e. the '=20'):
    Subject: Re: Draft email to Claire re topics /possible agenda items for Wa=
    ndle consultative group mtg
    =20
    The email was part of a conversation, and earlier parts of it had far more of these intrusive characters, which were not there when those parts of the conversation were first received. Here is a sample:
    I hope you still have your full revised text and can send it to us again.
    Best,Michael.=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
    =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Michael Graubart
    I did not, in fact, do View / Message / Raw Source when I read the email. I have now gone back to the email and have now tried View / Message / Raw Source to see what the result would be. What happened was that an additional view of the message opened alongside the first one, with an enormous mass of characters which I shall not reproduce here unless I am told that it would be helpful.
    But in neither of the views could I find a trace of the attachment. That is what really worries me, in case it happens again unknown to me.

  • Attaching files as Attachments, not INLINE attachments

    I'm sending images to a client who's on Lotus Notes (7.02). We have discovered an issue with inline attachments in Lotus, where attachments can only be drag and dropped out of Lotus if the attachment was NOT sent as an inline attachment.
    This was tested in Thunderbird by changing the mail.contentdispositiontype preference as per this article:
    http://kb.mozillazine.org/Sendattachments_as_realattachments
    In any event, the client is not able to switch from Lotus to OS X mail or any other client– as this is a large organization.
    The issue is easily fixed on my end by using Thunderbird– but that's not the path that I'd like to take–I'd like to know how to address this in OS X Mail.
    I've already clicked on windows friendly, send at end of message, and tried right clicking and setting the attachment to 'show as icon'– all in an attempt to get OS X Mail to send 'real' attachments, as opposed to inline.
    Does anyone know of a .plist file, or a hidden preference that can be enabled to address this?
    Thanks!

    exactly the same with on of my clients (Lotus, blocker, large org...). I have filed an problem case on this.
    http://www.ietf.org/rfc/rfc2183.txt
    http://www.iana.org/assignments/mail-cont-disp
    My understanding is Apple Mail has no outgoing option (GUI) to set the "Mail Content Disposition Value" to "attachment" (RFC2183 2.2) to have an "user controlled display" as opposed to "inline" (RFC2183 2.1) and "displayed automatically" on the side of the recipient.
    In short the Summary (RFC2183 4.):
    +"Content-Disposition takes one of two values, `inline' and `attachment'. `Inline' indicates that the entity should be immediately displayed to the user, whereas `attachment' means that the user should take additional action to view the entity."+
    I also suggest we should also have a preference for incoming mail to not display content at all as "inline" regardless of the Content-Disposition Value if we want to.
    Btw. I am also missing the option (MDN) to request a notification that a message is delivered/read.
    http://www.ietf.org/rfc/rfc3798.txt

  • Multiple file attachments are not possible in gmail, win 7 os

    Gmail.
    OS : Win 7 os
    Flash : 10

    Check your Gmail settings. Open Gmail settings, and select General. Scroll down till you find "Attachments. Make sure the Advanced attachment features is selected. If not selected, select the option and click Save Changes.

  • Idoc- File scenario: acknowldgement not possible

    Hi,
    what do I need to change to be able to receive acknowledgments and get the status - "Acknowldgement contains no error"?
    Thank you,
    Olian

    hi,
    PI7.0 after support pack 10 we can able to create a separate message for Acknowldgement.
    Check the bellow link for how to configure...
    [http://help.sap.com/saphelp_nw04/helpdata/en/44/a1b46c4c686341e10000000a114a6b/content.htm]
    *Award Points If its Useful*
    Regards,
    Prakasu

  • Unable to upload files using firefox, be it dropbox, gmail or any other websites where we need to attach files. It does not open up a new window to choose file.

    all of a sudden im unable to attach files in any of the websites. Im using firefox version 30 and when I click to attach file it does not open up a new window where we can choose the file from my computer. It happens almost in all websites that I use (gmail, dropbox, other websites).
    This was not the case before, seem some problem with firefox.. can somebody fix this at the earliest. thanks

    hello Balaatmozilla,
    please check if this problem appears as well when you try to download a file, does this happen again when you try to download a file?
    if so there must be a problem with your HDD controler, to solve this issue follow th steps:
    1.Right Click on My Computer, Select Properties
    2.Click on Device Manager in Top Left corner
    3.expand the IDA/ATI/ATAPI controllers
    4.right click on the one which is related to your HDD
    5.click on Uninstall
    6.Restart
    when you restart your windows the OS will try to install the drivers again, if this happens then restart again and check if the problem is solved, if no try to install the HDD drivers and related drivers manually and then restart your machine

  • Chnage attachment file name

    We have Oracle 10g application server ,i used rwlicent to send report as email and it works fine the only problem that i couldnot controll the attachment file name,
    is it possible to change the file name?
    any help so appritiated .
    Regards

    Are you using a distribution.xml for the emailed reports? If not you can pass destination=distribution.xml on your rwclient call.
    distribution.xml:
    <destinations>
    <foreach>
      <mail id="a6" to="[email protected]" subject="Personnel Reports">
        <attach format="pdf" name="attach.pdf" srcType="report" instance="this">
          <include src="mainSection"/>
        </attach>
        <attach format="rtf" name="attach.rtf" srcType="report" instance="this">
          <include src="trailerSection"/>
        </attach>
      </mail>
    </foreach>
    </destinations>You can change the attach.rtf to be a parameter value using &<parametername> syntax. Look here for details on using the distribution.xml file.

  • Attaching files after signature

    Good Day, All:
    I have a form that is being submitted via email through a total of 5 people. So the 1st person signs and send to the second person who signs and sends to the next person and so on. The form is working fine but the problem is perhaps the 2nd or 3rd person needs to attach a file which is not possible after the 1st person signs. I have an "attach file" button which works great until someone signs after which it no longer works. Also, clicking the paperclip and using the add button doesn't work at that point either. The option is greyed out. Now it's important to state that the form is NOT LOCKED for editing at any point. Additional information can be added/updated. It's just the attach file function that is disabled. Is there a way to make this work?

    Good Day, All:
    I have a form that is being submitted via email through a total of 5 people. So the 1st person signs and send to the second person who signs and sends to the next person and so on. The form is working fine but the problem is perhaps the 2nd or 3rd person needs to attach a file which is not possible after the 1st person signs. I have an "attach file" button which works great until someone signs after which it no longer works. Also, clicking the paperclip and using the add button doesn't work at that point either. The option is greyed out. Now it's important to state that the form is NOT LOCKED for editing at any point. Additional information can be added/updated. It's just the attach file function that is disabled. Is there a way to make this work?

  • Acrobat Reader DC  one source of pdf attached files

    I have a MacBook Pro and found that since updating to Acrobat Reader DC there is one source of pdf attached files that do not open (I just get a black screen).
    I do not have this problem with my iPad nor with an iMac also running the same reader. 
    I cannot find any 'switches' that will resolve this problem.   I get an error message saying that Acrobat Reader DC could not open "File reference" because it is either not a supported file type or because the file has been damaged.  This cannot be the case as this file opens on other computers so it has to be localised to my MacBook Pro.  Other pdf files open normally and I am at a lost in deciding as to what is going wrong and how to rectify.

    If the same attachment can be viewed successfully on other devices, then it must get corrupted during the download on that one machine.
    People should really stop sending e-documents as attachments, it is much safer using a file sharing service such as Acrobat.com - upload and share the document, then send the download link via email.

  • Unable to attach files in mail and unable to print from browser

    while trying to attach files it is not opening the path in mozilla. and uable to print directly from browser.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

Maybe you are looking for

  • Commercial Invoice and Excise Invoice number should be same

    Hi Friends, I want to know whether is it possible to maintain same number for commercial and excise invoice. If yes then how to do? Do i have any impact in other areas? Thanks&Regards Azeez.Mohd

  • Opening a new window on lead select in a table

    Hi,   I want to open a window on Lead Select ...i have written the below code in the ActionLeadSelect ************************Begin Code****************************************************** message.reportSuccess("came inside LeadSelect"); IWDWindow

  • New to action script and getting: TypeError: Error #1009: Cannot access a property or method of a nu

    I am getting this message in the output tab for buttons that I am trying to create.  Here's the code: import flash.events.MouseEvent; stop(); function goHome(myEvent:MouseEvent):void { gotoAndStop("home"); SoundMixer.stopAll(); function goAbout(myEve

  • Sap script creating dynamic box problem

    Hi all, I am unable to create dynamic box in sap script. Because the printing lines in the main window changing from one customer to another customer. So could you please guide me how to create a dynamic box in sap script and also how to know the pri

  • Resizing 3d objects

    Hello! I'm new at java3d and i'm researching for my university project. I have the following question: how can i resize a object imported from a .obj file? There is any way to do that? Suppose i've a .obj that i want to load to my project but i need