IOS Handling Meeting Responses Incorrectly ?

I've got a problem with Calendar invites in iOS5. When I invite a colleague to a meeting, I receive an email reply saying accepted when they reply, but the item does not update my calendar, it shows as being No reply still. the email has a .ics request attached, but clicking on it still shows No Reply, despite the subject of the email being "Accepted"
Do I need to have a Mac or PC running to enable this ? Or am I doing something wrong ?
Does anyone else see this behaviour ?
Many thanks
James

Ditto.
Our specific test and results:  we scheduled a meeting and sent invites to two different users.  Those two users used their iPhones (both iPhone 4) to try to respond. 
The first user is running iOS 4.3.5.  He received an email with an attached ics file.  There was no way to respond to the invitation in the email.  He punches out to the Calendar application, where a "1" is showing on the home page; he goes into Calendar, and the invitation is waiting for him in his calendar inbox.  The event is greyed out on the calendar view. He clicks the inbox, accepts the invitation -- mission complete.
The second user is running iOS 5.  He also receives an email -- identical to user 1, with same functionality or lack thereof.  He also punches out to the Calendar application.  The event is "greyed out" as above.  But there is NO invite waiting for him in his inbox.
There appears to be no way to accept/decline or even receive invitations in iOS 5 Calendar application.  Read that syncronization with iCloud had created some issues.  Turned that off, tried another test... same result.
It would appear that Calendar in iOS 5 has a pretty large bug.

Similar Messages

  • Application Issue - Adobe connect unable to handle "unreachable" responses

    Hi,
    We've discovered what seems to be a bug with the Adobe Connect application/flash player.
    For some reason when you have a proxy in place adobe connect still attempts to establish a direct connection to the adobe servers (for example na7fms2.adobeconnect.com), if these packets get dropped video plays with no issue.
    However in our case we have ACL's setup on our Cisco routing core (which do not allow this traffic), which in turn respond with "Destination Unreachable (Communication administratively filtered)".
    Adobe Connect seems to be unable to handle these responses and goes into a loop continiously attempting a direct connection (around every 10-12 seconds), therefore causing streaming video's to restart every 10-12 seconds.
    Below is a screenshot of the packet capture of the accurance.
    Basically we managed to create two of the following scenarios in our network.
    Video restarts every 10-12 seconds:
    Video plays with no issues:
    Now this "Destination Unreachable" response is completely legal in terms of RFC http://www.ietf.org/rfc/rfc792.txt
    It would be great if this issue could be raised as a bug and fixed in future versions.
    Thanks,
    Daniil

    Seeing the same issue.    Did anyone find any solution?.
    Only solution that I could see was opening HTTPS at firewall for only Adobe Connect servers.  Wasn't able to locate anything that published the network ranges for the Adobe Connect servers however.  Wasn't really a solution that I was happy with anyway.
    Only need to do this to allow 1 employee to access a recorded Adobe Connect meeting.
    Thanks
    Iain.

  • How to handle utl_http response

    Hi,
    I use the below code to call a https using POST method
    utl_http.set_proxy(apex_application.g_proxy_server, NULL);
    utl_http.set_persistent_conn_support(TRUE);
    utl_http.set_transfer_timeout(300);
    utl_http.set_wallet(p_wallet, p_wallet_pwd);
    l_http_req := utl_http.begin_request(p_api_url, 'POST');
    utl_http.set_header(l_http_req, 'Proxy-Connection', 'Keep-Alive');
    utl_http.set_header(l_http_req, 'Content-Type', 'application/x-www-form-urlencoded; charset=utf-8');
    utl_http.set_header(l_http_req, 'Content-Length', length(l_post));
    utl_http.write_text(l_http_req, l_post);
    l_http_resp := utl_http.get_response(l_http_req);
    utl_http.read_text(l_http_resp, l_response);
    The url return a respose with below l_response content
    <html>
    <head>
    <META HTTP-EQUIV='content-type' CONTENT='text/html; charset=UTF8'>
    </head>
    <title>Payment Page</title>
         <form method="POST" name="ePayment" action="http://www.testing.com">
         <input type="hidden" name="MerchantCode" value="M01247"><br>
         <input type="hidden" name="PaymentId" value="2"><br>
         <input type="hidden" name="RefNo" value="0001"><br>
         <input type="hidden" name="Amount" value="1"><br>
         <input type="hidden" name="Currency" value="MYR"><br>
         <input type="hidden" name="Remark" value="Testing1"><br>
         <input type="hidden" name="TransId" value=""><br>
         <input type="hidden" name="AuthCode" value=""><br>
         <input type="hidden" name="Status" value="0"><br>
         <input type="hidden" name="ErrDesc" value="Permission not allow"><br>
         <input type="hidden" name="Signature" value=""><br>
         </form>
         <script language="JavaScript">
              document.ePayment.submit();
         </script>
    </html>
    Apparently it will redirect to http://www.testing.com,
    how should my procedure handle this response so it will redirect to the url?
    Thanks.
    Vincent pek
    Edited by: [email protected] on May 3, 2010 7:09 AM

         <script language="JavaScript">
              document.ePayment.submit();
         </script>
    </html>
    Apparently it will redirect to http://www.testing.com,
    how should my procedure handle this response so it will redirect to the url?
    Thanks.
    Vincent pekYour procedure should be able to run JavaScript, which it isn't.
    Therefore, I would recommend that you talk to the website administrator and discuss using a webservice.

  • How to handle soap responses

    I am following this tutorial to handle SOAP responses but it does not work http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_6.html
    using code blew I am trying to parse the following soap response.
        <?xml version="1.0" encoding="utf-8"?>
        <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                         xmlns:s="library://ns.adobe.com/flex/spark"
                                         xmlns:mx="library://ns.adobe.com/flex/mx"
                                         xmlns:components="components.*"
                                         xmlns:hellos="services.hellos.*"
                                         height="957"  creationComplete="initApp()" >
                  <fx:Style source="Styles.css"/>
                  <fx:Script>
                            <![CDATA[
                                      import mx.controls.Alert;
                                      private namespace invesbot = "http://Services.com";
                                      use namespace invesbot;
                                      private namespace a = "http://schemas.xmlsoap.org/soap/envelope/";
                                      private namespace b = "http://www.w3.org/2001/XMLSchema";
                                      private namespace c = "http://www.w3.org/2001/XMLSchema-instance";
                                      use namespace a;
                                      use namespace b;
                                      use namespace c;
                                      [Bindable]
                                      var _result:*
                                      private function initApp():void
                                                myService.mycustomers();
                            ]]>
                  </fx:Script>
                  <fx:Declarations>
                            <mx:WebService id="myService" wsdl="http://localhost:8081/WebServiceTest/services/Hellos?wsdl"
                                                             showBusyCursor="true"
                                                             fault="Alert.show(event.fault.faultString), 'Error'">
                                      <mx:operation name="mycustomers" resultFormat="e4x">
                                                <mx:request>
                                                </mx:request>
                                      </mx:operation>
                            </mx:WebService>
                  </fx:Declarations>
        <mx:HBox>
                            <mx:Text
                                      text="{myService.mycustomers.lastResult.mycustomersReturn.name}"
                                      />
                  </mx:HBox>
        </s:Application>
    The SOAP response is as following
        <?xml version="1.0" encoding="UTF-8"?>
        <soapenv:Envelope
          xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
          xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
          <soapenv:Body>
            <mycustomersResponse xmlns="http://Services.com">
              <mycustomersReturn>
                <age>28</age>
                <name>John</name>
              </mycustomersReturn>
              <mycustomersReturn>
                <age>29</age>
                <name>Alex</name>
              </mycustomersReturn>
              <mycustomersReturn>
                <age>30</age>
                <name>Jack</name>
              </mycustomersReturn>
            </mycustomersResponse>
          </soapenv:Body>
        </soapenv:Envelope>
    Using the above code the output will be
        <name xmlns="http://Services.com" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">John</name>
        <name xmlns="http://Services.com" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">Alex</name>
        <name xmlns="http://Services.com" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">Jack</name>
    but when I use the following code to put the result in dropdown box it gives the following error
        <s:FormItem label="Employee:">
                            <s:DropDownList id="dropDownList3"
                                                                    labelField="name"
                                                                    dataProvider ="{myService.mycustomers.lastResult.mycustomersReturn}"/>
                  </s:FormItem>
    TypeError: Error #1034: Type Coercion failed: cannot convert XMLList@106e9af1 to mx.collections.IList.

    Hi Ashish,
    You can use Catch All error handler within scope of InvokeService action. By specifying SOAP Fault variable name there, response soap fault will be populated in variable.
    In 11g(As per observation), split joins are strict towards definition of input and output message based on WSDL of target service which causes exception for invalidMessage in InvokeService action.
    Hope this helps.

  • AJAX handling multiple responses

    Hi,
    I have a problem in handling multiple responses from server.
    I am sending requests simultaniously (response for the first requset comes sending other request) but i am getting only the response for the last request all previous request responses are lost.
    how to handle thi situation.is there a way to handle?
    pls help me asap.

    since it is for sure using a single connection to the server, it is quite normal
    can't you manke the request sequentialy?

  • Meeting response still says none after acceptance

    I have a user that when she accepts meeting invites and chooses "Send Response Now" it still shows up in Tacking as Response None.  I invited other people to the same meeting I received acceptance emails from all including the user with the
    issue.  I go to the meeting on the calendar and under the tracking tab every other user i invited the Response says Accepted.  
    Why is her's the only one that still shows up as None?  
    I did make sure she wasn't choosing "Do not send a response." Also that she is a Required Attendee.  In Outlook options I have checked "Automatically process meeting requests and responses to meeting requests and polls". I;ve tried
    soo amny thing and can't find a reason why her's is the only one showing as None in Response.
    We are using Outlook 2013

    Hi RBaker,
    As I know, meeting tracking option is built for MS Outlook not for Exchange server. So, such type of bug is occurring from the specific email client application and probably third party plug-ins can be reason of this.
    Say her to open Outlook in safe mode using “outlook.exe /safe” command and then to respond meeting invitation and see the result.
    Get more info from similar thread:
    http://social.technet.microsoft.com/Forums/en-US/dc490b5c-a60a-44c3-82a0-8cc72c1351da/outlook-2013-meeting-responses-show-none?forum=exchangesvrclients
    Note: Improve community discussions by marking the answers helpful otherwise respond back for further help.
    Thanks
    Clark Kent

  • How come I cannot see the meeting response tab at the bottom in Calendar

    Hi, my company uses Microsoft Exchange 2007. Let say someone invited me to an event. I accepted the event either on the phone or Outlook. In Outlook, it clearly showed that I had accepted the event, and also provided me with the options to change my response (like tentative or deny). When I clicked on the same event on my iPhone, it didn't give me those options (accept, deny, tentative). It gave me the option to delete the event, as if I was the event organizer. I checked the same event on my iPad 2 running iOS 5.0.1 and the same thing happened.
    On my Android device, I was able to change my response to the meeting just like how it was supposed to be. Could this be a bug with the iOS Mail application?
    I think it might have something to do with changing the initial event date or time and sending updates. Somewhere along the way, it's not syncing up correctly.

    Hi There,
    Can you please check Windows>Effects
    Select any Caption and at the bottom left you have Efftects. Check the screenshot.
    Thanks
    PRiyank

  • Exchange calendar not allowing me to send meeting responses

    Hi
    Been using iphones with our SBS 2003 exchange server for a while now. I've gone from a 3G with V2 software to my current 3GS with 4.1. I think that the problem started when I got the 3GS with 4.1.
    Basically, everything works with exchange apart from one very annoying thing.
    If anyone sends me a calendar (meeting) invitation, it alerts me on the phone, allows me to see the meeting, but if I press accept, the phone ALWAYS says ' Calendar Invitation - Your response to the invitation cannot be sent'
    It then deletes the meeting from the phone!.
    Everything else seems to work, mail push, sending mail, creating contacts syncs with the work servers, I can also send out meeting invitations from my phone. It's just I can't respond to meetings i've received.
    Anyone else have this?
    Thanks
    Andy

    OlatheGIS wrote:
    Has anyone considered/investigated the ActiveSync piece of the problem?  I'm in a corporate environment with iPhones, iPads, Androids, and Blackberries.  The only mobile device without problems are the BB's, which we run on a BES.  We also have Exchange2003 and find that both iOS and Android devices ALL have issues with calendaring, primarily recurring appointments/meetings.  The common denominator - MS ActiveSync.  I *did* hear a rumor that Exchange2010 might fix the problem.
    Well I'm in the same vote - we haven't investigated Android as of yet; however your notes are not promising for taking that road.
    Exchange 2007 SP2.
    BES 5.0.1 in use; BB 9300, 9700 (BB5), 9780 & 9800 (BB6).
    iOS4.3.3/.4 on iPhone 4 in 2 main US offices, and now iPad 2 4.3.3 in our Corporate head office.
    I have iOS5.0 Beta 3 in testing and have duplicated the infamous error with regards to accepting meeting requests on behalf of someone (delagate) yet iOS STILL thinks that the meeting is for the person receiving the meeting request (EITHER in Mail or in Calendar). Oddly enough we CAN deny the meeting request - even in iOS 4.3.3.
    IOS was just updated today so I'll give it another go on Monday morning bright and early.
    I do have a working case with Apple tier3 and soon to work with their Enterprise team on this matter.

  • File To Proxy : Handle the response from ECC to send mail without BPM

    Hi,
    Scenario: FILE To Proxy
    Requirement: We are receiving xml acknowledgement file from bank with IDoc number and status in SAP PI and the file is used to send the status number, message and and IDoc number to ECC. After request is received in ECC BAPI is executed to update the original status of outbound IDOC.
    There would be multiple records in file and PI will send all IDoc acknowledgement to ECC to update the IDoc status.
    Issue: Since PI send all records to ecc, if any single IDoc status update is failing in ECC how would it can be communicated to support.
    ECC can send success or error response in proxy but how we can use the same in PI to send mail to support. Or is there any better error handling we can go for in such scenario.
    Thanks,
    Vertika

    Hi everyone
    thanks for response.
    Interface 1: IDoc (ECC) to File (Bank) --> Done
    Interface 2: Acknowledgment File (Bank) to BAPI (ECC) where BAPI will update the status of IDoc sent in first interface.
    For Interface 2 : PI will receive file from Bank with multiple records i.e multiple IDoc numbers and their status. PI will invoke proxy to send the IDoc number and status number (eg 16) for all the records together. Now if BAPI fails to update status of any single IDoc in that file how support team will know that the particular record is failed. To handle this error ECC is saying they can send Error and Success back to PI. But the problem is how we can use that response in PI in the same interface to send emails to support team. Bank does not want any response back in this case. This is just to ensure proper error handling since this is bank related interface.
    Splitting the interface in two interfaces will definitely help. But is there some way which can be used in same interface and based on error response from ECC mail is triggered.
    If any one has better suggestion for such kind of error handling, please post the same.
    Thanks,
    Vertika

  • IDoc to SOAP: client handler for response

    Hello All,
    I have a scenario with IDOC to Web services.
    Is it possible to establish synchronous communication?
    We do not want to use BPM.
    I tried with importing IDOC structure into External definition, and then defining it as Synchronous Interface like this
    IDOC Interface(Outbound) -> output:'ZINVOIC'
                                               input: 'Response'
    WSDL Interface(Inbound) ->   input:'Request'
                                               output:'Response'
    But this did not work as the response is still going from Web services to the sender channel which is IDoc adapter
    If asynchronous, the web service party is telling me to set up a client handler to listen to the responce that web service is sending. Is it possible? and if possible, please explain the steps.
    Please help me out with this!
    Thanks,
    Lakshmi

    Hello Lakshmi,
    We also had similar requirement. This cannot be synchronous. IDOC to Webservice is always an asyn communication.
    Hope this helps.
    Thanks
    -Kulwant

  • Does OCSPChecker handle multiple responses yet?

    I have been trying to get DavMail java application to access an Exchange server that requires the use of OCSP. I have not been able to get it to work. In my research, I have found references to a bug that the OCSP procedure handles only the first response from the OCSP server and so probably returns a fail if multiple responses are received.
    Several bug reports on this indicate that this is fixed, but a later bug report indicates that it is not. Does anyone know which it is?
    Thanks
    Edited by: 834601 on Mar 15, 2011 5:26 AM

    Found out that the answer is YES.

  • Android: Handling error responses

    I'm working on an app that makes use of a public api that sends back xml responses.  When everything goes well, air handles the xml and creates as components to turn the results into typed objects.  The problem arises when submitting information to the api that results in an api error.  The xml payload is completely reformatted.  How do I set up flashbuilder (burrito) so that it recognizes when a server error is returned?

    Hi,
    Using function module 'FORMAT_MESSAGE' you can capture the messages.
    Here is a sample of the program code for that:
      LOOP AT it_messtab.
      CALL FUNCTION 'FORMAT_MESSAGE'
        EXPORTING
          id     = it_messtab-msgid
          lang   = it_messtab-msgspra
          no     = it_messtab-msgnr
          v1     = it_messtab-msgv1
          v2     = it_messtab-msgv2
        IMPORTING
        msg    =  g_msg
      EXCEPTIONS
          OTHERS = 0.
      IF it_messtab-msgtyp = 'S'.
        it_sucess-sucess_rec = g_msg.
        it_sucess-lifnr = it_header-lifnr." Based on your field
        it_sucess-tabix = v_lines.
        APPEND it_sucess.
      ELSEIF it_messtab-msgtyp = 'E'.
        it_error-error_rec = g_msg.
        it_error-lifnr = it_header-lifnr.
        it_error-tabix = v_lines.
        APPEND it_error.
      ELSE.
        it_info-info_rec = g_msg.
        it_info-lifnr    = it_header-lifnr.
        it_info-tabix    = v_lines.
        APPEND it_info.
      ENDIF.
    ENDLOOP.
    Hope this helps.
    Reward if helpful.
    Regards,
    Sipra

  • Outlook and OWA do not track meeting responses if the meeting time is changed - using Exchange

    When you create a meeting in Outlook, you can open the meeting, go to Tracking and see who has responded.
    This works fine initially, but if you change the time of the meeting, the tracking of responses no longer works. Even though people have responded to the new time, it just shows 'none' under the Response column when you go to Tracking.
    Request responses is checked under Response Options.
    Also, in File - Option - Mail- Tracking, the "automatically process meeting requests and responses to meeting requests and polls" is selected, as is "auto update original sent item with receipt information"
    This has been reproduced on different computers and happens in OWA also.
    Anyone have any suggestions on how to fix this.

    Hi,
    Please try the following steps:
    Please install the lasted update for Outlook 2013, and then check the issue.
    Check if the AutomateProcessing calendar setting for your Microsoft Exchange Server 2013 is set to
    None. If so, please make sure the Exchange Server administrator start the Exchange Management Shell on the Exchange mailbox server. Then, run the following command in the Exchange Management Shell:                                                                       
    Set-CalendarProcessing –Identity <MailboxIdParameter> -AutomateProcessing Autoupdate
    Switch to Online Exchange mode to check the issue.
    Refer to following article about Set-CalendarProcessing command.
    http://technet.microsoft.com/en-us/library/dd335046(v=exchg.150).aspx
    Best Regards.

  • IOS 7/8 Mail, incorrect message displayed as duplicate of other message

    Hello,
    A quick search for terms of "duplicate message" yielded a score of threads about multiple copies of messages being delivered.  This is different.
    In iOS 7/8, I have found that the Mail application will occasionally erroneously display two copies of the same message.  The second copy of the message is actually an incorrect display of that message over top of another real message.  Tapping the duplicate will not display the missing message.  Browsing back to the Root mailboxes view and then straight back into the inbox (for example) always corrects the display of the two messages.  I have never seen more than one message displayed incorrectly.  This is reproduced most reliably when a message is moved from the inbox to my archive folder.  The mail application then displays a new message.  I browse back to the inbox and frequently there is a duplicate message in there.
    I have three mail accounts active.  One Gmail and two exchange accounts.  I have noted the behaviour in both exchange accounts.  I don't typically have enough messages in the Gmail account to be able to reproduce this behaviour so I'm not sure if it occurs there.
    Does anyone else have experience with this or know of a solution?  It isn't apparent to me how to report a bug to Apple about this, so I thought I would start with the community here.
    Thanks and regards,
    MAJ

    Apple is not here. This is a user to user forum.

  • MAKING TWO REQUESTS FROM A JSP AND HANDLING TWO RESPONSE ????????

    Hi,
    I have a requirement like below.
    When a user clicks on download_pdf link on a web page, he should get the pdf data from the server where at the same time he should be shown with a processing window. Say the time taking for hitting the server and getting the response is 10 sec, the processing window should be shown for 10 sec and immediately it has to close.
    My approach :
    From JSP having download_pdf link :: while onClick I am calling an action which is nothing but a servlet call which will take care of getting the pdf data from the server and shown pdf save,cancel window. Other part is onClick I added a javascript function call which will open a seperate window (nothing but a jsp ) showing the processing icon.
    The problem here is, I can not close the window immediately after we get the response from the servlet.
    As we can not have direct communication between two responses(servlet reponse and processing window jsp) I am not able to close the window.
    My trials to close the processing window JSP :
    I tried to write a javascript in the processing window jsp which will be closed after 10 sec using setTimeout() funtion. But here the problem is the window will be closed after 10 sec where even if servlet call response takes 20 sec.
    Please suggest me if I need to do any design change ?
    Can I use any context attributes to come out of this ?
    What would be the best design for this ?
    Thanks and Regards,
    V.Narayana.

    Thanks for the idea.. I am trying to implement that.. Can you please let me know how Can I make a repetitive ajax call ??
    If anyone interested in code, I am pasting all the sample files I prepared for..
    start.jsp
    ===========================================================================================
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    <script type="text/javascript">
    function call(){
              w='550';
         h='240';
    LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
    settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
    win=window.open("http://localhost:7001/SampleExportWeb/ExportServlet",'',settings);
    function call2(){
              w='550';
         h='240';
    LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;
    settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
    win=window.open("http://localhost:7001/SampleExportWeb/statusWindow.jsp",'',settings);
    setTimeout("win.close()",5000);
    </script>
    <input type="button" name="button" value="button" onclick="call();call2()">
    </body>
    </html>
    =========================================================================================================
    statusWindow.jsp
    =============================================================================================================
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@ page import="org.apache.beehive.netui.pageflow.scoping.ScopedServletUtils"%>
    <%@ page import = "com.bea.netuix.servlets.controls.portlet.PortletPresentationContext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <table border=1 width="100%">
    <tr><td align="center" height="210">
    <table border=1>
    <tr><td align="center">
    </td></tr>
    </table>
    </td></tr>
    Narayana
    <tr><td align="right">
    <div class="buttonBar">
    <div class="floatright">
         <a onClick="window.close();" class="button" title="" href="#">
    <span>
    </span>
    </a>
    </div>
    </div><!-- end buttonBar -->
    </td></tr>
    <%
    %>
    <iframe id="exportCall" height="0px" width="0px"></iframe>
    </table>
    =============================================================================================================
    FlowController.java
    ===============================================================================================================
    package main.java.com.export.servlet;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.lang.reflect.Method;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    * Export Servlet will be invoked by all dashboard widgets to perform common
    * functions (Print, Download, Export XLS/CSV)
    * @author kadalur.r.supreeth
    * @version 1.0
    public class ExportServlet extends HttpServlet {
         public void service(HttpServletRequest req, HttpServletResponse resp)
         throws ServletException, IOException {
              try {
                   System.out.println("ExportServlet :: service: entered");
                   Object exportManager = null;
                   Class exportClass = null;
                   Method invokingMethod = null;
                   * This condition will be executed if requested operation is to
                   * download PDF. Invoke the PDF converter method runtime and open
                   * the window dialogue box with generated PDF file. The requested
                   * operation value should be "pdfConverter".
                   ByteArrayOutputStream baosPDF = new ByteArrayOutputStream();
                        OutputStream ostreamPDF = resp.getOutputStream();
                        resp.setContentType("application/pdf");
                        resp.setHeader("Content-disposition", "attachment; filename="
                                  + "downloadfile"
                                  + ".pdf");
                        baosPDF.writeTo(ostreamPDF);
                        ostreamPDF.flush();
                        ostreamPDF.close();
              } catch (Exception e) {
                   System.out.println(
                                  "ExportServlet :: service method exception:"
                                  + e.getMessage());
    =========================================================================================================

Maybe you are looking for

  • Memory parameters settings as per RAM and swap size

    Hello Experts, We have installed the newly SAP systems (Solman 7.1, ECC6 EHP 5, and CRM EHP1), below is the platform- OS - Linux x86_64 RAM - 20 GB (ECD ABAP and solman (ABAP+JAVA)) and 24 GB (CRM ABAP). swap size is twice of RAM. Kernel - 720 64bit

  • Can't print a PDF doc using Adobe Reader X

    Previously had Adobe Reader 8.  First time ever experienced a problem in printing a PDF document, message read "you need to install a printer".  My printer is installed, can print in Word, Excel, photos, etc.  Downloaded latest drivers to my printer,

  • Regarding Generic programs

    hi guys, In my R3 system i can see below programs. attributes saying that its SAP created. whats this..is it generated program? 1-IF_GUI_DYNAMIC_DATA===========IU 2-%_CCMPWL We are planning for migration OS and DB, and copy all addon programs there..

  • Does anyone know anything about a Apple walkman radio from years ago?

    I found a old Apple walkman it's 5 1/2 tall, 3" wide and 1 1/4 deep. It has AM FM radio and it has a mic you can push if someone is talking to you. No speaker it only works with headphones. It has a FCC ID BRA 8ZV SAFS-107   Shinning   Made in Hong K

  • HT201342 My icloud email on mac laptop won't go online. what do i do?

    icloud email won't go online , what do i do?