Calling the ASP page through a BSP application

Hi,
We are in the process of implementing Digital signature for SRM cFolders.
BSP application : CFX_RFC_UI
Pages with flow logic : doc_de_download
The digitally signed files are uploaded to the cFolders.On click of a
particular file in cFolders, the 'ASP' page residing on the server in IIS
vertual directory i.e. 'verifyfile.asp' should get called.This ASP page has
the logic to verify the signed file.
The signed file resides on the file system in the same vertual directory.
As a result we want to post a message on the screen which
will be the output of the ASP page logic.
Please suggest the way to achieve this.
Regards,
Nilesh
Message : ---
<b>Verification Successful</b>
  Certificate Details
The certificate is valid
CRL Status: Certificate Revocation Status is Unknown: CRL Not checked
Email Id: [email protected]
Issuer Name: ock Demo Certification Authority
Serial Number: 15 65 7a 0a  00 00 0d d9
Subject Name: Email Address = [email protected] | Country = US
| StateOrProvince = VA | Locality = McLean | Organization = Technologies Corporation | Organizational Unit = ock Demo | Common Name = Valid ock |
ThumbPrint: 16 00 c1 f4 76 aa 57 f2 20 27 0f 21 44 9e 08 9d 61 ca dd 95
Valid From: Monday, April 10 2006,02:19:58
<i><b>The code in OnInitialization event handler is as follows :----</b></i>
* doc_de_download.htm
DATA lp_root_exception   TYPE REF TO cx_root.
DATA lp_doc              TYPE REF TO cl_cfx_document.
DATA l_cur_ver_id        TYPE guid_32.
DATA lp_col_app          TYPE REF TO cl_cfx_col_application.
DATA lp_col              TYPE REF TO cl_cfx_collaboration.
DATA : icontent type table of  sdokcntbin.
data :  w_tmpcontent TYPE sdokcntbin.
**** Data declaration
data : g_folder_path TYPE btcxpgpar value 'usrsapDigitally signed files',
      g_md(100)      TYPE c,
      g_file_path    TYPE string,
      g_system       TYPE rfcdisplay-rfchost,
      g_os           TYPE sxpgcolist-opsystem,
      g_file_size    TYPE string,
      g_mime_type    TYPE string,
      g_file_ext     TYPE string,
      g_len1         TYPE i,
      g_var          TYPE c,
      g_out_file     TYPE c LENGTH 600,
      g_file_count   TYPE p,
      g_table_lines  TYPE p,
      g_counter      TYPE p VALUE 1,
      g_flag         TYPE c.
DATA : i_doc_id TYPE sysuuid_c.
CONSTANTS : c_dot TYPE c VALUE '.'.
TRY.
    IF NOT p_refresh IS INITIAL.
      cl_cfx_ui_application=>delete_instance( ).
    ENDIF.
    TRANSLATE p_col_id TO UPPER CASE. "Just in case...
    TRANSLATE p_area_id TO UPPER CASE. "Just in case...
    TRANSLATE p_topic_id TO UPPER CASE. "Just in case...
    TRANSLATE p_doc_id TO UPPER CASE. "Just in case...
    TRANSLATE p_ver_id TO UPPER CASE. "Just in case...
    TRANSLATE p_save TO UPPER CASE. "Just in case...
*   initialize in case of server state timeout
    IF ( NOT p_col_id IS INITIAL ) AND
       ( NOT p_area_id IS INITIAL ) AND
       ( NOT p_topic_id IS INITIAL ).
      CALL METHOD cl_cfx_context_ui=>initialize
        EXPORTING
          i_col_id      = p_col_id
          i_area_id     = p_area_id
          i_topic_id    = p_topic_id
          i_doc_id      = p_doc_id
          i_object_type = cfxf1_sc_doc_type_document.
    ENDIF.
    IF NOT p_col_id IS INITIAL.
      lp_col_app = cl_cfx_col_application=>get_instance( ).
      lp_col = lp_col_app->get_collaboration( p_col_id ).
    ENDIF.
*   Do we need to prepare to checkout this document?
    cl_cfx_doc_ui=>get_docref_safe(
      EXPORTING
        i_guid        = p_doc_id
      IMPORTING
        ep_docref     = lp_doc ).
    IF ( NOT p_filepath IS INITIAL ) AND ( p_do_lock = 'X' ).
      l_cur_ver_id = lp_doc->if_cfx_versioning~get_current_version( ).
      IF l_cur_ver_id = p_ver_id.
*       OK, prepare checkout
        TRY.
            lp_doc->if_cfx_document~lock( ).
          CATCH cx_root.
        ENDTRY.
      ENDIF.
    ENDIF.
data: lt_formfields type TIHTTPNVP,
      l_formfield   type IHTTPNVP,
      l_request     type STRING.
data: lt_headerfields type TIHTTPNVP,
      l_headerfield   type IHTTPNVP.
CALL METHOD request->get_form_fields
  CHANGING
    fields = lt_formfields.
CALL METHOD request->get_header_fields
  CHANGING
    fields = lt_headerfields.
*    CALL METHOD cl_cfx_doc_ui=>retrieve_content
*      EXPORTING
*        ip_navigation = navigation
*        ip_response   = response
*        ip_runtime    = runtime
*        i_col_id      = p_col_id
*        i_area_id     = p_area_id
*        i_topic_id    = p_topic_id
*        i_doc_id      = p_doc_id
*        i_ver_id      = p_ver_id
*        i_save        = p_save.
*   Do we need to checkout this document?
    cl_cfx_doc_ui=>get_docref_safe(
      EXPORTING
        i_guid        = p_doc_id
      IMPORTING
        ep_docref     = lp_doc ).
    IF ( NOT p_filepath IS INITIAL ) AND ( p_do_lock = 'X' ).
*      l_cur_ver_id = lp_doc->if_cfx_versioning~get_current_version( ).
      IF l_cur_ver_id = p_ver_id.
*       OK, do checkout
        TRY.
            CALL METHOD cl_cfx_doc_ui=>mark_doc_as_checked_out
              EXPORTING
                ip_doc     = lp_doc
                i_filepath = p_filepath.
          CATCH cx_root.
        ENDTRY.
      ENDIF.
    ENDIF.
i_doc_id = p_ver_id.
CALL FUNCTION 'CFX_API_DOC_DOCUMENT_READ'
Exporting
    i_doc_version_id = i_doc_id
  IMPORTING
    e_file_path      = g_file_path
    e_file_size      = g_file_size
    e_mime_type      = g_mime_type
    e_file_ext       = g_file_ext
  TABLES
    et_content       = icontent.
******  Download document
IF NOT icontent[] IS INITIAL.
***  PERFORM sub_download_file USING g_file_path.
  CONCATENATE g_folder_path g_file_path
  INTO g_out_file.
  OPEN DATASET g_out_file FOR OUTPUT IN BINARY MODE.
  IF sy-subrc = 0.
    LOOP AT icontent INTO w_tmpcontent.
      TRANSFER w_tmpcontent TO g_out_file.
    ENDLOOP.
  ENDIF.
  CLOSE DATASET g_out_file.
  CLEAR g_out_file.
ENDIF.
    CLEAR: p_area_id, p_col_id, p_doc_id, p_save,
           p_topic_id, p_ver_id, p_filepath.
** handle other standard exceptions
  CATCH cx_root INTO lp_root_exception.
    CALL METHOD cl_cfx_exception_ui=>handle
      EXPORTING
        ip_exception  = lp_root_exception
        ip_navigation = navigation.
ENDTRY.

Hi,
Something like this should work:
REPORT  zggar_http_client.
PARAMETERS: p_host  TYPE char100 DEFAULT 'http://www.google.fr',
            p_port  TYPE char20.
DATA: wcl_client TYPE REF TO if_http_client.
DATA: w_content    TYPE string,
      w_host       TYPE string,
      w_port       TYPE string,
      w_proxy_host TYPE string,
      w_proxy_port TYPE string,
      w_path       TYPE string.
w_host = p_host.
w_port = p_port.
CALL METHOD cl_http_client=>create
  EXPORTING
    host          = w_host
    service       = w_port
    proxy_host    = w_proxy_host
    proxy_service = w_proxy_port
  IMPORTING
    client        = wcl_client.
wcl_client->request->set_header_field( name  = '~request_uri'
                                   value = w_path ).        "#EC *
wcl_client->request->set_header_field( name  = '~request_method'
                                   value = 'GET' ).         "#EC *
* send and receive
wcl_client->send( ).
wcl_client->receive( ).
* display content
w_content = wcl_client->response->get_cdata( ).
Best regards,
Guillaume

Similar Messages

  • Can Java Applet Call the ASP Page

    Hi,
    I would like to know whether the Java Applet can call the ASP page.
    If it can be done, how does the Java Applet get the value from ASP page?
    Please provide me some running example.
    Thanks.

    I would like to know whether the Java Applet can
    an call the ASP page.Something like:
    AppletContext.showDocument(new URL("http://wherever/myPage.asp"), "_blank");
    how does the Java Applet get the value from ASP page?What?
    Please provide me some running example.Nope.

  • How to call BSP pages from a BSP application of another package

    Hi,
    I have a BSP application in one package and I want to call pages from another BSP application in a different package.
    Is it possible? How it would have to do it?
    Thanks in advance
    Regards

    Hi,
    You cannot call a page fragment in a seperate window or seperately in the same window...
    Page fragment is used only for including a fragment in your page....
    It is not a seperate page..!
    To call a page fragment, you have to  use the include directive...
    eg :
    <%@include file="Carrier_report_logo.htm" %>
    Hope this helps.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.
    Message was edited by:
            Tatvagna Shah

  • Can we call an ASP page using J2Me

    hi, I want to know whether there is a way of calling an ASP page which is for sending mass emails through my J2ME application using HTTP connection

    Yes, the server-side technology is irrelevent to the MIDlet, as long as it supports HTTP 1.1.

  • Question on passing parameters between 2 pages in a BSP application

    Hi Group,
    I have defined a page attribute "zcid" in both the pages where I need this attribute value. And in one page I calculated a value and assigned it to this attribute. And also I checked the attribute as "Auto" in both pages.
    And I used navigation->set_parameter( name = 'zcid' and value = zcid ), I was getting an error saying, use "." after name and not proceeding any further.
    Please let me know the procedure for accessing a value of an attribute in Multiple pages within a BSP application.
    Thanks in advance.
    Regards,
    Vishnu.

    Hi Vishnu
    To pass the parameter,
    Firstly the name of attributes should be same of both pages and the check of AUTO should be checked on target page.
    I am giving you small example to pass the Firstname parameter from Default.htm to Result.htm .
    the Parameter name in Default.htm is --> fname type string.
    --> Auto should not check
    the Parameter name in Result.htm is --> fname type string.
    --> Auto should be checked.
    in Default.htm inputprocessing use the code
    navigation->set_parameter( 'fname' ).
    navigation->next_page( 'TORESULTS' ).
    or
    For more detail you may also go through the following links
    /people/raja.thangamani/blog/2006/12/26/bsphow-to-navigation-between-bsp-applications-part-i
    /people/raja.thangamani/blog/2007/01/05/bsphow-to-navigation-between-bsp-applications-part-ii
    If this will helpful please reward the points
    Kuldeep Verma

  • How to call the new page in smartforms

    Hi friends,
    How to call the new page in smartforms.
    Thanks,
    Ravi

    Hi,
    Create a command node and click the 'Go to new page' check box specifying the page u want to go.
    You can enter your condition for which it should branch to a new page in the 'conditions' tab.
    Regards
    Shiva

  • My iphone hangs any time.I see a call coming but i cannot attend. My call drops anytime and i cant even end the call.The settings page doesnt respond many times.I have given the phone to Apple care , they update the software and return it back to me

    My iphone hangs any time.I see a call coming but i cannot attend. My call drops anytime and i cant even end the call.The settings page doesnt respond many times.I have given the phone to Apple care , they update the software and return it back to me.IT WORKS FINE FOR 3-4 DAYS AGAIN THE SAME. Its under warranty and i am disappointed with the Apple product and service

    If you used your backup to restore the data after it got returned, set it up as new device and don't use the backup data afterwards. It seems that some data inside the backup are corrupt. Follow this article and set up the account info and other setting manually after that:
    Use iTunes to restore your iOS device to factory settings - Apple Support

  • Removing tool bar and menu bar to the navigated page through ADF

    Hi,
    Through facesconfig iam navigating to the other page, some thing like my method returns a striing "success" in faceconfig i made to navigate to page2.jsp if it receives success,
    My current requirement is to remove the tool bar as well as manu bar from the navigated page i.e. page2.jsp, i could n't able o configure that, can any one please help me on this.

    Yeah exactly i am talking about the browser window, let me explain you once more,
    the bellow iam calling from first.jsp
              FacesContext fc=FacesContext.getCurrentInstance();
              Application ac=fc.getApplication();
              NavigationHandler navigationHandler=ac.getNavigationHandler();
    try{
    navigationHandler.handleNavigation(fc,null,"success");
    }catch(Exception e){
    in faces config.xml i have used
    <navigation-rule>
    <from-view-id>first.jsp</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>second.jsp</to-view-id>
    <redirect/>
    </navigation-case>
    </navigation-rule>
    right now what i need is when the page traverses to the second window i.e second.jsp i shudn't see menu bar and tool bar in my browser window.
    hope this will clear my question, any one please help me out......
    please let me know the sollution even if there is any in JSP

  • Insufficient privileges error while calling the seeded page on button click

    hi all
    I am working on Customers Online module.
    I have added a normal button on a standard page through personalization .
    The destination for the button is set to call the seeded Create organization page
    destination="OA.jsp?OAFunc=XXIIMC_NG_ORG_CREATE&amp;OAHP=IMC_NG_MAIN_MENU&amp;OASF=IMC_NG_ORG_CREATE"
    System Admin --> functions --> XXIIMC_NG_ORG_CREATE is a copy of standard function IMC_NG_ORG_CREATE.
    It calls the page "OA.jsp?page=/oracle/apps/imc/ocong/party/organization/webui/ImcCreateOrg&HzPuiAddressEvent=CREATE"
    When i click on the button i get the error *"You have insufficient privileges for the current operation. Please contact your System Administrator"*
    1. The profiles *"FND Function Validation Level"* and *"FND Validation Level"* are set to NONE
    2. Bounced apache also.
    3. The responsibility Customers Online Superuser is assigned to my user.
    We are doing R12 upgrade. The similar functionality is working fine in 11i.
    Please let me know what could be the reason of this error and how to correct it.

    Hi,
    Grant is not given to the create organization page. Ask your DBA for this issue.
    Thanks,
    Kumar

  • [WRT160N] Accessing the router_status page through apply.cgi (Curl)

    Hi everybody,
    This is my first post here so I hope I'm writing my topic in the good section.
    A few days ago, I changed my ISP and went from a static public IP adress to a dynamic one.
    I need to access to my home LAN through the internet, so I have to know my home-public adress.
    That adress is writen on the /router_status.asp
    So I'm writing a script, using curl, to get that IP adress
    After a few search, I found that I had to go through the apply.cgi page giving it a few datas
    The fact is I don't know what datas are required to join the router_status.asp
    I can't join directly the page (curl http://userass@my_router_ip_adress/Status_Routeur.asp) doesn't return anything
    What I need is something like that :
    curl http://userass@my_router_ip_adress/apply.cgi -d "page=router_status"
    Of course the "page=router_status" is not real, it's the datas I'm searching for, the ones leading to the router_status page
    I hope I'm clear enough,
    thank you in advance !

    Aichan wrote:
    Hi everybody,
    This is my first post here so I hope I'm writing my topic in the good section.
    A few days ago, I changed my ISP and went from a static public IP adress to a dynamic one.
    I need to access to my home LAN through the internet, so I have to know my home-public adress.
    That adress is writen on the /router_status.asp
    So I'm writing a script, using curl, to get that IP adress
    After a few search, I found that I had to go through the apply.cgi page giving it a few datas
    The fact is I don't know what datas are required to join the router_status.asp
    I can't join directly the page (curl http://userass@my_router_ip_adress/Status_Routeur.asp) doesn't return anything
    What I need is something like that :
    curl http://userass@my_router_ip_adress/apply.cgi -d "page=router_status"
    Of course the "page=router_status" is not real, it's the datas I'm searching for, the ones leading to the router_status page
    I hope I'm clear enough,
    thank you in advance !
    Hi Aichan
    I hope this article will help you http://www6.nohold.net/Cisco2/ukp.aspx?vw=1&docid=ffb800d067db41f89f86c0c717492c9c_How_to_access_you....

  • Calling a portal page from WebDynPro ABAp application

    Hi,
    I would like to call a portal page (any type) from a WebdynPro ABAP application. I have the PCD location of the page.
    Which call shall I make :
    Absolute Navigation
    Relative Navigation or
    OBN.
    Also, can anyone send me short code snippet on the following.
    The package SWDP test examples are not working.
    Best Regards
    Sid

    Hi Siddharth,
    Well, to start with you can go for ABSOLUTE NAVIGATION.
    Secondly, you can find the snippet here
      DATA LO_API_COMPONENT  TYPE REF TO IF_WD_COMPONENT.
      DATA LO_PORTAL_MANAGER TYPE REF TO IF_WD_PORTAL_INTEGRATION.
      DATA L_NAVIGATION_TARGET TYPE STRING.
      LO_API_COMPONENT = WD_COMP_CONTROLLER->WD_GET_API( ).
      LO_PORTAL_MANAGER = LO_API_COMPONENT->GET_PORTAL_MANAGER( ).
      MOVE 'pcd://portal_content/com.xxxx.zpof_f_XXXXportalcontent/com.xxxx.test/com.xxxx.folders.MaintenanceBusinessPackage/com.xxxx.test.mt.pages.Pages/com.xxxx.pages.MaintenanceTasks'
        to l_navigation_target.
      CALL METHOD lo_portal_manager->NAVIGATE_ABSOLUTE
        EXPORTING
          NAVIGATION_TARGET   = L_NAVIGATION_TARGET
    *      NAVIGATION_MODE     = IF_WD_PORTAL_INTEGRATION=>CO_SHOW_INPLACE
    *      WINDOW_FEATURES     =
    *      WINDOW_NAME         =
    *      HISTORY_MODE        = IF_WD_PORTAL_INTEGRATION=>CO_NO_DUPLICATES
    *      TARGET_TITLE        =
    *      CONTEXT_URL         =
    *      POST_PARAMETERS     = ABAP_FALSE
    *      USE_SAP_LAUNCHER    = ABAP_TRUE
    *      BUSINESS_PARAMETERS =
    *      LAUNCHER_PARAMETERS =
    Above it, the examples of SWDP will not work if you test them from SE80-ABAP WAS...I suggest you to create a WDA IView in Portal and test it in Portal itself.
    Hope this should solve your problem.
    Regards
    <i><b>Raja sekhar</b></i>

  • Passing paramters and calling a PCUI screen from a BSP Application

    Hi,
    We have developed a custom BSP application which displays a list of Opportunities in a HTMLB table view based on a search criteria.
    When I click on a particular opportunity no., I should call a PCUI screen which should display that particular opportunity details.
    Any help is greatly apperciated.
    Thanks,
    Vasu.

    You are going to have to be more specific in what you want.
    First I would read the following pieces of info.  They will help you with general problems, also with creating an Iterator and read the select rows of a table.
    BSP Element - Dynamic tableView with Internal Table
    <a href="/people/brian.mckellar/blog/2003/10/31/bsp-programming-htmlb-tableview-iterator">BSP Programming: HTMLB TableView Iterator</a>
    Just shooting from the hip I am assuming you are clicking on a selected ROW in the tableView where you defined the tableView with <i>selectionMode="SINGLESELECT"</i> and <i>onRowSelection="MySelectEvent"</i> then on the OnInputProcessing Event Handler you read the selected row (see <a href="TableView and selected row)
    So and of course once you read the selected row in the OnInputProcessing event handler you can do further porocessing.
    However if you are wanting to provide the user with the ability to click an icon or text link in the row then please refer to the Iterator for that.

  • The work item linked to bsp application can not be executed in CRM webUI

    Hi all,
        1. i have configured workflow in SAP GUI. And i have linked one activity to bsp application(link to the task with bo WEBSERVICE and method PROCESSDIALOG).
        2. When i start the workflow and click the workitem in workflow inbox, then the bsp page will pop up.
        3. In CRM webUI, you can find all the workitems under CRM webUI worklist as the same as SAP GUI. And when i execute the workitem in webUI. a error appears as 'Dynamic navigation for object WEBSERVICE and action F not supported'.
    In a word i want to link my customized bsp application with wokitem in CRM webUI .
    any suggestion ? ths

    Frankly, I am not aware of CRMGUI but  in general, the way we assign is
    1. Initially we define a external service ( WF_EXTSRV).
    2. Then by using that definiton we'll create a task.
    3. The task created in the second step, we use in the workflow.
    4. Now when ever any user tries to execute the workitem then it directly opens the BSP application.
    Before doing all the above steps one should make sure that the service is ACTIVE in SICF txn, and what ever the parameters that are required to pass the BSP application must be defined in the WF_EXTSRV.
    IF you want the workitem to appear in the UWL you need to register the task in SWFVISU txn with the visualization parameters  APPLICATION. and the task as BSP standard application.

  • Tags not recognized when compiling the jsp pages through appc

    Hi:
    I am trying to convert a web application from weblogic 9.1 to weblogic 10.3. However, when I try to build the ear file the page compilation fails with the error:
    weblogic.utils.compiler.ToolFailureException: jspc failed with errors :weblogic.servlet.jsp.CompilationException: projectFinancials.jsp:10:2: The tag handler class was not found "jsp_servlet._tags.__projectJobCostingLayout_tag
    However, the tag file is there.
    The tags are referenced through this declaration:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <taglib>
    <taglib-uri>http://name/app/tagfiles</taglib-uri>
    <taglib-location>/WEB-INF/tags</taglib-location>
    </taglib>
    </web-app>
    All the declarations in the jsp pages are fine. In weblogic 9.1 I don't have any problem. I also set the <backward-compatible>true</backward-compatible> in weblogic.xml.
    Any idea?
    Thanks!

    There is no need to use tld files with tag files when it comes to running the ear file through appc. When I do development I use a tld file that contains references to all the tag files, however my build process replaces that with the tag files directory:
    So, during development I have:
    web.xml:
    <taglib>
    <taglib-uri>http://name/cps/tagfiles</taglib-uri>
    <taglib-location>/WEB-INF/tld/mytags.tld</taglib-location>
    </taglib>
    mytags.tld:
    <taglib xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
    version="2.0">
    <tlib-version>1.0</tlib-version>
    <short-name>mytags</short-name>
    <uri>mytaglib</uri>
    <tag-file>
    <name>agreementDetailsLayout</name>
    <path>/WEB-INF/tags/agreementDetailsLayout.tag</path>
    </tag-file>
    During the build I have:
    web.xml:
    <taglib>
    <taglib-uri>http://name/app/tagfiles</taglib-uri>
    <taglib-location>/WEB-INF/tags</taglib-location>
    </taglib>
    If I don't do this appc will have a fit of even bigger proportions (more error messages etc.)

  • Calling a Perl script from a BSP application

    Hi all,
           Is it possible to call a Perl program that resides on a different server from a BSP application. If so, how do I do it.
    Thanks,
    Shiraz.

    If I understand correctly what the script does then when you type the script by itself into the webbrowser do you get a response? If it works that way then you can quite easily use something like this:
          <htmlb:gridLayout columnSize = "1"
                            rowSize    = "1"
                            height     = "600"
                            width      = "100%" >
            <htmlb:gridLayoutCell columnIndex = "1"
                                  rowIndex    = "1" >
              <phtmlb:matrix width  = "100%"
                             height = "100%" >
                <phtmlb:matrixCell col = "1"
                                   row = "1" />
                <iframe id="MyIFrame" src="<%= lv_url %>" border="0" width="100%" height="100%" frameborder="0" />
              </phtmlb:matrix>
            </htmlb:gridLayoutCell>
          </htmlb:gridLayout>
    See: is it possible to define xhtml:tabscript width by using %
    Just give your perl script as the URL for the iframe. Again this only works if calling the perl script in the browser works.

Maybe you are looking for

  • Data from a Flat file int a Cube

    Hi experts! Just a quick one, could we load data from a flat file directly to an infocube? Or we woud need to create a ODS to load that from the flat file there and later on form the ODS to the cube? Thanks you very much for your time!!

  • Trouble downloading

    I purchased boxed c.d adobe photoshop elements 12 . I am having trouble installing as get to serial number entery and have tried all numbers on the back but nothing is happening.

  • How to close saved image?

    hi  I can't close the saving image after i created it. It becomes read only and  i get error  unless i exit from application when i want to create it again  i think it remains open. Would you help me how i can solve problem?  ofd.Filter = "Image File

  • Dynamic Converter Issue

    Hi, We are using the below script template for tif and pdf files <$setContentType("text/xml")$><$setHttpHeader("Cache-Control", "no-cache")$><$setMaxAge(0)$><?xml version="1.0" encoding="UTF-8"?> <message> <status>OK</status> <dDocTitle><$dDocTitle$>

  • WLCS 3.5 installation on NT

    Hi We'd like to eval WLSC 3.5 and the Campaign Manager. I installed WL 6 and the WLCS on my NT 4 workstation. However, when trying to run it, the message as below comes up. Any suggestions? TIA, Alex Starting WebLogic Server .... <May 24, 2001 11:55: