Messagefileupload issue--"Please select a File to upload"

Hello,
i have created a messagefileupload item and display button in the oaf page .
After i browse the csv file and click on display button, the messagefileupload item gets cleared out and i get an error "Please Select a File to Upload".
can anyone tell me how to solve this?
Regards,
Den123

Hi Sandeep,
Please find my controller code below:-
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
super.processFormRequest(pageContext, webBean);
OAApplicationModule am = (OAApplicationModule) pageContext.getApplicationModule(webBean);
// String fileName = null;
// DataObject fileUploadData =(DataObject)pageContext.getNamedDataObject("ssofileupload");
// fileName = (String)fileUploadData.selectValue(null, "sso.csv");
// System.out.println("Filename"+fileName);
if("display".equals(pageContext.getParameter(EVENT_PARAM)))
System.out.println("Inside display");
DataObject fileUploadData =(DataObject)pageContext.getNamedDataObject("ssofileupload");
String fileName = null;
String contentType = null;
Long fileSize = null;
Integer fileType = new Integer(6);
BlobDomain uploadedByteStream = null;
BufferedReader in = null;
try
System.out.println("Inside try");
fileName = (String)fileUploadData.selectValue(null, "sso.csv");
System.out.println("Filename"+fileName);
// contentType =(String)fileUploadData.selectValue(null, "UPLOAD_FILE_MIME_TYPE");
uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, fileName);
System.out.println("After uploadedByteStream ");
in = new BufferedReader(new InputStreamReader(uploadedByteStream.getBinaryStream()));
System.out.println("After BufferedReader ");
fileSize = new Long(uploadedByteStream.getLength());
System.out.println("fileSize"+fileSize);
catch(NullPointerException ex)
throw new OAException("Please Select a File to Upload", OAException.ERROR);
try
String lineReader="";
long t =0;
String[] linetext;
while (((lineReader = in.readLine()) !=null) )
if (lineReader.trim().length()>0)
System.out.println("lineReader"+lineReader.length());
linetext = lineReader.split(",");
t++;
System.out.println(t + " - " +
linetext[0].trim() + " - " + linetext[1].trim() + " - " +
linetext[2].trim() + " - " + linetext[3].trim() + " - " +
linetext[4].trim() + " - " + linetext[5].trim() );
catch (IOException e)
throw new OAException(e.getMessage(),OAException.ERROR);
Regards,
Nancy

Similar Messages

  • Browse dialog closes too quickly to select a file to upload

    I'm on OSX 10.6.6
    I am on any website and click "upload" to upload whatever type of file, and the dialog closes too clickly to navigate to and select a file.
    Same thing happens when downloading files that the dialog box doesn't stay open long enough to select the location to save the file or name the file.
    This started happening in the last version of 3.x and now is in 4.0x.
    '''This does not happen in Safari and alas it is a deal breaker for using Firefox since I can't attach photos etc. in mail.'''

    DOes the same thing happen if you start Firefox in Firefox safe mode? - [[Safe Mode]]

  • Problems with shortcuts when selecting file to upload in BPS

    Hi all,
    We have a problem when the user is navigating through the directories for selecting a file to upload. When the user navigates between folders it is ok but if there is a shortcut to another disc the program interprets that as a file and then generates a lot of errors in BPS.
    This worked only a month ago and the only thing we have changed is a GUI upgrade from 640 to 710. Could this be the problem?
    We are using cl_gui_frontend_services=>file_open_dialog for uploading files in the planning layout.
    We are on:
    BW: 3.5 Patch 17
    GUI: 710
    SEM: 4 Patch 8
    Thanks for any help!
    Best Regards
    Pontus

    Hello Pontus,
    maybe you are using the incorrect file/path separator. Check SAP Note <a href="http://service.sap.com/sap/support/notes/1266211">1266211[</a> on how to get the correct separator.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Problem when selecting ITunes File "ITunes Library.itl" cannot be read because it was created by a newer version of ITunes? Need help!

    Issue when selecting ITunes - File reads "ITunes Library.itl" cannot be read because it was created by a newer version of ITunes.
    1. Re-installed ITunes and problem still exist, and
    2. Re-installed earlier version of ITTunes (10.3) problem still exist
    Need help!

    Finally (after extensive searching) found a solution for you my friend:
    1) Open Finder,
    2) On the top right search box enter .itl
    3) Move to trash all the .itl Files you see then restart your iTunes, and your iTunes is back to you.
    Hope this works buddy.

  • Auto selection of file from folder during uploading??

    Hi all friends,
    Iam facing with one problem I am developing one uploading software for that i have used swing and servlet.Now my problem is i want to give auto selection of file from one folder means user just copy the files from any computer on network and paste it in predefind folder.And when they click on upload button it should start uploading of file one by one and after completion of uploading it move that file into another folder one by one.Now my software doing it perfectly but if user copy and paste any file in that predifined folder from network computer during uploading then they have to click upload button again after completion of first queue of files(for example if user first copy 10 files and start uploading and inbetween uploading of that 10 files if user copy another 10 files from network computer then they have to click on upload button again after completion of uploading of first 10 files).But my user requirement is they want to click on upload button once only at the time of starting my application and my application automatically select the file one by one from folder and send it to destination.Means if they copy the file from network machine inbetween uploading or any other user from network send file in that folder then my application should select those file automatically and start uploading means they don't want to click on upload button again.Can any one plz guide how I can slove this problem.Below r my codes:-
    Upload.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    try {
    suspendflag=true;
    Resume.setEnabled(false);
    Suspend.setEnabled(false);
    dest=frame.m_txtURL.getText();
    File ff=new File("d:\\DTMS\\Upload");
    File[] files = ff.listFiles();
    fileList = new Vector();
    if(files == null)
    textArea.append("There is no file");
    return;
    else
    for (int j = 0 ; j< files.length ; j++)
    fileList.add(files[j]);
    java.util.Collections.sort(fileList, new FileComp());//sorting by size
    new Thread(new Runnable() {
    public void run(){
    for (int k = 0; k < fileList.size(); k++)//loop for queue {
    File fname = (File)fileList.get(k);
    String str=fname.getName();
    log("Destination:" +" "+ dest);
    log("Uploading Progress\nPlease Wait....");
    result=doPost(fname,dest);//method for read file & send to servlet
    String str2="Transfer apparently failed.";
    String str3=result;
    if(str2.equals(str3)){
    Error(result);
    else if(suspendflag==true){
    File newfile =new File("d:\\DTMS\\Archives\\"+str);
    fname.renameTo(newfile);
    log("File" +" "+ str+" "+"Upload Completed !");
    else if(suspendflag==false){
    Error("** Transfer Suspended**");
    }).start();
    }catch(Exception exp)
    Error("Error : " + exp.toString());
    Regards
    Bikash

    Hi Chandan,
                        All the multiselection files are stored in it_tab( i:e file_table in method). you need to loop the every record to upload the data for selected files. please check the code Below...
    DATA: file_str1 type string.
    data: it_tab TYPE STANDARD TABLE OF file_table,
           wa_tab TYPE file_table,
           lw_file LIKE LINE OF it_tab,
           gd_subrc TYPE i.
    SELECTION-SCREEN begin of block blk with frame title text-100.
    SELECTION-SCREEN SKIP 2.
    parameters : p_file like rlgrap-filename .
    SELECTION-SCREEN end of block blk.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
    EXPORTING
    window_title = 'Select only Text File'
    default_filename = '.azt'
    multiselection = 'X'
    CHANGING
    file_table = it_tab
    rc = gd_subrc.
    *READ TABLE it_tab INTO lw_file INDEX 1.
    *p_file = lw_file-FILENAME.
    Start-of-Selection.
    loop at it_tab INTO wa_tab.
       file_str1 = wa_tab-FILENAME.
    CALL FUNCTION 'GUI_UPLOAD'
       EXPORTING
         filename                      = file_str1
    *    filename                      = '\\10.10.1.92\Volume_1\_projekte\Zeiterfassung-SAP\test.azt'
       tables
         data_tab                      = it_string
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDLOOP.

  • Google documents - 'select files to upload' does not work with v 3.6.8 Firefox - several users have noticed this.

    Until Friday, I could upload documents using google's facility within Firefox . Suddenly, the 'select files to upload' stopped working. Internet Explorer does this ok.
    I noticed on the Google forum that several users have reported this and someone suggested it should be reported to Firefox as it works with other browsers. I am using Windows XP on a laptop.

    It is an issue that Google are aware of and are working on a solution. See [http://www.google.com/support/forum/p/Google+Docs/thread?tid=4f0369bdcf6fd7ff&hl=en "Select files to upload" not working in Firefox - Google Docs Help]
    (Thanks to Joolsa for the link)

  • Message: please select folder that contains your Adobe GoLive files

    Hi, I'm really new to DW 5, I did use DW when it first came out and started to get the hang of some things, but my learning was not going as fast as I needed it to go. So I have two questions, I have searched the forums for my answers but I'm getting them in bits and peices and have also found the same question I'm about to ask, but didn't see an answer.
    Anyways, first; I'm using OS X (updated to 10.6.5) I was using "GoLive" but in the middle of updating the site, GL would crash, it wasn't from anything inperticular, it would just crash, it was always around 4-5 minutes of using it. So I started using "GoLive CS" it had been working great until today, GL CS is now starting to crash on me, doesn't matter what I'm doing, it's just a time thing.
    Is there anything to fix this bug?
    I think I might know why, and I could be wrong.......... that this is a compatable issue, but I'm not sure. I think because they are not providing anymore updates for GoLive (any version) that pretty soon I might not even be able to use it at all, but if I'm wrong, Please help.
    Now if my thoughts are correct on the first question, then can some one please help me with this message I get when trying to "Migrate" my site from Golive to Dreamweaver.
    My first question tonight was going to be why do my pages look like there is nothing on the when I open any page in Dreamweaver when I saw the post about migrating your site to Dreamweaver.
    I downloaded the extension for Dreamweaver, I installed it but when I go to migrate the "site" it gives me this message.
    Message: please select folder that contains your Adobe GoLive files
    I came back to the forums to reread the post, but what it says to change in yoour files, I can't find. It says something about changing your "root" file.
    I can't find what to change.
    I kind of like GoLive better, at least right now, but I tryed to use DW tonight to really compair the two, I got CS5 about 5 months ago which included Dreamweaver CS5, so I thought I would give it a try utill I opened it and all of my pages were blank. But I still didn't give up and now this is where I am.
    Thanks for any help, sorry for such a long posting, but I would really like to see if I like DW with out starting all over and having to rebuild my sites from scratch in DW.

    My sites were created in GoLive (i think version 6), but it started to crash, so I switched to GoLive CS (i think this is version 7).
    It was working fine until yesterday. Yesterday GoLive CS started to crash, so I decided to give DreamWeaver a try since it came with the version of CS5 that I bought about 4-5 months ago.
    Yes, I downloaded and installed the extention from the link, the one that talks about Dreamweaver CS4, and I also read this on that page (below is what I copied from the page)
    ========================================================================================== ===
    Note also: If you created your site with GoLive CS (7)  or older and then upgraded to GoLive CS2 (8) or GoLive 9, you may  experience problems with the GoLive Migration Kit extension for  Dreamweaver CS4. If this is the case, try renaming the following:
    Rootfolder-fd > web-content
    Rootfolder-fd.settings > web-settings
    Rootfolder-fd.data > web-data
    ========================================================================================== ===
    I looked for "Rootfolder-fd -fd.setting and fd.data" I can't find them.
    I was going to try and change them.

  • The selected signed file could not be authenticated. The file might have been tampered with or an error might have occured during download. Please verify the MD5 hash value against the Cisco Systems web site

    I am trying to load any 9.0.3 firmware on my UCM 5.0.4.2000-1 server. Every newer firmware I load throws the following error. I have verified the MD5 is correct and also downloaded the file several times with the same result. I can load the same firmware file on another UCM server and it loads fine. Any ideas?
    Thanks in advance!
    Error Message:
    The selected signed file could not be authenticated. The file might have been  tampered with or an error might have occured during download. Please verify the  MD5 hash value against the Cisco Systems web site:  9b:b6:31:09:18:15:e7:c0:97:9f:e6:fe:9a:19:94:99
    Firmware File: cmterm-7970_7971-sccp.9-0-3.cop.sgn
    UCM version: 5.0.4.2000-1

    Thanks for your reply. We have a lab environment where I maintain  UCM 5.0, 5.1, 6.0, 6.1, 7.0, 7.1 and 8.0 servers each running the latest released firmware for our QA testing team. I have downloaded and installed the latest device packages but find that if I try to install any firmware newer then 8.3.1 on either 5.0.4 or 6.0 i start getting MD5 hash authentication errors. It looks like 9.0.3 firmware should work on UCM 5.0 and 6.0 so I am lost as to why I can't seem to update any firmware for any model phone if it is newer then version 8.3.1 on either 5.0 or 6.0. while 5.1 and 6.1 work without issues. Maybe it is just a bug. I mostly wanted to see if anyone else has experienced this or if it is just me.

  • Select multiple files from a PC to upload to icloud

    I have icloud installed on my PC - I also have the the web link to upload files from my computer -
    I'm unable to get more than one file at a time to upload - HELP -
    I have 100's of files to upload to icloud - I'm mainly using pages and numbers -
    I have the latest software, etc - and am using an ipad 4 -
    thanks
      glen

    Hello tacomadm18,
    The following article details several methods for uploading documents to iCloud (including multiple documents). Note that, when selecting documents to upload, a single document in the group chosen that is not compatible will prevent the entire group from being uploaded (e.g.: choosing four Pages documents and one PDF will prevent any of the documents from being uploaded, whereas choosing only the four Pages documents will upload those four documents).
    iCloud: Access iWork documents stored in iCloud
    http://support.apple.com/kb/PH2704
    Cheers,
    Allen

  • Using flat file to upload in ABAP. Please help. Urgent

    Hi all,
    I am using a CSV excel file to upload some data to my ABAP program. Thje file contains material numbers as one of the fields. But if I enter the material number 11910892E80, excel converts it to  1.19E+87. Since I am using this file in the program to extract some fields from MARA, i am getting an error 'Material number does not exist'.
    I know that we can avoid this problem by changing the format type of the cell to 'text' in excel. I want to know if there is any other way to rectify this problem. I have to use an excel file for upload. Notepad will not do.
    Please help me solve this problem. It is urgent.
    Thanks and regards,
    Swaminath

    Hi
    If it is comma delimited file (CSV format) you can directly read the whole file and into a table with one field.
    Loop at that table.
    Use split a comma into fields of your internal table.
    endloop.
    Sample code
    move pcfile to v_file.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                = v_file
          FILETYPE                = 'ASC'
          HAS_FIELD_SEPARATOR     = 'X'
        TABLES
          DATA_TAB                = in_rec
        EXCEPTIONS
          FILE_OPEN_ERROR         = 1
          FILE_READ_ERROR         = 2
          NO_BATCH                = 3
          GUI_REFUSE_FILETRANSFER = 4
          INVALID_TYPE            = 5
          NO_AUTHORITY            = 6
          UNKNOWN_ERROR           = 7
          BAD_DATA_FORMAT         = 8
          HEADER_NOT_ALLOWED      = 9
          SEPARATOR_NOT_ALLOWED   = 10
          HEADER_TOO_LONG         = 11
          UNKNOWN_DP_ERROR        = 12
          ACCESS_DENIED           = 13
          DP_OUT_OF_MEMORY        = 14
          DISK_FULL               = 15
          DP_TIMEOUT              = 16
          OTHERS                  = 17.
      if sy-subrc ne 0.
        write:/5 'Error with PC file'.
      endif.
      loop at in_rec.
        if in_rec(4) ca number.
          split in_rec at p_del into
            itab-tcode  itab-tcodet
            itab-saknr
            itab-waers1 itab-waers2
            itab-amt1   itab-amt2
            itab-gl itab-kostl
            itab-prctr itab-obukrs
            itab-otcode itab-otcodet.
          if itab-amt1 = '0.00' or itab-amt1 = space.      "skip this line
            continue.
          endif.
          move-corresponding itab to fitab.
          append fitab.
          clear: itab, fitab.
         append itab.
        endif.
      endloop.

  • File upload - issue with European .csv file format

    All,
    when uploading the .csv file for "Due List for Planned Receipts" in the File Transfer Upload center I receive an error.  It appears that it is due to the european .csv file format that is delimited by semicolon rather than comma. The only way I could solve this issue is to change Regional and Language options to English. However, I don't think this is a great solution as I can't ask all our suppliers to change their settings.  Has anyone come across this issue and another way of solving it?
    Thank you!
    Have a good day,
    Johanna

    Igor thank you for your suggestion. 
    I found this SAP note:
    +If you download a file, and the formatting of the CSV file is faulty, it is possible that your column separator does not match the standard settings of the SAP system. In the standard SAP system, the separator is ,.
    To ensure that the formatting is correct, set your global default for column separation in your system, so that it matches that of the SAP system you are using.+
    To do that Microsoft suggests to change the "List separator" in the Regional and Language Options Customize view. Though like you suggest that does not seem to do the trick. Am I missing something?
    However, if I change the whole setting from say German to English (UK) the .csv files are comma delimited and can be easily uploaded.  Was hoping there would be another way of solving this without need for custom development.

  • Since upgrading to firefox ver. 3.6.8 can't upload files to Google Docs, whose help forum indicates many firefox users are having this problem since upgrading to 3.6.8: You can click on the "Select files to upload" link but nothing happens.

    Right-clicking on the link doesn't offer options to open anywhere (new tab, etc.)

    There is a problem with uploading files to Google docs in Firefox 3.6x versions.
    http://www.google.com/support/forum/p/Google+Docs/thread?tid=4f0369bdcf6fd7ff&hl=en "Select files to upload" not working in Firefox - Google Docs Help (Thanks to Joolsa for the link)

  • Flex file upload issue with large image files

         Hello, I have created a sample flex application to upload an image and also created java servlet to upload and save image and deployed in local tomcat server. I am testing the application in LAN. I am able to upload small as well as large image file(1Mb) from some PCs but in some other PCs I am getting IOError while uploading large image files however it is working fine for small images. Image uploading is hanging after 10%-20% and throwing IOError. *Surprizgly it is working Ok with XP systems and causeing issues with Windows7 systems*.
    Plz give me any idea to get a solution.
    In Tomcat server side it is giving following error:
    request: org.apache.catalina.connector.RequestFacade@c19694
    org.apache.commons.fileupload.FileUploadBase$IOFileUploadException: Processing of multipart/form-data request failed. Stream ended unexpectedly
            at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:371)
            at org.apache.commons.fileupload.servlet.ServletFileUpload.parseRequest(ServletFileUpload.ja va:126)
            at flex.servlets.UploadImage.doPost(UploadImage.java:47)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:877)
            at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProto col.java:594)
            at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1675)
            at java.lang.Thread.run(Thread.java:722)
    Caused by: org.apache.commons.fileupload.MultipartStream$MalformedStreamException: Stream ended unexpectedly
            at org.apache.commons.fileupload.MultipartStream$ItemInputStream.makeAvailable(MultipartStre am.java:982)
            at org.apache.commons.fileupload.MultipartStream$ItemInputStream.read(MultipartStream.java:8 86)
            at java.io.InputStream.read(InputStream.java:101)
            at org.apache.commons.fileupload.util.Streams.copy(Streams.java:96)
            at org.apache.commons.fileupload.util.Streams.copy(Streams.java:66)
            at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:366)
    UploadImage.java:
    package flex.servlets;
    import java.io.*;
    import java.sql.*;
    import java.util.*;
    import java.text.*;
    import java.util.regex.*;
    import org.apache.commons.fileupload.servlet.ServletFileUpload;
    import org.apache.commons.fileupload.disk.DiskFileItemFactory;
    import org.apache.commons.fileupload.*;
    import sun.reflect.ReflectionFactory.GetReflectionFactoryAction;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class UploadImage extends HttpServlet{
             * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse
             *      response)
            protected void doGet(HttpServletRequest request,
                            HttpServletResponse response) throws ServletException, IOException {
                    // TODO Auto-generated method stub
                    doPost(request, response);
            public void doPost(HttpServletRequest request,
                            HttpServletResponse response)
            throws ServletException, IOException {
                    PrintWriter out = response.getWriter();
                    boolean isMultipart = ServletFileUpload.isMultipartContent(
                                    request);
                    System.out.println("request: "+request);
                    if (!isMultipart) {
                            System.out.println("File Not Uploaded");
                    } else {
                            FileItemFactory factory = new DiskFileItemFactory();
                            ServletFileUpload upload = new ServletFileUpload(factory);
                            List items = null;
                            try {
                                    items = upload.parseRequest(request);
                                    System.out.println("items: "+items);
                            } catch (FileUploadException e) {
                                    e.printStackTrace();
                            Iterator itr = items.iterator();
                            while (itr.hasNext()) {
                                    FileItem item = (FileItem) itr.next();
                                    if (item.isFormField()){
                                            String name = item.getFieldName();
                                            System.out.println("name: "+name);
                                            String value = item.getString();
                                            System.out.println("value: "+value);
                                    } else {
                                            try {
                                                    String itemName = item.getName();
                                                    Random generator = new Random();
                                                    int r = Math.abs(generator.nextInt());
                                                    String reg = "[.*]";
                                                    String replacingtext = "";
                                                    System.out.println("Text before replacing is:-" +
                                                                    itemName);
                                                    Pattern pattern = Pattern.compile(reg);
                                                    Matcher matcher = pattern.matcher(itemName);
                                                    StringBuffer buffer = new StringBuffer();
                                                    while (matcher.find()) {
                                                            matcher.appendReplacement(buffer, replacingtext);
                                                    int IndexOf = itemName.indexOf(".");
                                                    String domainName = itemName.substring(IndexOf);
                                                    System.out.println("domainName: "+domainName);
                                                    String finalimage = buffer.toString()+"_"+r+domainName;
                                                    System.out.println("Final Image==="+finalimage);
                                                    File savedFile = new File(getServletContext().getRealPath("assets/images/")+"/LowesFloorPlan.png");
                                                    //File savedFile = new File("D:/apache-tomcat-6.0.35/webapps/ROOT/example/"+"\\test.jpeg");
                                                    item.write(savedFile);
                                                    out.println("<html>");
                                                    out.println("<body>");
                                                    out.println("<table><tr><td>");
                                                    out.println("");
                                                    out.println("</td></tr></table>");
                                                    try {
                                                            out.println("image inserted successfully");
                                                            out.println("</body>");
                                                            out.println("</html>");  
                                                    } catch (Exception e) {
                                                            System.out.println(e.getMessage());
                                                    } finally {
                                            } catch (Exception e) {
                                                    e.printStackTrace();

    It is only coming in Windows 7 systems and the root of this problem is SSL certificate.
    Workaround for this:
    Open application in IE and click on certificate error link at address bar . Click install certificate and you are done..
    happy programming.
    Thanks
    DevSachin

  • Anyone having issues with importing CR2 files into lightroom 5 as error message comes up saying "Some import operations were not performed". please advise what is a solution please

    Urgent please
    anyone having issues with importing CR2 files into lightroom 5 as error message comes up saying "Some import operations were not performed". please advise what is a solution please

    Sounds like the folder Write permissions issue described here with a solution:
    "Some import operations were not performed" from camera import

  • I have recently got pages and have tried to upload my CV (using pages) to certain graduate jobs and it doesn't seem to register them as still asks me to 'select a file'. Does anyone else have this problem?

    I have recently got pages and have tried to upload my CV (using pages) to certain graduate jobs and it doesn't seem to register them as still asks me to 'select a file'. Does anyone else have this problem?

    Menu > File > Export > Word or PDF
    Virtually no businesses have Pages to be able to read .pages files.
    Definitely not those with PCs, because there is no version of Pages for PCs.
    Peter

Maybe you are looking for