SSL-41211

Our headoffice created some reports to run in the runtime-module f50run32.exe. These reports run OK under pre-W2K. Under W2K (NTFS) we get the error-message FRM-41211. We have 1 machine running W2K, but uses Fat32. No problem there. I tried to (I4m not sure whether it was right) add a key in HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE called REPORTS25_TMP with the value C:\WINNT\TEMP but this did not lead to the solution. Anyone got ideas ???
Please help..
Kind Regards
Willem

hello,
FRM-41211 is an SSL integration error, which means, that there was an error calling reports.
this might be related to the fact, that your version of forms/report is NOT CERTIFIED on windows2000. unfortunatly it is not supported anymore, either.
it is strongly suggested to upgrade to reports 6i and it's latest patchset.
your attempt to set REPORTS25_TMP was a good guess but as the version of reports you are using is reports 3.0 it should be named REPORTS30_TMP.
regards,
the oracle reports team

Similar Messages

  • FRM-41211 Integration Error SSL - OracleAS 10g

    Hi.
    I have error Frm-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms.
    I have error: FRM-41211 SSL integration error .....
    OracleAS server began on Windoes XP SP2.
    Do you help me ?

    Hi,
    I remember having seen this issue in teh apst. My best recommendation is to work with customer support (metalink.oracle.com)
    Frank

  • FRM-41211 Integration Error SSL - Oracle Forms 10g

    Hi all.
    I have FRM-41211 Integration Error SSL Failure Running Another Product error while calling a report from web form in oracleAS 10g.
    I have problem with RUN_REPORT_OBJECT in web forms in this code:
    =====================================================
    DECLARE
    BEGIN
    repid := find_report_object('MODULE21');
    v_rep := RUN_REPORT_OBJECT(repid);
    -- jobid := substr(v_rep, length('rep60_WS70004')+2, length(v_rep));
    -- web.show_document('/reports/rwservlet/getjobid'||jobid||'?server=rep3945','_blank');
    END;
    =====================================================
    I have error: FRM-41211 SSL integration error .....
    OracleAS 10g server began on Windows XP SP2.
    Do you help me ?
    Very thanks !!

    Do you help me ?
    Thanks.

  • FRM-41211 Integration error SSL failure

    Hello
    Environment Client/Server Developer 6i.
    i installed developer on a new clinet machine to rum my application. every thing is fine but when he tries to run any report the following error occured:-
    FRM-41211 Integrarion error SSL failure runing another product.
    and i have re-install the devloper but the error is stand.
    any solution?
    regards
    aaks

    As Petr said make sure you're reports25_tmp is set in your registry and that the directory exists AND you have the rights to write to that directory.
    You can also get this error if you try to issue a 2nd asynchronous run_product call to run a report and there is another one running. For this, Oracle has two 'solutions'.
    1) Do not run more then one asynchronous report per session
    or
    2) Use a delay loop before calling the next report.
    It's been my experience that #2 is worthless as, if it works, is doing pretty much the same thing as #1. I really hope this gets fixed (for good) at some point...somehow. <G>
    Chad

  • FRM-41211: Integration Error: SSL failure running another product Error

    Hai,
    I am developing POS Application in Oracle(Forms6i/Reports6i). I design the Invoice Print Format in Reports6i and call from the Invoice Form. When the
    user save the Invoice I Commit the Invoice and call the Invoice Report for Printing Immediately. I use Epson TM U210B Label Printer for Billing. Sometimes the Invoice Print is not coming in the Printer and it gives the
    following error(especially the First print after restart the computer).
    FRM-41211: Integration Error: SSL failure running
    another product
    After that if you print further for transaction no plm. only it gives the error first time of print
    So Please give the solutions immediately. I am waiting for Ur favourable Reply.
    Ur's Shahul

    As Petr said make sure you're reports25_tmp is set in your registry and that the directory exists AND you have the rights to write to that directory.
    You can also get this error if you try to issue a 2nd asynchronous run_product call to run a report and there is another one running. For this, Oracle has two 'solutions'.
    1) Do not run more then one asynchronous report per session
    or
    2) Use a delay loop before calling the next report.
    It's been my experience that #2 is worthless as, if it works, is doing pretty much the same thing as #1. I really hope this gets fixed (for good) at some point...somehow. <G>
    Chad

  • FRM-41211 SSL-Failure From Forms

    I have a Reports/Forms problem when running run_product from within Forms in a loop (for i in a..b loop run_product(i) end loop) for generating emails or faxes using MS Outlook starting with the second report.
    Error message "FRM-41211 SSL-Failure...".
    When generating only one report it is no problem.
    In Outlook after while a protocol message appears saying "Conversion Error...".
    null

    hello,
    sounds like a timeout problem. please check with oracle support services. might be version problem.
    regards,
    the oracle reports team

  • Frm-41211 SSL error

    When i'm running the reports from a form under Forms6i it is
    giving an error like
    FRM:41211 integration error.SSL failure running another product.
    please give me the solution.
    Regards,
    Suresh.B

    We are using reports 10g R2 under linus. ias 10g R2

  • Error : FRM-41211 : Integration Error: SSL Failure Running Another Product

    Hi All
    I am using Forms & Reports 10g.
    I have a report .And i am trying to call in my forms and also i am passing parameters.
    But i am getting this error :
    My Code is :-
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    Add_Parameter(PLid, 'P_Block', Text_Parameter, :block_query.item_block);
    Add_Parameter(PLid, 'P_Category', Text_Parameter, :block_query.item_category);
    Add_Parameter(PLid, 'P_Dept', Text_Parameter, :block_query.item_dept);
    Add_Parameter(PLid, 'P_Floor', Text_Parameter, :block_query.item_floor);
    Add_Parameter(PLid, 'P_IP', Text_Parameter, :block_query.item_ip);
    Add_Parameter(PLid, 'P_Room', Text_Parameter, :block_query.item_room);
    Add_Parameter(PLid, 'P_Userid', Text_Parameter, :block_query.item_usr_id);
    Add_Parameter(PLid, 'PARAMFORM', Text_Parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT_Query');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    WEB.SHOW_DOCUMENT('http://A_F2_ITT_PC_4.AAHOS.LOCAL:8890/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
    *'||'server=Report_server_name&P_parameter='||'&block='''||:block_query.item_block*
    *||'&category_name='''||:block_query.item_category*
    *||'&dept='''||:block_query.item_dept*
    *||'&floor='''||:block_query.item_floor*
    *||'&ip_address='''||:block_query.item_ip*
    *||'&room='''||:block_query.item_room*
    *||'&usr_id='''||:block_query.item_usr_id*
    *||'&paramform=no');*
    End;
    And the error i am getting is :- FRM-41211 : Integration Error: SSL Failure Running Another Product

    hi
    please try something like this.
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    add_parameter(plid,'p_parameter',text_parameter,to_char(:block.item));
    Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT6');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://Machine_Name:8889/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
    '||'server=repserver&P_parameter='||:block.item||
    '&paramform=no');
    END;

  • Help on FRM-41211 Integration error: SSL failure running another product.

    Am getting the above error, whenever I run my interface form calling a Report module.
    What's baffling though is - this only happens during the initial call to the RUN_PRODUCT built-in. That is, after acknowledging the Form error, the Reports Background Engine is displayed, then everything would seem to be work after that.
    Could this be a bug or is there a run-around to this?
    Thanks a lot for your ideas and help.

    We were getting this error on windows98 machines if someone had opened wordpad or some other unrelated application before running a report after they booted the machine. We solved the problem by forcing the reports backgroup engine to run at startup to prevent this error.
    HOST (
    'start /m RWRBE60.exe ',
    no_screen); -- START BACKGROUND ENGINE TO PREVENT SSL INTEGRATION ERROR

  • FRM-41211 Integration Error: SSL FAILURE RUNNING ANOTHER PRODUCT

    Reports (version 6i) are ran from Oracle Forms (version 6i) using Run_Product. Sometimes, this error appears and the reports background engine do not even appear. I've read that one of the reasons is that the reports background engine takes a long time to load into memory. If that is so, what is causing the delay and what would be the recommended solutions? I have just encountered this error for the first time and since our version is already desupported, we won't be able to get much help from metalink.
    Any help will be greatly appreciated. Thanks!

    In a documentation that I read, one of the solutions they did was force the background engine to run before the RUN_PRODUCT command. In this case, after the RUN_PRODUCT, the reports background engine need to be closed. I'll give this a try and see what happens.
    I am just wondering though that we have 5 servers whose structure and data are the same and yet this error only appears on one of the servers. In addition, this error fires randomly. For example, one report is ran 30 times and only crashes 2x. Why is the crashing so random?
    Anyway, thanks for your recommendation. Any other insights or whatever are very much welcome.

  • Frm-41211 error ssl

    Hello
    friends
    i have a problem in form 6i.i am using oracle 9i.and when from the menu i call report through run_product built ins it is giving this error.can anybody tell me abt this problem.
    Regards Sourav

    Helllo friends
    it might be simple question to u all but it is very difficult for me.so plz guide me in handling this error.i am using forms 6i,oracle 9i,windows 2003

  • FRM-41211 SSL Error Integrating with another product

    Hi All
    Getting the following dreaded error. Seached this and forms forum and tried all things
    setting REPORTS_TMP directory
    removing the SSO option in reports
    Still same error. I tried running reports directly by using the reports url and it works fine.
    Any help appreciated.
    Rgds
    Arvind

    We are using reports 10g R2 under linus. ias 10g R2

  • Frm-41211 SSL integration error

    Several sites have experienced problems running a report from an Oracle Forms module, including us, especially sites that have upgraded Reports (we went from 3.0 to 6i).
    What worked for us was a mixture of solutions culled from OTN and Metalink:-
    1. Add the location(s) of your Reports runtime files to the registry key REPORTSxx_PATH.
    2. Create a shortcut to the correct version of the Reports Background Engine in your Startup folder.
    3. De-install any previous version of Reports you may have.
    Only by carrying out all three tasks did we eliminate this problem.
    Andrew Hunter

    As Petr said make sure you're reports25_tmp is set in your registry and that the directory exists AND you have the rights to write to that directory.
    You can also get this error if you try to issue a 2nd asynchronous run_product call to run a report and there is another one running. For this, Oracle has two 'solutions'.
    1) Do not run more then one asynchronous report per session
    or
    2) Use a delay loop before calling the next report.
    It's been my experience that #2 is worthless as, if it works, is doing pretty much the same thing as #1. I really hope this gets fixed (for good) at some point...somehow. <G>
    Chad

  • Frm-41211: integratrion error: SSL failure running another product

    Hi.. I have this problem during calls a report object from a Form 10g
    what does mean ?

    this is due to some bug but i think it has already been fixed from forms6.0
    ok due to some problem it come but if you can put some interval b4 running your report through forms then it will be solved......
    here i can suggest follwing code....I think it will help you,.....
    1. In your When-Button-Pressed trigger you will create a timer
    DECLARE
    my_timer TIMER;
    my_duration NUMBER(5):=10000; -- 10 000 miliseconds
    BEGIN
    my_timer:=Find_Timer('timercek');
    IF Id_Null(my_timer) THEN
    -- creating
    my_timer:= CREATE_TIMER('timercek',my_duration,NO_REPEAT);
    ELSE
    -- restarting with the same parameters
    Set_Timer(my_timer,NO_CHANGE,NO_CHANGE);
    END IF;
    END;
    2. When-Timer-Expired trigger is used for doing an action you want to do - in your case it would be running a report.
    DECLARE
    expired_timer CHAR(10);
    BEGIN
    expired_timer:=GET_APPLICATION_PROPERTY(TIMER_NAME);
    IF expired_timer='timercek' THEN
    RUN_PRODUCT(...);
    END IF;
    END;
    I hope this will be a little help for you.

  • FRM-41211 error when using RP2RRO_RUN_PRODUCT

    I have a Form in version 6i which a calls a report using RUN_PRODUCT.
    I used Forms Migration Assistant to convert it to version 10g. The FMA automatically replaced RUN_PRODUCT with RP2RRO.RP2RRO_RUN_PRODUCT.
    I run the form and I get this error: FRM-41211: Integration error: SSL failure running another product.
    Any ideas on how to solve this? Thanks in advance.

    maybe adding the repository connection to your report server would give you a more specific error...
    there's a repository connection entry in your <reportserverconfiguration>.conf file, which tells the report server the connection where to write the more specific error message. in this schema, you have to put a table (you can get the structure at otn), and now you can log the full error message/success of the report...
    you can also access this by using this url:
    http://<OAS>/reports/rwservlet
    as far as I remember the call to get the job status of the report server is like this
    http://<OAS>/reports/rwservlet/status?server=<your_report_server>
    or something...but you can access the right url with above call...

Maybe you are looking for

  • Ichat says my iSight is in use by another app

    Hello, I just got my iSight that I bought on ebay. I have a problem, iChat is saying my camera is in use by another application, but I'm not using it with any other app. I also tried to use it with quicktime pro, and when I went to file, new recordin

  • Yahoo mail remebers my password but not the user name. I've checked the remember box.

    I've checked the remember box but Firefox is remembering the password but is not remembering the user name when I sign in to my email account. I'm not having sign in trouble with IE nor am I having trouble signing in on my laptop with either Firefox

  • Why I can't mount with Rox but works from a terminal?

    Hi, I'm using Xfce4.2 (RC-3) and I use rox as file manager. The thing is if I try to mount a cd by clicking on the icon while using rox, nothing is happening. But if I open-up a terminal and type "mount /mnt/cd" it works!  :shock: As root, I can moun

  • NullPointerException on String methods

    All, I am trying to get date values on the fly and add them to my sql statement. I have a DateWorker class that provides month, day of month and year. When I use the class in another class, I get NullPointerException. These are just plain ol' String

  • Screenshot Processing

              saveButton.addActionListener                new ActionListener()                     public void actionPerformed(ActionEvent event)                          sig1.setVisible(true);                          sig2.setVisible(true);