When downloading .ics file safari auto convert it to .vcs file

When downloading an .ics (event.ics) file from my site, safari on mac auto convert it to .vcs (event.ics.vcs) file. How can I stop it? Safari on Windows doesn't do this. I am new in Mac, please help.

I wrote my code in Java, here is the code:
aaRes.setHeader("Content-Disposition", "attachment;filename=\""
                                                            + "event.ics" + "\"");
                                        writeResponse(aaRes, "text/x-vCalendar", calendar.toString());

Similar Messages

  • I have an iPad air and have downloaded the microsoft app excel.  I have an email with an excel attachment.  When I "tap to download" the attachment, it auto converts to a PDF file.  I want it to open in excel.  Please help.

    I have an iPad air and have downloaded the microsoft app excel.  I have an email with an excel attacment.  When I "tap to download" the attachment, it automatically converts to a PDF file and opens as a "view only" document.  I want it to open with the excel app so I can see and update the spreadsheet.  Please help.  Thanks!

    If Excel works as do other apps, you should be able to tap and hold on the attachment and then select "Open in Excel" in the window that will open. Note that you need to be subscribed to and signed into Office 365 to be able to edit documents in Microsoft's apps.
    Regards.

  • In dreamweaver mx 2004 and dreamweaver cs4, how I configure, when download/upload do not ask me to include DEPENDED FILES but act without including ?

    in dreamweaver mx 2004 and dreamweaver cs4, how I configure, when download/upload do not ask me to include DEPENDED FILES but act without including ?

    Open the Preferences panel (Edit menu on Windows, Dreamweaver menu on a Mac), and select the Site category. There are two checkboxes there for dependent files. Make sure both are selected. The Dreamweaver default is NOT to upload/download dependent files. You need to click Yes, if you want the dependent files to be included.

  • IMac freezes when opening finder from Safari or other applications to import files

    Hello,
    I have an iMac late 2013 27inch
    When I'm in Safari and want to upload a picture or file from the HDD, finder opens but then there is the rainbow circle and the whole Safari freezes.
    Same with other applications like Prezi.
    I don't know what to do !!
    Maybe its because of Dropbox?
    Please help.
    - Sebastian

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Receive message when downloading ITunes or Safari for Windows 7 64 Bit.  "Installation package could not be opened. Verify package exists or contact application vendor to verify this is a valid Windows Installer package."

    Received message when trying to install Itunes or Safari for Windows. " Installation package could not be opened.  Verify package exists or contact application vendor to verify this is a valid Windows Installer package". 

    I to am having the same issue. I have a admin account and logged into it as well and still have the same message pop up. Contacted live support the woman i spoke with had to send it up higher. We went through every thing including her trying (taking over as a host on my laptop) still have not bee contacted this June will be a year that i have heard nothing from them sine She di everything she could and pushed it up higher.

  • When downloading itunes updates, i get an error that reads file folder for itunes media has an invalid character

    The error message read "file folder iTunes media has invalid character".

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • TS3297 error when downloading from iTunes song from store. sail away says file corrupted, yet continues to repeatedly try to download this song. can't remove it or delete it from iTunes, shows up with an exclamation sign.

    It says file corrupted yet continues to attempt to download the file. It is stuck in a loop. I can't seem to delete this file either. i've tried several ways, dragging it to trash (it still appears), hitting the delete buttin on my computer.
    Any suggestions as to how to stop the downloading of this corrupted file?
    MC

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • Navigation in JSF when downloading the results to CSV .. html in CSV files

    Hi,
    I am new to JSF and am struggling with navigation.
    I tried using CommandLink and CommandButton to invoke the action in the backing bean.
    I am either getting html code written in the .CSV file or the click on the
    link is working in alternate attempts.. Please respond as soon as possible
    Below is the code in the backing bean :
    public String getHardCopyContactsFilterResultsAsCSV(){
              this.setFilterReportPrefId("HARDCOPY");
              FacesContext context = FacesContext.getCurrentInstance();
              HttpServletResponse response = (HttpServletResponse) ectx.getResponse();          
              response.setHeader("Content-disposition",
              "attachment; filename=Hard Copy Contacts Fliter Results Report.csv");
         E contec     response.setContentLength(getHeaderForFliterResultsReport().length());
              response.setContentType("application/text");     
              //response.getWriter();
              try {
              response.getOutputStream().write(getHeaderForFliterResultsReport().getBytes());     
              if(this.hardcopyResultsDTO!=null){
                   response.getOutputStream().write(getHardCopyContactsForFilterReport().getBytes());
              response.getOutputStream().flush();
              response.getOutputStream().close();
              //context.responseComplete();
              } catch (Exception e) {          
              e.printStackTrace();
              return "temporaryPage";
    Note:: I Tried to comment and uncomment the context.reponseComplete() .
    Case A:)When The above line is commented i.e responseComplete is called what I am observing is once I click the link to view the Results as .CSV First time I am able to save the results once I try to clik the se cond time the page is getting refreshed rather than opening the dialog as shown for the first attempt.
    Every alternate attempt it is working as required i.e opening a dialog.
    Case B:
    Here the line responseComplete is commented. So when click on link every time a dialog opens
    But what I see in te saved .CSV file is the Html code also rendered after the results written in the JSP

    Appreciate your response. Thank you.
    Yes, I did make the bean action method as void and also did FacesContext#responseComplete. But here the problem is on the first click it opens the CSV but on the second click the page is getting refereshed . So ever alternate click on the link opens the CSV,
    I am using the link in the jsp emmbed in the tabbed pane, I am providing the code in the tabbed pane as well the code to invoke the link..
    Tabbed pane code :::>>>>
    <h:form id="czAnnmtFilterReportOnlineForm">
         <t:panelTabbedPane id="czAnnmtFilterPane" bgcolor="#FFFFCC" activeTabStyleClass="editorPane_activeTab" inactiveTabStyleClass="editorPane_inactiveTab" tabContentStyleClass="editorPane_tabContent" >
    <t:panelTab id="allResults" label="All Contacts" title="All Contacts" >
              <jsp:include page="CzAnnmtFilterAllReport.jsp"/>
         <t:panelTab id="hardCopyResults" label="Hard Copy Contacts" title="Hard Copy Contacts" >
              <jsp:include page="CzAnnmtFilterHardCopyReport.jsp"/>
         </t:panelTab>
    Code to perform the action of view Results as .csv in CzAnnmtFilterHardCopyReport.jsp
    <h:commandLink styleClass="c14_green_under" value ="View Hard Copy Contact Results as .csv" action="#{announcementBackingBean.getHardCopyContactsFilterResultsAsCSV}" rendered="#{!empty announcementBackingBean.hardcopyResultsDTO}"/>
    Please let me know the nest approach to solve this problem
    That is the reson I was trying other approaches of fowarding to another page in the faces Context but even then
    I am not succesful.

  • Is there a way to create favourites in a chm file that was converted from a WebHelp file?

    I am using RH 11. We generally output our help projects to WebHelp, but we still have a few .chm outputs.
    Marketing has provided us with a new branding for our Help projects. We implemented the new skin for the WebHelp and then applied this skin to the chm outputs.
    This works really well. The only issue is that in the new chm output, we no longer have access to the Favourites functionality.
    Does anyone know how to add this functionality or a workaround to create favourites in this new chm output?
    Any help would be much appreciated.
    Cheers,
    Mack

    You would need to add favorites to the WebHelp output prior to creating a CHM. You would need something along the lines of: http://www.wvanweelden.eu/product/favorites-widget-webhelp
    But since it's in a CHM, I'm not sure whether you will be able to save anything from the webhelp output between sessions.
    Kind regards,
    Willam

  • I have a PDF file I want converted to a WORD file.

    How do I do that?

    Hi Mogens,
    Welcome!
    Here is a quick 'getting started' guide you may find helpful.
    Let me know!
    Kind regards, Stacy

  • Can you download a PDF Wizard that converts Microsoft Office files to PDF through a print command. The PDF wizard does this but costs 40 US Dollars?

    Does anyone know if you can download a PDF Printer that converts all microsoft office files to pdf format via a print command. The PDF Wizard fromPDF Suite does this but it costs 40 US Dollars?

    Hi Justin,
    You can purchase a Create PDF subscription and use the Create PDF desktop pinter which can be downloaded once you are a paying subscriber. The subscription costs $9.99 per month and you can end your subscription at anytime. Learn about this service.
    Hope this helps.
    Thanks,
    Karen

  • Jar files downloaded from SkyDrive are being renamed to jar.zip files

    I have cut and pasted the following series of exchanges from when I posted the problem onto SkyDrive's support forum. I hope that someone might be able to propose a better solution to the problem that I have. Thanks for your help.
    MDSms asked on
    Uploaded jar files convert to jar.zip files when downloaded from SkyDrive
    I have uploaded an executable jar file to SkyDrive. (I will call this FILE.jar). The file is intact and indicates that it is a jar file type when the file is viewed by Properties within Skydrive. However, when I download (or others download through a share link) the file, it is being saved onto the local computer's download file with .zip appended to the file name (FILE.jar.zip). The downloaded file can be renamed to remove the .zip appendage and subsequently run successfully. However the folder options for the folder where the downloaded file resides must be changed for disable "Hide known file extensions" prior to being able to remove the .zip appendage. While I have figured out the workaround for this problem, this manual renaming procedure is entirely too cumbersome as a solution for sharing this file with others. How can I prevent or disable the FILE.jar file from being renamed to FILE.jar.zip when it is downloaded from SkyDrive?
    All Replies (5)
    Audrey_P. replied on
    Forum Moderator
    Hi,
    Thank you for posting. Let me try to assist you with your issue with your files.
    In order for us to reproduce the issue on our end. Please provide us with the exact steps that you did when you uploaded the files as well as the steps when you are downloading it.
    We will be needing the steps to help us figure put what is causing you this issue.
    We look forward to your response.
    Thank you.
    Audrey P.
    MDSms replied on
    Reply
    The file was uploaded by first logging onto my SkyDrive account using Windows 7 Pro and Firefox browser, then a new folder in my account was created without sharing privileges, then the folder was opened and the FILE.jar was uploaded into the folder using the "Upload" option on skydrive account menu. Sharing privileges for FILE.jar were then created (view only), and the shortened url link was sent to the individuals that I was trying to share the file with. was then turned on. When these people use the link to download the file, it is being saved as FILE.jar.zip.
    When I try to download the file through the skydrive account download option, it is being saved onto my computer as FILE.jar.zip and this occurs when I try to download the file while signed into my skydrive account as well as when I am not signed into my skydrive account (using the shared file link).
    This PNG shows the information provided by clicking on the download icon (down arrow) within the Firefox browser; note that the file was downloaded as FILE.jar.zip and that the source was live.com. When I use Windows Explorer to look at the same file within the Download folder itself, examining the file's properties details also shows that it is being saved as FILE.jar.zip and is of the file type compressed zip folder.
    This PNG shows the information displayed to me from my skydrive account when I view the originally uploaded file's properties; note that the information shows that the file is a jar file type.
    When I utilize Internet Explorer 9 to access the file, FILE.jar is being downloaded onto my computer as a jar file type. This PNG shows the information provided by Tools/View Downloads within the IE9 browser. Note that in this instance, the information indicates that the file is being downloaded from yzudea.blu.livefilestore.com.
    It appears to me that the problem (the FILE.jar file being renamed to FILE.jar.zip) arises from the fact that a jar file downloaded from skydrive using firefox, is being sent from live.com whereas a jar file downloaded from skydrive using IE9 is being sent from yzudea.blu.livefilestore.com.
    I want to make sure that a person receiving a share link from me for FILE.jar is able to download it without modification to the file name regardless of which browser is being using to access the link. How can I make sure that this occurs?
    Any help is appreciated. Thanks.
    Michelle Anne D. replied on
    Forum Moderator Community Star Community Star
    Reply
    Hi MDSms,
    I appreciate you for providing as much information as you can about the issue, as well as for uploading screenshots on what you see from the downloaded file. About your initial concern wherein the file gets renamed with .zip after the original file extension, this is solely dependent on the browser that you are using since they have a different safety/security measure that needs to be implemented.
    Moreover, you may see the file servers live.com and yzudea.blu.livefilestore.com to be different with one another, but they actually are sent from the same SkyDrive server. This in turn, depends on the web browser where the file is being downloaded as well. The live.com file where it was downloaded from Firefox simply masks its original server yzudea.blu.livefilestore.com.
    As for your last query about your recipients downloading the file without the hassle of renaming it from a .zip file, you can simply tell them to download it through Internet Explorer.
    Should you have other queries or additional information that might help in our investigation, I highly encourage you to post them here.
    Regards,
    Michelle
    MDSms replied on
    Michelle,
    Thanks for your reply. Yes, I could simply tell them to download the file through Internet Explorer, but is there another solution or workaround to the problem I have described here? Am I being punished with the curse of this problem simply because I (or the individuals with which I wish to share FILE.jar with) choose to use Firefox instead of IE? Will the use of any other browser instead of IE (Chrome, Safari, etc., etc.) still result in the same problem?
    You stated that it is "solely dependent on the browser that you are using since they have a different safety/security measure that needs to be implemented"........could the problem be overcome by designating one or both of the file server addresses as Trusted Sites within the browser options setting?
    I look forward to your response. Thanks in advance.
    Joy V. replied on
    Forum Moderator Community Star Community Star
    Reply
    Hi MDSms,
    We understand your concern. Since the issue does not occur in Internet Explorer, it has something to do with Firefox's security feature. You might want to verify this concern by contacting Firefox support.
    Hope this helps. Let us know if we can further assist you with SkyDrive.
    Thanks,
    Melanie Joy

    Try to delete the mimeTypes.rdf file in the Firefox profile folder to reset all file actions.
    *http://kb.mozillazine.org/mimeTypes.rdf
    *http://kb.mozillazine.org/File_types_and_download_actions#Resetting_download_actions

  • Acrobat 8.1 Pro .mht And Some .html files Do Not Convert To PDF

    Acrobat 8.1 Pro with Windows Vista. .mht files are saved complete webpage single files similar to complete html files except they're as a single file instead of a file and a folder. When using Create From File, Acrobat does not recognize .mht files and will not convert them to PDF. Some complete .html files will not convert using Create from File, even though Acrobat does recognize them.
    Also, when I'm logged into a website and want to convert a webpage to PDF using Create From Web, often the resulting PDF document is of the login page and not the page I selected with the error message "can't locate file". These difficult webpages can be converted to PDF using the Print Adobe PDF function, but hyperlinks are not preserved with this function.
    I would like to be able to convert all files (including .mht) and webpages to PDF while preserving hyperlinks. Can anyone help me with this?

    Bruce,
    mht files are not standard html files. Acrobat will not handle those. If
    you are on a website that most be logged into, then Acrobat cannot get
    to those files since it is not logged in. You can print to pdf, since
    your browser is logged in.
    Mike

  • Difference between files generated by converter

    hi to all
    can anybody plz tell me the diff between the .cap ,.ijc & .jca file generated by converter & use of those files while loading the SIM toolkit applet on the java card?
    thanks in advance
    Regards
    Divyesh.

    i but i think that will also not work .as Java Card
    2.1 development kit uses the same jar file as java
    card 2.1.2 kit.I think that the converter is different...you should try it.
    and one more thing Axalto views internally uses java
    card development kit 2.1.2 as a converter ,so how can
    i try with java card kit 2.1?Call the converter process directly using the command line with the jar. See the Java Card Development Kit documentation for details.
    -OR-
    Create a converter configuration for the Views tool by editing the Views converter configuration:
    VIEWS-Professional-1.8.X\config\converter\converter_globalconfig.xml
    - Add the Java Card 2.1 converter to the converter defintions at the top of the file
    - Add a custom <CardType> entry to your Views converter configuration file by copying an existing <CardType> entry. Change the CardType name value to something unique. Change the converter to match the converter definition you specified above. If you like, you can change the ATR to match your card.
    Now start Views, on the converter page, you will see that you can select the newly created card type, and based on the specified "Sun Java Card Converter" version will be selected.
    Now attempt to convert and load! Good luck - this is a possible solution. I hope it works...
    When the tools limit you, find an alternate path!

  • Command to Convert X Window Dump file to JPEG file

    Is there a command in Solaris 2.6 that I can use to convert XWD files to JPEG files? The command should accept two arguments, the name of the file to be converted and the destination file.
    Thanks a lot!

    You can read the xwd image with imagetool and save as
    a jpg file. I just did this from the command line and
    viewed the jpg file with imagetool and xv. Xwd will
    allow you to only select one client on your screen
    or you can dump the entire screen.

Maybe you are looking for

  • Iphone4 out memory since photo stream "showed up"?

    Ive recently had performance probs on my iphone4. could photo stream cause  this? How do I troubleshoot and fix?

  • Update only non empty fields

    Hi everybody, I'm trying to develop a trigger-based solution for a project involving received messages from an MQ queue. The messages are all inserted from the queue into a single staging table. (v10.2.0.4) Each message's data will need to be either

  • Using printers in process

    Hi I am trying to use output services to print a pdf by filling in the printerURI with \\server\printer as the URI. From API on the internet: printerURI A string value that represents URI of the destination for the print output. The Output service se

  • Show HTML-Page

    Hi! How can I show a HTML-Page in Internet Explorer by clicking a Menu Item or a button? Thx!

  • SQL Query to check which datafiles have AutoExtend on?

    I want to turn autoextend off on almost all my datafiles(obviously not on system). Using the Java Enterprise Manager you can visually see which datafiles have autoextend on. I'd prefer to find out using sqlplus which files have autoextend on so I can