Call method http_client- response- get_header_fields for PDF and for TIFF

Hi,
I am using a Function Module..
APAR_EBPP_GET_INVOICE_DETAIL to display the TIFF images on the Biller Direct side.
The above function module is used to retrieve the PDF documents from the document repository.
In Similar way I am trying to do the TIFF Images too.
But in this method
call method http_client->response->get_header_fields
    changing fields.
For PDF the table fields is as follows
            NAME                                       VALUE                                  
    1     ~response_line----
|HTTP/1.1 200 (OK)                         |
    2     ~server_protocol----
|HTTP/1.1                                  |
    3     ~status_code----
|200                                       |
    4     ~status_reason----
|(OK)                                      |
    5     content-length----
|7136                                      |
    6     content-type----
|application/pdf                           |
    7     server                                |Microsoft-IIS/6.0                         |
    8     x-powered-by                    |ASP.NET                                   |
    9     date                                 |Tue, 24 Feb 2009 18:09:35 GMT             |
   10     connection                       |close                                     |
For TIFF the table fields are as follows:
    1     ~response_line----
               |HTTP/1.1 500 (internal server error)        |
    2     ~server_protocol----
             |HTTP/1.1                                    |
    3     ~status_code----
                 |500                                         |
    4     ~status_reason----
               |(internal server error)                     |
    5     content-length----
               |105                                         |
    6     content-type----
                 |text/plain                                  |
    7     server----
                          |Microsoft-IIS/6.0                           |
    8     x-powered-by                 |ASP.NET                                     |
    9     date                         |Tue, 24 Feb 2009 18:26:39 GMT               |
   10     connection                   |close                                       |
The error message is Internal Server error..
This is in HTTP2_Get Function Module.
What would be the reason for HTTP/1.1 500 Internal Server error.
Any suggestions are welcome..
Thanks,
Chaitanya

Hi Niranjan,
can you please check if you have imported the whole chain of certificates. Certificates usually diplayed in 3 levels in the Explorer. like
Verisign - L1
>>> Versign--  L2
>>>>>>>>>>>>XYZ.com -- L3
Extract all the 3 certificates and Put in Strust and do exit soft and hard in SMICM and restart the service.
Its better to create a RFC destination of Type H and Do the Connection test for HTTPS configuration. If the connection test comes OK then u can be sure of the configuration.

Similar Messages

  • Call method http_client - request - set_header_field

    Hi all,
    i am passing NAME & VALUE as two export parameter for the below method.
    here , what i should pass to VALUE parameter. is it a URL?
    what is the meaning of  '_/airport.asmx'_ in VALUE parameter.
    call method http_client ->request ->set_header_field
                    exporting
                         name = '~request_uri'
                         value  = '/airport.asmx'.
    Regards
    pabi

    POST
    Pages generated by an HTTP POST operation are always cached. The Web browser uses POST operations whenever an HTML FORM statement specifies METHOD="POST" .
    GET
    Pages generated by GET operations are never cached because the Internet Transaction Server (ITS) explicitly sets a no-cache option in the HTTP header when the page is sent to the Web browser. It does not matter what caching options are set in the Web browser. The Web browser uses GET operations for hypertext links and FRAMESET documents.
    check these links
    http://help.sap.com/saphelp_47x200/helpdata/en/ee/23df3a750f6a02e10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/78/985281c06b11d4ad310000e83539c3/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/99/0455ada80a11d1801000c04fadbf76/frameset.htm

  • Methods used in cl_gui_custom_container for ALV and for what purpose

    Methods used in cl_gui_custom_container for ALV and for what purpose and i want the exact senario for the usage of those method?
    2. What events are used in ALV?
    I anyone help me please,
    Points will be awarded.
    Thank you & Regards,
    Jagrut BharatKumar Shukla

    hey,
    look at this sample code....
    TABLES: SFLIGHT.
    G L O B A L   I N T E R N  A L   T A B L E S
    DATA: GI_SFLIGHT TYPE STANDARD TABLE OF SFLIGHT.
    G L O B A L   D A T A
    DATA: OKCODE LIKE SY-UCOMM,
          G_WA_SFLIGHT LIKE SFLIGHT.
    Declare reference variables to the ALV grid and the container
    DATA:
      GO_GRID             TYPE REF TO CL_GUI_ALV_GRID,
      GO_CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    S T A R T - O F - S E L E C T I O N.
    START-OF-SELECTION.
      SET SCREEN '0100'.
    *&      Module  USER_COMMAND_0100  INPUT
    MODULE USER_COMMAND_0100 INPUT.
      CASE OKCODE.
        WHEN 'EXIT'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Module  STATUS_0100  OUTPUT
    MODULE STATUS_0100 OUTPUT.
    Create objects
      IF GO_CUSTOM_CONTAINER IS INITIAL.
        CREATE OBJECT GO_CUSTOM_CONTAINER
          EXPORTING CONTAINER_NAME = 'ALV_CONTAINER'.
        CREATE OBJECT GO_GRID
          EXPORTING
            I_PARENT = GO_CUSTOM_CONTAINER.
        PERFORM LOAD_DATA_INTO_GRID.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Form  load_data_into_grid
    FORM LOAD_DATA_INTO_GRID.
    Read data from table SFLIGHT
      SELECT *
        FROM SFLIGHT
        INTO TABLE GI_SFLIGHT.
    Load data into the grid and display them
      CALL METHOD GO_GRID->SET_TABLE_FOR_FIRST_DISPLAY
        EXPORTING
          I_STRUCTURE_NAME = 'SFLIGHT'
        CHANGING
          IT_OUTTAB        = GI_SFLIGHT.
    ENDFORM.                    " load_data_into_grid
    <b>* the Events are</b>
    ITEM_DATA_EXPAND, REPREP_SEL_MODIFY, CALLER_EXIT, USER_COMMAND, TOP_OF_PAGE, DATA_CHANGED, TOP_OF_COVERPAGE, END_OF_COVERPAGE, FOREIGN_TOP_OF_PAGE, FOREIGN_END_OF_PAGE, PF_STATUS_SET, LIST_MODIFY, TOP_OF_LIST, END_OF_PAGE, END_OF_LIST,AFTER_LINE_OUTPUT, BEFORE_LINE_OUTPUT, SUBTOTAL_TEXT, CONTEXT_MENU.
    <b>the methods used with the class CL_GUI_CUSTOM_CONTAINER are as follows......</b>
    IF_CACHED_PROPGET_NEXT_PROP, IF_CACHED_PROPSEEK_FIRST_PROP, IF_CACHED_PROP~SET_PROP, IS_VALID, FREE, GET_PROPERTY, SET_PROPERTY, CALL_METHOD, ASSIGN_PROPERTY, CALL_METHOD_RESULT_GUI_OBJECT, GET_PROPERTY_GUI_OBJECT, IS_CACHED_PROP, ADD_CACHE_PROP, REMOVE_CACHE_PROP, GET_CACHE_PROP, SET_CACHE_PROP, IS_CACHE_VALID, INVALIDATE_CACHE, GET_FOCUS, SET_FOCUS, SET_NAME, GET_NAME, GET_ENABLE, SET_ENABLE, DISPATCH, FINALIZE, GET_ADJUST_DESIGN, GET_GRID_HANDLE, GET_GRID_STEP, GET_HEIGHT, GET_LEFT, GET_METRIC, GET_MODE, GET_REGISTERED_EVENTS, GET_TOP, GET_VISIBLE, GET_WIDTH, IS_ALIVE, REG_EVENT_LEFT_CLICK_DESIGN, REG_EVENT_LEFT_CLICK_RUN_MODE, REG_EVENT_MOVE_CONTROL, REG_EVENT_RIGHT_CLICK, REG_EVENT_SIZE_CONTROL, SET_ADJUST_DESIGN, SET_ALIGNMENT, SET_GRID_HANDLE, SET_GRID_STEP, SET_HEIGHT, SET_LEFT, SET_METRIC, SET_MODE, SET_POSITION, SET_REGISTERED_EVENTS, SET_TOP, SET_VISIBLE, SET_WIDTH, GET_PATH, CONTROL_REGISTER_EVENT, CONTROL_UNREGISTER_EVENT, GET_EVENT_PARAMETER, GET_REGISTERED_EVENTS_EX, GET_WINDOW_PROPERTY, INIT_CONTROL, INIT_CONTROL_WITH_HWND, REGISTER_CACHED_PROPERTY, REGISTER_CACHED_W_PROPERTY, SET_REGISTERED_EVENTS_EX, SET_WINDOW_PROPERTY, UNREGISTER_CACHED_PROPERTY, UNREGISTER_CACHED_W_PROPERTY, GET_CONTAINER_TYPE, RESIZE, GET_INNER_WIDTH, LINK, GET_LINK_INFO, GET_INNER_HEIGHT, SET_MODE_FOR_ALL, GET_DYNPRO_CONTAINER, GET_FRAME_CONTAINER, GET_CHILD, ADD_CHILD, REMOVE_CHILD, REMOVE_ALL_CHILDREN, CONSTRUCTOR.

  • Japanese/C​hinese Font for PDF and MS Office files

    Hi,
    I have both the BB9860 and the Playbook, always uses the Playbook to download and read email attachments.
    However, I realise that for  PDF and MS Office files, japanese/Chinese fonts are not supported.
    Is there any way for me to download the add-ons and install into my playbook?
    Thanks.
    Regards, Song Por

    PDF can display chinese, MS Word cannot display chinese.

  • Bridge does not show dimensions for .PDF and .AI files

    Is there any way to see the dimensions in cm (or inch) for PDF and AI files in Bridge? I'm using Bridge CS5 4.1.0.54 as part of CS5.5 Design Premium, have set the preferences in Bridge to show them, but there are no values in the metadata fields for dimensions in inch/cm. I don't know if this behaviour is normal or if there's something wrong with my installation...
    TIA,
    Matthias

    May be 'dimension' is not the right word/translation. In my german version it says 'Abmessungen (in Zoll)' or 'Abmessungen (in cm)', which should mean something like 'dimension' or 'size'. DIN A4, A5, US Letter, Legal etc. pp. in cm or inch.

  • One number for faxing and for voice

    Hi,
    I would like to know if it possible to have one number for faxing and for voice.
    What I have read up is that Cisco can detect the fax tones. What I would like to do is route all inbound faxes to a viop dial-peer and all voice to another e1 port.
    I am just looking for some more info if this can be done.
    Thanks you?

    Yes this is possible with either cisco fax relay or t.38 fax relay.
    http://cisco.com/en/US/tech/tk652/tk777/technologies_configuration_example09186a00800a4adf.shtml
    http://cisco.com/en/US/products/sw/iosswrel/ps1839/products_feature_guide_chapter09186a00800b5dce.html
    Hope this helps...
    Chester

  • HT204053 I am using my Apple ID for me and for my wife. when I sync. the phones i lost all my wife contact. how do i recover the contact from i cloud?

    I am using my Apple ID for me and for my wife. when I sync. the phones i lost all my wife contact. how do i recover the contact from i cloud?

    While I have a few ideas, I think you'd have better luck troubleshooting this in the iCloud forum.

  • I want to use an external microphone for both my iPhone 5S and my MacBook Pro. This is for music and for making recordings outside such as birds. Any suggestions?

    I want to use an external microphone for both my iPhone 5S and my MacBook Pro. This is for music and for making recordings outside such as birds. Any suggestions?

    use a splitter something like this
    http://www.amazon.co.uk/3-5mm-Headphone-Splitter-Cable-iPhone-White/dp/B003W37DS E/ref=pd_sxp_grid_pt_2_1

  • Is there a difference between microsoft office for mac and for windows?

    As a college student it's important that everything is equal for windows and mac for using instructions. So i am wondering if theres a difference between microsoft office for mac and for windows?

    There are differences between the two version of Office. If you need to be exactly like the Windows version, you will have to run Windows on your Mac.
    Allan

  • Which application server is requierd for form9i and for form10g

    which application server is requierd for form9i and for form10g

    Oracle Application Server 9.0.2 (Forms 9i) and Oracle Application Server 10g (9.0.4) (Forms 10g)
    Frank

  • I bought versions for iPad and for MacBook. At synchronization of documents on MacBook all smilies from the Emoji keyboard disappeared. It is impossible to insert them into the text manually. Smiles of Emoji are supported by the program for Mac? Help to s

    I bought versions for iPad and for MacBook. At synchronization of documents on MacBook all smilies from the Emoji keyboard disappeared. It is impossible to insert them into the text manually.
    Smiles of Emoji are supported by the program for Mac?
    Help to solve a problem, please.

    Same thing happened to me with my peruvian credit card in the peruvian app store, I want to buy an app, but it says that my credit card is "not supported in the Peruvian app store"

  • Different material number for SD and for PP MM

    Hello
    Does sap provide a functionality to manage different material number for SD and for PP MM:
    We produce and stock material A . We want to be able to sell material A and B. For MM (stock)  and PP, B = A but for reglementation, we need to print on the delivery document  caracteristics stored at the material level.
    We don't want to substitute B by A on the sale document and we want that the stock of A beeing reduced by sales orders of A and B.
    Thanks
    Simon

    Simon,
    Iu2019m not aware of any way to manage the same thing using one material number in MM/PP and a different number in SD.
    What makes B different from A?  From your description it sounds like itu2019s the same thing with different characteristics.  Without more info itu2019s difficult to offer solutions to your problem but Iu2019d start by looking at classification and batch management so you can differentiate differences between materials based on characteristics captured at the batch level. 
    If you provide a little more info about the products perhaps I can help.

  • I have a isic card and i am a student and i want to see if you have any discount for app for apple and for the i phones and if i have the b.o.box in the us can i buy the iPhone from your site

    i have a isic card and i am a student and i want to see if you have any discount for app for apple and for the i phones and if i have the b.o.box in the us can i buy the iPhone from your site

    Apple does not offer educational discounts on the iPhone. I don't know what you mean by "app for Apple".
    Regards.

  • Is the Apple TV is compatible for America AND for the UK?

    -1-
    Is the Apple TV is compatible for America AND for the UK?
    That is what the Apple TV sold in America is the same as that sold in the UK?
    What interests me most about the Apple TV is to see what I see on my iPad 3 on my TV.
    -2-
    Is the Apple TV will work properly on "Sony KDL-26EX320 LCD digital color".
    Inputs and outputs
    Resolution: 1366 x 768
    HDMI® input: 2 (2 Rear)
    HDMI® PC input: YES
    SCART input (without Smartlink): 1 (Rear)
    USB 2.0 input: 1 (Side)
    Ethernet input: 1 (Rear)
    Composite video input: 1 (Rear)
    Component video (Y/Pb/Pr) input: 1 (Rear)
    PC in (D-Sub) + Audio in (Stereo Mini): 1 (Rear)
    PCMCIA input: 1 (Side)
    Analog audio input: 1 (Rear)
    Optical digital output: 1 (Rear)
    Audio output: 1 (Side)
    Headphone output: 1 (Side)
    Network features
    Wireless LAN (Wi-Fi®): YES (built-in)
    Wi-Fi® Direct: YES (firmware upgrade needed)
    DLNA: YES
    BRAVIA Internet Video: YES
    BRAVIA Internet Widgets: YES
    Web browser: YES (firmware upgrade needed and display of embedded video not supported)
    Media Remote (iPhone / Android): YES (firmware upgrade needed)
    Skype™: YES (firmware upgrade needed)
    -3-
    Is the Apple TV can run on "Sony KV-27FS120"?
    Display
    •Aspect Ratio: 4:3
    Inputs and Outputs
    •Analog Audio Input(s) (Total): 4 (1 Front/3 Rear)
    •Audio Out: 1 (Rear)
    •Component Video (Y/Pb/Pr) Input(s): 1 (Rear) 480i
    •Composite Video Input(s): 3 (1 Front/2 Rear)
    •RF Connection Input(s): 1 (Rear)
    •S-Video Input(s): 1 (Rear)
    Please if you answer detail your answers.

    The Apple TV sold in the US and the UK is identical except for the plug.
    The Apple TV will connect to your first TV without any problems, however it is not compatible with your second TV.

  • Is there is any difference between iPhone4 made for Ukraine and for India?

    I would like to know about the hardware / software difference between iPhone4 made for Ukraine and for India.
    I purchased my iPhone4 in Ukraine and now I'm in India, and here due to restart problem I visit to a local delear/shopkeeper and he replaced some parts of my device with damaged one (crack screen, etc etc) and told me that it is a scrap and need another iPhone4 to replace some parts of it. Now this cell is totally brick, I can't check the EMEI of that device {because now its not booting} and he didn't accept that he replace some/all parts of my device.
    So, I want to know that is there is any way to locate these parts?

    Anu Tiger wrote:
    I told you earlier Sir that this device is made for HongKong market but purchased in Ukraine.
    You said:
    I would like to know about the hardware / software difference between iPhone4 made for Ukraine and for India.
    You also said:
    I visit to a local delear/shopkeeper and he replaced some parts of my device
    Apple does not sell iPhone parts. You no longer have an iPhone. You have an unsupportable frankenphone.
    Go back to whoever opened it up and attempted to repair it. Your phone is not supportable here.

Maybe you are looking for

  • Weird Question -- Universal Products?

    This is probably going to sound incredibly idiotic, but I just wanted to double check before I spend a lot of money. I need to buy a new battery for my Macbook Pro, as its been two years and it *****. I'm also buying a Time Capsule and Leopard for it

  • Available for verizon or others?

    will the iphone ever be available for verizon or different companies?

  • How can I permanently enlarge the default size for pop-ups?

    I use several sites that employ pop-ups. The default size is too small, so I have to manually enlarge each pop-up. How can I set the default size for pop-ups to a larger size. I don't want them maximized, just larger than the default.

  • PSE 9 Locking Up while Creating DVD/Slideshows

    I recently installed PSE9 (& Premier).  Everything seemed to work fine.  I have been editing a few photos and even created a video DVD.  All of a sudden, each time I try to create a new product (slideshow, dvd, greeting card) PSE9 locks up.  Sometime

  • EFI firmware update 1.0 not installing

    When I try to install EFI firmware update 1.0 on an Intel Xserve running 10.4.11, the installation proceeds normally and prompts me to reboot upon completion. However, the boot ROM version remains unchanged (XS11.0080.B00) after the machine reboots.