Error when calling SOAP Runtime functions - Please help!

Hi,
Very new to SAP. I just installed SAPNW7.0ABAPTrialSP12 (sandbox server, with default options) and setup the
<a href="http://help.sap.com/saphelp_nw04/helpdata/en/db/7c623cf568896be10000000a11405a/content.htm">Flight Data</a>.
I wanted to invoke some of the Flight Data functions through SOAP. So I invoked the following URL:
http://localhost:8000/sap/bc/srt/rfc/sap/BAPI_FLIGHT_GETDETAIL?sap-client=000&wsdl=1.1
I get the following error:
  The following error text was processed in the system NSP : Error when calling SOAP Runtime functions
The error occurred on the application server hs_NSP_00 and in the work process 0 .
The termination type was: RABAX_STATE
The ABAP call stack was:
      Method: HANDLE_REQUEST of program CL_SOAP_TRANSPORT_EXTENSN_ROOTCP
      Method: HANDLE_REQUEST of program CL_SOAP_HTTP_EXTENSION========CP
      Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_SOAP_HTTP_EXTENSION========CP
      Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
      Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
      Module: %_HTTP_START of program SAPMHTTP
FROM Runtime Error Log:
Runtime Errors                     UNCAUGHT_EXCEPTION                                                          
Exception                          CX_SOAP_CORE
       Termination occurred in the ABAP program "CL_SOAP_TRANSPORT_EXTENSN_ROOTCP" -                
           in "HANDLE_REQUEST".                                                                               
The main program was "SAPMHTTP ".                                                                               
In the source code you have the termination point in line 37                                 
          of the (Include) program "CL_SOAP_TRANSPORT_EXTENSN_ROOTCM004".
Does anyone have any ideas on what is going on? Thanks in advance.

Hi,
Have a look at this blog from Michal Krawczyk to find a solution:
The specified item was not found.
Hope this helps,
Grzegorz

Similar Messages

  • Error when calling SOAP Runtime functions

    Hi Guys,
    I have a requirement in which i have to consume a webservice and get a response from it but when i consumed the web service and tried to test it i got the below error please let me know solution for this as it is very urgent and also i am very new to web services stuff
    Error when calling SOAP Runtime functions: SRT: Processing error in Internet Communication Framework: ("ICF Error when receiving the response: ICM_HTTP_CONNECTION_FAILED")
    Thanks
    shivraj

    Hi,
    Have a look at this blog from Michal Krawczyk to find a solution:
    The specified item was not found.
    Hope this helps,
    Grzegorz

  • Error when calling a package function

    any insight why my object is erroring out when calling a function. the error is
    oracle.apps.fnd.framework.OAException: java.sql.SQLException: ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at line 1
    it errors out when the cs.execute() is . is it the placement ? thanks for the help....
    then pkg func is xxx.get_log
    Get_Log(rmode IN NUMBER , doc_type IN VARCHAR2 DEFAULT 'TEL', doc_id IN VARCHAR2 DEFAULT NULL,
    doc_num IN VARCHAR2 DEFAULT NULL -- , p_out out varchar2 --
    RETURN varchar2 IS....
    the co
    Serializable paramDocLocatorParamList [] = {paramRMODE, paramDOC_TYPE, paramDOC_ID, paramDOC_NUM, p_out };
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OADBTransaction dbtrans;
    OAViewObject docLocator = (OAViewObject)am.findViewObject("DocLocatorVO1");
    rtxt0.setValue(pageContext, "here it is" + am.invokeMethod("getHTMLString", paramDocLocatorParamList));
    docLocator.executeQuery();
    // am.invokeMethod("getHTMLString", paramDocLocatorParamList);
    the impl
    public String getHTMLString ( String paramRMODE, String paramDOC_TYPE, String paramDOC_ID, String paramDOC_NUM, String p_out )
    System.out.println("Entering The AM Impl");
    CallableStatement st = null;
    OADBTransaction txn = (OADBTransaction)getDBTransaction();
    Connection conn = txn.getJdbcConnection();
    String sql = " BEGIN :5 := test_proc.get_log(:1, :2, :3, :4 ); END; ";
    CallableStatement cs = txn.createCallableStatement(sql,1);
    String ErrorExist = "";
    String getHTML = "";
    try
    cs.setString(1, paramRMODE);
    cs.setString(2, paramDOC_TYPE);
    cs.setString(3, paramDOC_ID);
    cs.setString(4, paramDOC_NUM);
    cs.setString(5,p_out); // --param   
    /* cs.registerOutParameter(1,Types.CHAR);
    cs.registerOutParameter(2,Types.CHAR);
    cs.registerOutParameter(3,Types.CHAR);
    cs.registerOutParameter(4,Types.CHAR);*/
    cs.registerOutParameter(5,Types.CHAR);
    cs.execute();
    getHTML = cs.getString(5 ) ;
    /* System.out.println("getHTML is " + getHTML );
    cs.close();
    // if ( "E".equals(ErrorExist))
    /// throw new OAException ("Payment Request Is Already Cancelled" );
    catch (SQLException sqle)
    try { cs.close(); }
    catch (Exception e) {}
    throw OAException.wrapperException(sqle);
    String doctype = paramDOC_TYPE;
    String docnum = paramDOC_NUM;
    String html ;
    System.out.println( "paramDOC_TYPE in IMPL is " + doctype) ;
    System.out.println( "paramDOC_Numb in IMPL is " + docnum) ;
    return getHTML;

    resolved.....
    public String getHTMLString (String p_out , String rmode, String doc_type, String doc_id, String doc_num )
    System.out.println("");
    System.out.println("Entering The AM Impl");
    // System.out.println("Passing getDocAbbrForHTML in IMPL -------> " +getDocAbbrForHTML     );
    // System.out.println("Passing paramDOC_NUM in IMPL -------> " + paramDOC_NUM );
    System.out.println("Passing getDocAbbrForHTML in IMPL -------> " +doc_type     );
    System.out.println("Passing paramDOC_NUM in IMPL -------> " + doc_num );
    CallableStatement st = null;
    OADBTransaction txn = (OADBTransaction)getDBTransaction();
    Connection conn = txn.getJdbcConnection();
    String sql = " BEGIN :1 := test_proc.get_log(:2, :3, :43, :5 ); END; ";
    CallableStatement cs = txn.createCallableStatement(sql,1);
    String ErrorExist = "";
    String getHTML = "";
    try
    cs.setString(2, rmode);
    cs.setString(3, doc_type);
    cs.setString(4, doc_id);
    cs.setString(5, doc_num);
    cs.registerOutParameter(1,Types.VARCHAR);
    cs.execute();
    getHTML = cs.getString(1 ) ;

  • Error when calling  external  DLL  function.

    When calling a function in Oracle, the error happens
    ORA-28575: '... error RPC connection to external procedures'
    code:
    create or replace library LibFunctions as 'c:\MyDLL.dll';
    grant all PRIVILEGES on LibFunctions to public;
    create or replace
    FUNCTION Max(num1 in number, num2 in number) RETURN number IS
    EXTERNAL LIBRARY LibFunctions
    NAME "Max"
    LANGUAGE C;
    grant all PRIVILEGES on Max to public;
    obs. Dll was created in Pascal.
    What can this error?
    tks,
    Mauricio
    Edited by: user13794390 on 19/01/2011 06:29

    It's been a while since I used extproc. Anyway, it listener.ora make sure extproc is added. I'll assume you are on Unix:
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ENVS = "EXTPROC_DLLS=ANY,LD_LIBRARY_PATH=proper-directory-list")
    (ORACLE_HOME = path-to-oracle-home)
    (PROGRAM = extproc)
    ) SY.

  • ODI error when trying ro reverse engineer-- Please help

    Hi all,
    I am receiving the error below "ImportError: no module named java" when I am attempting reverse engineer from Essbase into the models tab in the ODI Designer.
    I am using ODI version 10.1.3.5
    I have all jar files related to Essbase in drivers folder. And all KMs related to Essbase in impexp folder. I have created CLASSPATH system variable with "D:\OraHome_ODI\oracledi\drivers". Should i need to add this path in PATH system variable?
    What should i do to get this problem solved. Please help.
    Thank you in advance for the help!!
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 1, in ?
    ImportError: no module named java
         at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
         at com.sunopsis.dwg.codeinterpretor.k.a(k.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Thread.java:619)
    Regards,
    Srinivas

    MOS Note 424232.1 says
    Such messages are probably due to either a stale Jython cache (.../scripting/cachedir folder) and / or insufficient access privileges attributed to the Unix user account which has launched either the ODI Agent or Designer GUI and is executing a Jython script and writing to the Jython cache (default value being .../lib/scripting/cachedir/packages folder).
    Alternative workarounds:
    1. Stop all ODI processes and remove the cachedir folder, the restart ODI and retest the process.
    2. Use a different "python.cachedir" information, on which the User has write privileges. This Java property may be set into the Jython Registry and specifies the directory used internally by Jython for cached information about Java packages in ".jar" files. If the directory is relative, it is interpreted relative to the Jython root. For complete information, refer to Jython documentation, at:
    http://www.jython.org/Project/userguide.html#the-jython-registry
    3. Try running Jython once as "root" in order to create the Jython cache directories or take appropriate administrative actions (for example, chmod 777....) to allow the user account to access these files.
    4. Please bear in mind that Unix is case sensitive... As such, do not forget to verify lower/upper case attributes of folder names.
    If the ODI process is run by an Agent and the message is displayed:
    1. Please check the ODI Agent in Topology Manager to determine on which host it is running then proceed to its installation folder and ...:
    2. Verify that Jython is included with the Agent installation folders:
    * In oracledi\bin - jython.sh
    * In oracledi\lib\scripting - jython.jar, cachedir, and lib
    * In oracle\lib\scripting\lib - numerous jython .py files
    3. Also give Unix user account full permissions to every file and folder in the Agent installation and the java installation.
    4. Restart the Agent.
    5. Test the Agent in Topology Manager (ensure that the hostname is correct). If the test is successful, retest the Package/Scenario.
    Thanks,
    Sutirtha

  • Strange error when installing iTunes 10.5, please help (need to update to iOS 5)

    I am running Windows Vista Home Basic (32-Bit)
    I have used iTunes for years, while owning various iPods and an iPhone 3g.
    Today I bought an iPhone 4 and came home looking to immediately update to iOS 5, while installing I got this error:
    After searching around, I decided to uninstall all Apple programs and reinstall starting at iTunes 9.
    I also ran Windows update and everything is up to par.
    I still recieve the same error, please help!

    what was the answer to work around this error message..  i am having the same problem trying to unistall quicktime.. 
    thanks

  • Error when calling a Javascript function loaded as a library

    Hi All,
    I have some javascript functions in a custom js file which is in OA_HTML dir. I have loaded this js library using pageContext.putjavascriptlibrary("ABC","custom.js") in processRequest. When I deploy my code, there is a javascript error in the page. It does not seem to find the javascript function.
    My code in PR is :
    pageContext.putjavascriptlibrary("ABC","custom.js")
    someBean.setOnFocus("javascript: callFunc(this);"); //callFunc(obj) is defined in custom.js
    It works locally when I have my custom.js in myhtml directory. I am getting an error when I deploy the code on to the instance's apps server. Is there something that I am missing?
    Thanks in advance
    Raja

    Raja,
    You can bounce apache , and server cache would be refreshed!I guess then ur updated js function should work. Also,check ur js function works correctly on jdev.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                               

  • Error when calling a DLL function

    Hi,
    I am using external C++ code with labView. One of the DLL functions I use serves to call files. The directory and the name of the file is is passed as a parameter for this function. When the VI is running and arrives at this function (I use the Calling Library Function Node tool), the following message is displayed:
    ERREUR de type class boost::filesystem::filesystem_error.
    boost::filesystem:ath: invalid name "D:\Documents Johan\Johan\Stitching\Fichiers de mesure\front parfait\13z2" in path: "D:\Documents Johan\Johan\Stitching\Fichiers de mesure\front parfait\13z2"
    I do not know why this message is sent to me.
    Thanks for your answer
    JF

    Hello,
    How are you passing the file path to the DLL -- are you passing it as a
    string?  If you are passing at as a string, I would do some basic
    console output to make sure that your DLL is receiving the file path
    corectly as a string and perform your appropriate C++ function in your
    DLL.  If the error is occuring with passing the file path you
    might want to check out the links below for a little more information
    on this.
    http://zone.ni.com/devzone/conceptd.nsf/webmain/7d6a20fe02edbf318625690700704cf3#4
    http://digital.ni.com/public.nsf/websearch/4E9234BA4C7C4ABE86256E3C0074760F?OpenDocument
    http://digital.ni.com/public.nsf/websearch/3B994675B17C654A86256FDD00754DD2?OpenDocument
    Hope this helps,
    Travis M
    NI
    Travis M
    LabVIEW R&D
    National Instruments

  • EJB Errors When Calling SOAP Adapter

    <b>Scenario</b> We are using XML Spy to call a Message Interface exposed through a SOAP Communications Channel. That is, an outbound adapter. We are running XI Version 3.0, SP9 with patches.
    <b>The location is our URL is</b>
    <soap:address location="http://sapxidev:50000/XISOAPAdapter/MessageServlet?channel=:Taxpayer:Sender_SOAP&version=3.0&Sender.Service=Taxpayer&Interface=urn%3Ador.state.fl.us%5ESUTARC_Verification_Sync_Out_MI" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"/>
    The respone is <b>com.sap.aii.af.mp.module.ModuleException</b>
    The server logs indicate three relevant error messages:
    <b>Message 1</b>
    Failed to set up the adapter for channel c67c0ccb7f583d7693678bb1288644ff;
    caused by java.lang.Exception: Bubble configuration error: parameter 'XI.InterfaceNamespace' is missing
    <b>Message 2</b>
    the required parameter XI.InterfaceNamespace is missing
    <b>Message 3</b>
    Path to object does not exist at localejbs, the whole lookup name is ejbContexts/sap.com/com.sap.aii.af.app/ModuleProcessorBean/localejbs/sap.com/com.sap.aii.af.soapadapter/XISOAPAdapterBean.
    Any ideas?
    Thanks in advance!

    HI Paul,
    did you put a default namespace and interface name in the SOAP Adapter config of the communication channel in the IB?
    It is under the Default XI Parameter in the SOAP Adapter.
    That should solve this problem, don´t ask me why it says Default if is is mandatory.
    Cheers
    Stefan

  • Always getting syntax error when using RANK formula. Please help!!

    i am desperate! tried EVERYTHING. so as a last try, I tested the very same Example that Apple gives to elaborate how the "RANK" formula works...and you guessed it....NOT WORKING.
    not even a reconstruction 1 to 1 of the apple example worked, giving me a syntax error.
    thus i am assuming that i am doing something wrong on a very basic level i would have never thought of (maybe a setting i have wrong?, maybe if you have blue as background formulas don't work?).
    i would be sooooo grateful for any help!!!

    Thank you very much for answering this quickly.
    but unfortunately it doesnt work
    i made some screenshots, maybe this way someone sees a maybe obvious mistake i am making
    and
    Message was edited by: Apolloss

  • Error when syncing Ipod Touch. Please help.

    Ive got a problem with my iPod Touch. I was installing applications when it just shutdown. Whenever i turn it on the apple icon comes up as usual but then stays on that icon until the iPod runs out of battery. I plug it in and it charges but as soon as i turn it on it does the same things. What should i do?

    Let the charge run down to 10%, then let it charge to 100%; that's to correct your battery percentages. Now, charge fully from an external charger, if you have one. If you only charge through your USB port, don't let the charge go on all night; this actually saps your battery in the long run.
    If you still have a problem, reset your Touch.
    If you're still having problems, you might want to visit your local Apple Store/Genius Bar and have the techies take a look at your unit.
    < Edited by Host >

  • Following Errors when installing premier pro cc - please help?

    ERROR: DF012: Unable to find file(Seq 52)
    ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\MyriadPro-Regular.otf" Error 32 The process cannot access the file because it is being used by another process.(Seq 52)

    Best option would be either what Mylenium has suggested or simply shut down the machine and power it up again. Post this try the installation and suggest.

  • Syncing error when trying to add songs, please help.

    My ipod nano has suddenly stopped letting me add music to it from itunes and just says that it is unable to sync. Is there a way to fix this without resetting and deleting all of my music? And it is not due to a lack of space since I still have 1.32G left.

    Hi
    This is exactly what has happened to both our iPod nano's recently, one older model and one new one. Very annoying, I have restored them both and synced them again but get the same error 13019 message.
    Both iPods are pretty new and out iMac is only 4 months old.
    This has basically rendered them useless, surely they are not meant to be that disposable?
    Have looked at the above suggestion which to a feeble minded person like me seems a complicated way of possibly fixing something which to my mind is a fault?

  • Question: Application error when using SOAP sender

    Hi,
    I got the following error when calling SOAP sender:
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="UNKNOWN">APPLICATION_ERROR</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>application fault</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="http://xml.apache.org/axis/">hostname</SAP:ApplicationFaultMessage>
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    The return message is:
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
      <ns2:hostname xmlns:ns2="http://xml.apache.org/axis/">gdcn-admin</ns2:hostname>
    From the runtime monitor, it shows:
    SOAP: response message contains an error Application/UNKNOWN/APPLICATION_ERROR - application fault
    Actually I maintained the host name in file hosts. And with XMLSpy, I can directly connect the Webservice successfully, but with XI, it stops me at this point. It seems the connection has been established, because if the WebService is stopped, I will get error HTTP 0 Null, If it's started, I get the above problem.
    Could you please provide the hints.
    Thanks a lot!
    Best Regards
    Yuedong

    Hi,
    I found the problem:
    It's because of the wrong format of message. the message is created with a WSDL file generated by external development system, but it's not correctly explained by XI. I manually created the messge (request & response), then it worked.
    Actually the error has nothing to do with hostname. it means the host returns application error (but unfortunately there is no detailed information).
    Thanks a lot for your kindly help!
    Best Regards
    Yuedong
    By the way, how can I reward the point?
    Message was edited by: Yuedong Chen

  • Error when trying to launch iTunes! Help!

    Hi!
    I've tried to seek through the forums to find someone with the same error, but i haven't found anyone.
    Here's the problem:
    When i try to launch iTunes I get a Windows Error saying that iTunes har encountered a problem and has to quit. It's that kind of error where you can send an error-report. And when I try to restart Windows, I get the same error when I log on. Please help! I've tried to reintall and repair iTunes, but it won't help.
    iPod Mini   Windows XP Pro   Sygate Personal Firewall Pro, F-Secure Antivirus 06

    hi
    I had this same problem for ages and tried all sorts
    of things. I think the problem was Quicktime
    actually, but what eventually worked was:-
    Uninstall itunes, then reboot. Close the Quicktime
    program tray icon (lower right corner of taskbar) and
    uninstall Quicktime. Then install the standalone of
    Quicktime before installing itunes again.
    Hope this helps.
    Thanks!
    I'll try it out! Havent't thought of that.
    Will come back to say if it worked.

Maybe you are looking for

  • OIM 9.1.0.2: Remove user assigned to a task in Provisioning Process

    I have read Note: Ability to Have Multiple Approvers Per Resource Object in OIM [ID 429999.1], and executed each steps described in it. But when grant these resource object to some user. First the request was not sended directly to a approval process

  • Run Time error while activating the cube 0pp_c03

    Hi All, I encountered this error while activating the info cube 0pp_c03   An exception occurred which is explained in detail below.   The exception, which is assigned to class 'CX_RSR_X_MESSAGE', was not caught   and   therefore caused a runtime erro

  • Is there a way to map videos in a 3D environment?

    Sorry, this is kinda hard to explain.  Is it possible to have the area in which you put clips be a 3D environment.  For example, could I put several clips around eachother in the shape of a sphere and scroll the camera around the sphere?  If this is

  • I have a Macbook and was wondering if I get an iPad am I able to use the same e-mail, user name as on my macbook

    We have to get another Macbook or iPad for our household... What I am wondering about is, with all my information on my Macbook is it possible to use the same info on my new iPod or do I have to start fresh... I already have paid for a years subscrip

  • Selecting TV Shows in iTunes

    Something odd is happening in my iTunes! I took advantage of the 12 Days of Christmas offer and downloaded Season 1 The Rock and House. I also downloaded Top Gear Special and The Trip. Now, all I want to do is have The Trip on my iPhone 4. So, I clic