Host undefined

Hello,
I use Acrobat 3D.
I have added a script to a 3D Model.
But I have the following error "host is undefined".
The code is extracted from an Acrobat Tutorial "Basic interaction"
//This tells Acrobat to disable the default 3D object selection behaviour.
runtime.overrideSelection = true;
//This will be called when a MouseUp event fires
var myMouseHandlingFunction = function( event )
if ( event.isMouseUp )
var clickedMesh = null;
//The Hits array actually contains every object that is intersected by
//a ray from the Camera in the direction of the mouse click.
//We want the first one; the one closest to the camera.
if(event.hits.length > 0)
clickedMesh = event.hits[0].target;
if(clickedMesh != null)
//console.println(clickedMesh.name);
host.getField("SelectedMesh").value = clickedMesh.name;
else
host.getField("SelectedMesh").value = "";
//console.println("Unknowned");
//Create the Mouse event handler and set it up to capture mouse up events only
var mouseEventHandler = new MouseEventHandler();
mouseEventHandler.onMouseDown = false;
mouseEventHandler.onMouseMove = false;
mouseEventHandler.onMouseUp = true;
// Note: not a function call, but a reference to a function
mouseEventHandler.onEvent = myMouseHandlingFunction;
runtime.addEventHandler( mouseEventHandler );
Can you help me?
Kind regards
David

I believe it is hostContainer, not host...
Leonard

Similar Messages

  • SOAP Fault Exception [Actor null]

    Hi All,
    Im trying to call a webservice from portal This web service is in ECC. When I try to call it, it throws the following error:
    #1.5 #00E0ED0BA5EF005C000000C500001E350004532D85C22E36#1217354889571#com.sap.portal.SOAPLogger#sap.com/irj#com.sap.portal.SOAPLogger#TESTUSER#9868##n/a##4b8f60d05d9911dda9db00e0ed0ba5ef#SAPEngine_Application_Thread[impl:3]_4##0#0#Warning#1#/System/Server#Java###Call failed
    [EXCEPTION]
    {0}#1#SOAP Fault Exception [Actor null] : CX_ST_MATCH_ELEMENT:XSLT exception.System expected element 'ItItem'
    <Host>undefined</Host>
    <Component>APPL</Component>
    <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>CX_ST_MATCH_ELEMENT:XSLT exception.System expected element &apos;ItItem&apos;</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_SXMLP</Exception_Name>
      <Exception_Text>XSLT exception</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_ST_MATCH_ELEMENT</Exception_Name>
      <Exception_Text>System expected element &apos;ItItem&apos;: Main Program:/1BCDWB/WSSC9FCD3336732797F332| Program:/1BCDWB/WSSC9FCD3336732797F332| Line: 11| Valid:X</Exception_Text>
    </ChainedException>
    #1.5 #00E0ED0BA5EF005C000000C700001E350004532D85C23109#1217354889572#System.err#sap.com/irj#System.err#BHARDWS#9868##n/a##4b8f60d05d9911dda9db00e0ed0ba5ef#SAPEngine_Application_Thread[impl:3]_4##0#0#Error##Plain###SOAP Fault Exception [Actor null] : CX_ST_MATCH_ELEMENT:XSLT exception.System expected element 'ItItem'
    <Host>undefined</Host>
    <Component>APPL</Component>
    <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>CX_ST_MATCH_ELEMENT:XSLT exception.System expected element &apos;ItItem&apos;</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_SXMLP</Exception_Name>
      <Exception_Text>XSLT exception</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_ST_MATCH_ELEMENT</Exception_Name>
      <Exception_Text>System expected element &apos;ItItem&apos;: Main Program:/1BCDWB/WSSC9FCD3336732797F332| Program:/1BCDWB/WSSC9FCD3336732797F332| Line: 11| Valid:X</Exception_Text>
    </ChainedException>
    #1.5 #00E0ED0BA5EF005C000000C800001E350004532D85C231DF#1217354889572#System.err#sap.com/irj#System.err#BHARDWS#9868##n/a##4b8f60d05d9911dda9db00e0ed0ba5ef#SAPEngine_Application_Thread[impl:3]_4##0#0#Error##Plain###We are in Exception and got the message778: SOAP Fault Error (n.a) : CX_ST_MATCH_ELEMENT:XSLT exception.System expected element 'ItItem'#
    Has anyone come across this? Please help by giving directions on how to fix this.
    Thanks
    SB

    Hi Alex,
    Please ignore the above bapi call, it is too complex since it is a custom BAPI that Im trying to call. For now, I am trying to call a very simple BAPI --> BAPI_CUSTOMER_GETDETAIL just to make sure that communication is happening.
    Here is the WSDL:
      <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions targetNamespace="urn:sap-com:document:sap:rfc:functions" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="urn:sap-com:document:sap:rfc:functions">
    - <wsdl:documentation>
      <sidl:sidl xmlns:sidl="http://www.sap.com/2007/03/sidl" />
      </wsdl:documentation>
    - <wsdl:types>
    - <xsd:schema attributeFormDefault="qualified" targetNamespace="urn:sap-com:document:sap:rfc:functions">
    - <xsd:simpleType name="char1">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="1" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char10">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="10" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char130">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="130" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char16">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="16" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char2">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="2" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char20">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="20" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char220">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="220" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char3">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="3" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char30">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="30" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char31">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="31" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char32">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="32" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char35">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="35" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char4">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="4" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char5">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="5" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="char50">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="50" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="cuky5">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="5" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="date">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="10" />
      <xsd:pattern value="\d\d\d\d-\d\d-\d\d" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="lang">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="1" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="numeric3">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="3" />
      <xsd:pattern value="\d*" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:simpleType name="numeric6">
    - <xsd:restriction base="xsd:string">
      <xsd:maxLength value="6" />
      <xsd:pattern value="\d*" />
      </xsd:restriction>
      </xsd:simpleType>
    - <xsd:complexType name="BAPIRET2">
    - <xsd:sequence>
      <xsd:element name="TYPE" type="tns:char1" />
      <xsd:element name="ID" type="tns:char20" />
      <xsd:element name="NUMBER" type="tns:numeric3" />
      <xsd:element name="MESSAGE" type="tns:char220" />
      <xsd:element name="LOG_NO" type="tns:char20" />
      <xsd:element name="LOG_MSG_NO" type="tns:numeric6" />
      <xsd:element name="MESSAGE_V1" type="tns:char50" />
      <xsd:element name="MESSAGE_V2" type="tns:char50" />
      <xsd:element name="MESSAGE_V3" type="tns:char50" />
      <xsd:element name="MESSAGE_V4" type="tns:char50" />
      <xsd:element name="PARAMETER" type="tns:char32" />
      <xsd:element name="ROW" type="xsd:int" />
      <xsd:element name="FIELD" type="tns:char30" />
      <xsd:element name="SYSTEM" type="tns:char10" />
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="BAPIKNA101">
    - <xsd:sequence>
      <xsd:element name="FORM_OF_AD" type="tns:char30" />
      <xsd:element name="FIRST_NAME" type="tns:char35" />
      <xsd:element name="NAME" type="tns:char35" />
      <xsd:element name="NAME_3" type="tns:char35" />
      <xsd:element name="NAME_4" type="tns:char35" />
      <xsd:element name="DATE_BIRTH" type="tns:date" />
      <xsd:element name="STREET" type="tns:char35" />
      <xsd:element name="POSTL_CODE" type="tns:char10" />
      <xsd:element name="CITY" type="tns:char35" />
      <xsd:element name="REGION" type="tns:char3" />
      <xsd:element name="COUNTRY" type="tns:char3" />
      <xsd:element name="COUNTRNISO" type="tns:char3" />
      <xsd:element name="COUNTRAISO" type="tns:char3" />
      <xsd:element name="INTERNET" type="tns:char130" />
      <xsd:element name="FAX_NUMBER" type="tns:char31" />
      <xsd:element name="TELEPHONE" type="tns:char16" />
      <xsd:element name="TELEPHONE2" type="tns:char16" />
      <xsd:element name="LANGU" type="tns:lang" />
      <xsd:element name="LANGU_ISO" type="tns:char2" />
      <xsd:element name="CURRENCY" type="tns:cuky5" />
      <xsd:element name="CURRENCY_ISO" type="tns:char3" />
      <xsd:element name="COUNTRYISO" type="tns:char2" />
      <xsd:element name="ONLY_CHANGE_COMADDRESS" type="tns:char1" />
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:complexType name="BAPIRETURN">
    - <xsd:sequence>
      <xsd:element name="TYPE" type="tns:char1" />
      <xsd:element name="CODE" type="tns:char5" />
      <xsd:element name="MESSAGE" type="tns:char220" />
      <xsd:element name="LOG_NO" type="tns:char20" />
      <xsd:element name="LOG_MSG_NO" type="tns:numeric6" />
      <xsd:element name="MESSAGE_V1" type="tns:char50" />
      <xsd:element name="MESSAGE_V2" type="tns:char50" />
      <xsd:element name="MESSAGE_V3" type="tns:char50" />
      <xsd:element name="MESSAGE_V4" type="tns:char50" />
      </xsd:sequence>
      </xsd:complexType>
    - <xsd:element name="BAPI_TRANSACTION_COMMIT">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="WAIT" type="tns:char1" minOccurs="0" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="BAPI_TRANSACTION_COMMITResponse">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="RETURN" type="tns:BAPIRET2" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="BAPI_CUSTOMER_GETDETAIL">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="CUSTOMERNO" type="tns:char10" />
      <xsd:element name="PI_DISTR_CHAN" type="tns:char2" minOccurs="0" />
      <xsd:element name="PI_DIVISION" type="tns:char2" minOccurs="0" />
      <xsd:element name="PI_PASS_BUFFER" type="tns:char1" minOccurs="0" />
      <xsd:element name="PI_SALESORG" type="tns:char4" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
    - <xsd:element name="BAPI_CUSTOMER_GETDETAILResponse">
    - <xsd:complexType>
    - <xsd:sequence>
      <xsd:element name="PE_ADDRESS" type="tns:BAPIKNA101" />
      <xsd:element name="RETURN" type="tns:BAPIRETURN" />
      </xsd:sequence>
      </xsd:complexType>
      </xsd:element>
      </xsd:schema>
      </wsdl:types>
    - <wsdl:message name="BAPI_TRANSACTION_COMMIT">
      <wsdl:part name="parameters" element="tns:BAPI_TRANSACTION_COMMIT" />
      </wsdl:message>
    - <wsdl:message name="BAPI_TRANSACTION_COMMITResponse">
      <wsdl:part name="parameter" element="tns:BAPI_TRANSACTION_COMMITResponse" />
      </wsdl:message>
    - <wsdl:message name="BAPI_CUSTOMER_GETDETAIL">
      <wsdl:part name="parameters" element="tns:BAPI_CUSTOMER_GETDETAIL" />
      </wsdl:message>
    - <wsdl:message name="BAPI_CUSTOMER_GETDETAILResponse">
      <wsdl:part name="parameter" element="tns:BAPI_CUSTOMER_GETDETAILResponse" />
      </wsdl:message>
    - <wsdl:portType name="YCUST">
    - <wsdl:operation name="BAPI_TRANSACTION_COMMIT">
      <wsdl:input message="tns:BAPI_TRANSACTION_COMMIT" />
      <wsdl:output message="tns:BAPI_TRANSACTION_COMMITResponse" />
      </wsdl:operation>
    - <wsdl:operation name="BAPI_CUSTOMER_GETDETAIL">
      <wsdl:input message="tns:BAPI_CUSTOMER_GETDETAIL" />
      <wsdl:output message="tns:BAPI_CUSTOMER_GETDETAILResponse" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="YCUST" type="tns:YCUST">
      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    - <wsdl:operation name="BAPI_TRANSACTION_COMMIT">
      <soap:operation soapAction="" style="document" />
    - <wsdl:input>
      <soap:body use="literal" />
      </wsdl:input>
    - <wsdl:output>
      <soap:body use="literal" />
      </wsdl:output>
      </wsdl:operation>
    - <wsdl:operation name="BAPI_CUSTOMER_GETDETAIL">
      <soap:operation soapAction="" style="document" />
    - <wsdl:input>
      <soap:body use="literal" />
      </wsdl:input>
    - <wsdl:output>
      <soap:body use="literal" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="service">
    - <wsdl:port name="YCUST" binding="tns:YCUST">
      <soap:address location="http://myportal:8040/sap/bc/srt/rfc/sap/ycust/040/ycust/ycust" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>
    As you will see below in my portal component, Im populating the four fields that it requires:
    public class WS_ECC_Service extends PageProcessorComponent {
      public DynPage getPage(){
        return new WS_ECC_ServiceDynPage();
      public static class WS_ECC_ServiceDynPage extends JSPDynPage{
         protected IPortalComponentRequest request;
               protected IPortalComponentResponse response;
               protected IPortalComponentSession session;
               protected IPortalComponentContext context;
               protected IPortalComponentProfile profile;
               protected String userId;
         //      protected IUser epUser;
               protected String sapSystem;
               protected String fileName;
               private DAO DAO = null;
         //      private FileUploadUtility FIU = null;
         //      private ReadExcelData RED = null;
               private final static int SUCCESS_STATE = 0;   
               private final static int INITIAL_STATE = 1;
               private final static int ERROR_STATE = 2; 
               private int state = INITIAL_STATE;
        public void doInitialization(){
          this.communicate();
          // fill your bean with data here...
         public void communicate()throws IllegalArgumentException{     
                                  try{                  
                                          IPortalRuntimeResources runtimeResources = PortalRuntime.getRuntimeResources();
                                       IYBAPI_Service myService = (IYBAPI_Service)runtimeResources.getService(IYBAPI_Service.KEY);
                                                         System.err.println("b4 passing object to service Anurag-"+IYBAPI_Service.KEY);
                                       com.ybapi.BAPI_CUSTOMER_GETDETAIL param = new com.ybapi.BAPI_CUSTOMER_GETDETAIL();
                                       com.ybapi.BAPI_CUSTOMER_GETDETAILResponse result1 = new com.ybapi.BAPI_CUSTOMER_GETDETAILResponse();
                                       com.ybapi.Char10 custno = new com.ybapi.Char10();
                                       custno.setValue("0000009702");                 
                                       param.setCUSTOMERNO(custno);
                                       com.ybapi.Char2 distr = new com.ybapi.Char2();
                                       distr.setValue("12");                 
                                       param.setPI_DISTR_CHAN(distr);
                                       param.setPI_DIVISION(distr);
                                       com.ybapi.Char1 buff = new com.ybapi.Char1();
                                       buff.setValue("w");                 
                                       param.setPI_PASS_BUFFER(buff);
                                       com.ybapi.Char4 sorg = new com.ybapi.Char4();
                                       sorg.setValue("0001");                 
                                       param.setPI_SALESORG(sorg);
                                       result1 = myService.BAPI_CUSTOMER_GETDETAIL(param);
                                    System.err.println("message message dear message : - " + result1.getPE_ADDRESS().getNAME());
                                  }catch (IllegalArgumentException ex){
                                  System.err.println("Getting details2 " + ex.getMessage());
                                  }catch (Exception e) {
                                  e.printStackTrace();
                                  System.err.println("We are in Exception and got the message778: " + e.getMessage());
                                  }//end try catch
        public void doProcessAfterInput() throws PageException {
        public void doProcessBeforeOutput() throws PageException {
          this.setJspName("uploadutility.jsp");
    and this is what it is throwing the error, exactly the same that I got in my above post which I asked you to ignore.
    #1.5 #00E0ED0BA5EF006E0000015A00001E350004533EB66A08B6#1217428720322#com.sap.portal.SOAPLogger#sap.com/irj#com.sap.portal.SOAPLogger#BHARDWS#17255##n/a##2aaa48605e4511ddbbf300e0ed0ba5ef#SAPEngine_Application_Thread[impl:3]_2##0#0#Warning#1#/System/Server#Java###Call failed
    [EXCEPTION]
    {0}#1#SOAP Fault Exception [Actor null] : CX_ST_MATCH_ELEMENT:XSLT exception.System expected element 'CUSTOMERNO'
    <Host>undefined</Host>
    <Component>APPL</Component>
    <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>CX_ST_MATCH_ELEMENT:XSLT exception.System expected element &apos;CUSTOMERNO&apos;</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_SXMLP</Exception_Name>
      <Exception_Text>XSLT exception</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_ST_MATCH_ELEMENT</Exception_Name>
      <Exception_Text>System expected element &apos;CUSTOMERNO&apos;: Main Program:/1BCDWB/WSSB675FB6DBC9770445BC| Program:/1BCDWB/WSSB675FB6DBC9770445BC| Line: 19| Valid:X</Exception_Text>
    </ChainedException>
    #1.5 #00E0ED0BA5EF006E0000015C00001E350004533EB66A09BD#1217428720322#System.err#sap.com/irj#System.err#BHARDWS#17255##n/a##2aaa48605e4511ddbbf300e0ed0ba5ef#SAPEngine_Application_Thread[impl:3]_2##0#0#Error##Plain###$$$$$$$$$$$$$exex-SOAP Fault Error (n.a) : CX_ST_MATCH_ELEMENT:XSLT exception.System expected element 'CUSTOMERNO'#
    #1.5 #00E0ED0BA5EF006E0000015D00001E350004533EB66A0B44#1217428720323#System.err#sap.com/irj#System.err#BHARDWS#17255##n/a##2aaa48605e4511ddbbf300e0ed0ba5ef#SAPEngine_Application_Thread[impl:3]_2##0#0#Error##Plain###SOAP Fault Exception [Actor null] : CX_ST_MATCH_ELEMENT:XSLT exception.System expected element 'CUSTOMERNO'
    <Host>undefined</Host>
    <Component>APPL</Component>
    <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>CX_ST_MATCH_ELEMENT:XSLT exception.System expected element &apos;CUSTOMERNO&apos;</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_SXMLP</Exception_Name>
      <Exception_Text>XSLT exception</Exception_Text>
    </ChainedException>
    <ChainedException>
      <Exception_Name>CX_ST_MATCH_ELEMENT</Exception_Name>
      <Exception_Text>System expected element &apos;CUSTOMERNO&apos;: Main Program:/1BCDWB/WSSB675FB6DBC9770445BC| Program:/1BCDWB/WSSB675FB6DBC9770445BC| Line: 19| Valid:X</Exception_Text>
    </ChainedException>
    #1.5 #00E0ED0BA5EF006E0000015E00001E350004533EB66A0B93#1217428720323#System.err#sap.com/irj#System.err#TESTUSER#17255##n/a##2aaa48605e4511ddbbf300e0ed0ba5ef#SAPEngine_Application_Thread[impl:3]_2##0#0#Error##Plain###We are in Exception and got the message778: SOAP Fault Error (n.a) : CX_ST_MATCH_ELEMENT:XSLT exception.System expected element 'CUSTOMERNO'#

  • Logon Error when Using soap Web Service

    Hi,
      I'm trying to determine why I'm getting the following error message when I submit a Web Service from our Custom Application to SAP.  This error is occurring in SAP ECC 6.0 SPS16 (Quality Client) and we do not have the JAVA Stack installed.  Our currently Production Installation is SAP ECC 6.0 SPS4 it works with out issues, however the Upgrade to SPS16 has produced alot of differences in web services.
    Also note that this service has been tested succesfully using soapUI Version 2.51. and Version 3.5.1 without producing this error.
    The user that is being utilized in all tests is an Internet User only.  I would also like to know if there is away to trace Internet User authorizatiion issues.
    Any help that can be provide is highly appreciated.
    Error Message:
    Logon failed
    What has happened?
    Call of URL http://bagqs1p1.rac.ray.com:1080/sap/bc/srt/rfc/sap/zwd_material_create/200/zwd_material_create/zwd_material_create
    terminated due to error in logon data.
    Note
    Logon performed in system AGQ.
    Logon performed for client 200, user , and language EN.
    What can I do?
    Check that you have entered the client, user, and password correctly.
    If you do not yet have a user ID, contact your system administrator.
    Error Code: ICF-LE-http-c:200-l:E-T:1-C:5-U:84-P:54-L:5
    HTTP 401 - Unauthorized
    Your SAP Internet Communication Framework Team
    Sincerely,
       Cris Anderson

    All of the web services were created in SOAManager if that is what you mean by setting them up in SAP PI.
    I'm guessing that the HTTP Code 200: OK means they are working correctly.
    - <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
      <soap-env:Header />
    - <soap-env:Body>
    - <soap-env:Fault>
      <faultcode>soap-env:Server</faultcode>
      <faultstring xml:lang="en">SRT: Wrong Content-Type and empty HTTP-Body received: ("HTTP Code 200 : OK")</faultstring>
    - <detail>
    - <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
      <Host>undefined</Host>
      <Component>COREMSG</Component>
    - <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>SRT: Wrong Content-Type and empty HTTP-Body received: ("HTTP Code 200 : OK")</Exception_Text>
      </ChainedException>
      </ns:SystemFault>
    - <ns:SystemFault xmlns:ns="http://www.sap.com/webas/711/soap/runtime/abap/fault/system/">
      <Host>undefined</Host>
      <Component>COREMSG</Component>
    - <ChainedException asx:root="asx:abap" version="1.0" xmlns:asx="http://www.sap.com/abapxml">
    - <asx:values>
      <EXCEPTION href="#o176" />
      </asx:values>
    - <asx:heap xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:abap="http://www.sap.com/abapxml/types/built-in" xmlns:cls="http://www.sap.com/abapxml/classes/global" xmlns:dic="http://www.sap.com/abapxml/types/dictionary">
    - <cls:CX_SOAP_CORE id="o176">
    - <CX_ROOT>
      <TEXTID>0018FE864EEE1DECA69CF9C71ACB337F</TEXTID>
      <PREVIOUS />
      <KERNEL_ERRID />
    - <INTERNAL_SOURCE_POS>
      <PROGID>98</PROGID>
      <CONTID>1113</CONTID>
      </INTERNAL_SOURCE_POS>
      </CX_ROOT>
      <CX_NO_CHECK />
    - <CX_SOAP_CORE>
    - <E_LOCATION>
      <CLASS>CL_SOAP_HTTP_TPBND_ROOT</CLASS>
      <METHOD>get_http_headers</METHOD>
      <ID>3</ID>
      </E_LOCATION>
      <E_TEXT>SRT: Wrong Content-Type and empty HTTP-Body received: ("HTTP Code 200 : OK")</E_TEXT>
      <E_ID>1032</E_ID>
      <E_FAULT_LOCATION>1</E_FAULT_LOCATION>
      <E_AREA>COREMSG</E_AREA>
      <E_HOST>0</E_HOST>
      <E_PROCESS_CONTROL />
      </CX_SOAP_CORE>
      </cls:CX_SOAP_CORE>
      </asx:heap>
      </ChainedException>
      </ns:SystemFault>
      </detail>
      </soap-env:Fault>
      </soap-env:Body>
      </soap-env:Envelope>

  • Testing a Web Service

    Hi Experts,
    I'm new to publishing Web Services. To create my first WS, I followed help step by step from http://help.sap.com/saphelp_nw2004s/helpdata/en/68/0464407b9b990ae10000000a155106/frameset.htm.
    After I created a service definition, when I tried to test the service through SOA MANAGER, I received the following error.
    Cannot download WSDL from http://****/sap/bc/srt/wsdl/sdef_Z_WS_TEST_3/wsdl11/ws_policy/document?sap-client=200: WSDL 'portType' can not have child 'wsp:Policy' of namespace 'http://schemas.xmlsoap.org/ws/2004/09/policy' !
    It seems that the namespace 'http://schemas.xmlsoap.org/ws/2004/09/policy' defined in WSDL is not proper.  However, I just don't understand how the WSDL generated by Service Wizard could be wrong.
    Any idea where the namespace comes form? Any way to modify the namespace?
    The following is the beginning part of my WSDL:
    <?xml version="1.0" encoding="utf-8"?>
    <wsdl:definitions targetNamespace="urn:sap-com:document:sap:soap:functions:mc-style" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:tns="urn:sap-com:document:sap:soap:functions:mc-style" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:n1="urn:sap-com:document:sap:rfc:functions">
    <wsdl:documentation>
    <sidl:sidl xmlns:sidl="http://www.sap.com/2007/03/sidl"/></wsdl:documentation>
    <wsp:UsingPolicy wsdl:required="true"/>
    <wsp:Policy wsu:Id="IF_Z_WS_TEST_3">
    <sapsession:Session xmlns:sapsession="http://www.sap.com/webas/630/soap/features/session/">
    <sapsession:enableSession>false</sapsession:enableSession></sapsession:Session>
    <wsp:ExactlyOne xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:sapsp="http://www.sap.com/webas/630/soap/features/security/policy" xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702" xmlns:wsa="http://www.w3.org/2005/08/addressing" xmlns:wsu="http://schemas.xmlsoap.org/ws/2002/07/utility"/>
    </wsp:Policy>
    Thanks for your help in advace,
    Kay

    Hello All,
    we have the same problem and it still exist.
    When using the wsnavigator (called via soamanager)  to check the web service we recieve the following error message:
    Cannot download WSDL from http://<server>:8000/sap/bc/srt/wsdl/bndg_47F2E4CDC8E62B2CE1000000C0A8C9A2/wsdl11/allinone/ws_policy/document?sap-client=000: WSDL 'portType' can not have child 'wsp:Policy' of namespace 'http://schemas.xmlsoap.org/ws/2004/09/policy' !
    If i open the link directly in the browser i get the wsdl.
    The test of the SICF Service seems to be ok: (only the information about the empty http-body)
    http://<server>:8000/sap/bc/srt/rfc/sap/ytest5/000/ytest5/ytest5?sap-client=000
    soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
      <soap-env:Header />
    - <soap-env:Body>
    - <soap-env:Fault>
      <faultcode>soap-env:Server</faultcode>
      <faultstring xml:lang="en">SRT: Wrong Content-Type and empty HTTP-Body received</faultstring>
    - <detail>
    - <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
      <Host>undefined</Host>
      <Component>COREMSG</Component>
    - <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>SRT: Wrong Content-Type and empty HTTP-Body received</Exception_Text>
      </ChainedException>
      </ns:SystemFault>
      </detail>
      </soap-env:Fault>
      </soap-env:Body>
      </soap-env:Envelope>
    How can we check the service? What is wrong?
    The linked BLOG does`nt give a solution.
    Thanks a lot.
    Steffen

  • HTTP/1.1 500 Internal Server Error

    I have created a service on our ECC Dev system, however, I'm having problems calling it. I am passing in the following:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ukms="http://det.nsw.edu.au/FI/COMMON/UKMS">
       <soapenv:Header/>
       <soapenv:Body>
          <ukms:LookupValues>
             <!--1 or more repetitions:-->
             <Values>
                <SourceScheme>F0401.A6AN8</SourceScheme>
                <SourceAgency>JDE.VENDOR</SourceAgency>
                <SourceValue>1001</SourceValue>
                <TargetScheme>LFA1.LIFNR</TargetScheme>
                <TargetAgency>SAP.VENDOR</TargetAgency>
                <!--Optional:-->
                <TargetValue>?</TargetValue>
             </Values>
          </ukms:LookupValues>
       </soapenv:Body>
    </soapenv:Envelope>
    And getting the following response:
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
       <soap-env:Header/>
       <soap-env:Body>
          <soap-env:Fault>
             <faultcode>soap-env:Server</faultcode>
             <faultstring xml:lang="en">CX_ST_MATCH_ELEMENT:XSLT exception.System expected end of element '{http://det.nsw.edu.au/FI/COMMON/UKMS}LookupValues'</faultstring>
             <detail>
                 ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
                   <Host>undefined</Host>
                   <Component>APPL</Component>
                   <ChainedException>
                      <Exception_Name>CX_SOAP_CORE</Exception_Name>
                      <Exception_Text>CX_ST_MATCH_ELEMENT:XSLT exception.System expected end of element '{http://det.nsw.edu.au/FI/COMMON/UKMS}LookupValues'</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_SXMLP</Exception_Name>
                      <Exception_Text>XSLT exception</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_ST_MATCH_ELEMENT</Exception_Name>
                      <Exception_Text>System expected end of element '{http://det.nsw.edu.au/FI/COMMON/UKMS}LookupValues': Main Program:/1SAI/TXS2D61C2F956CD2F49B6C2| Program:/1SAI/TXS2D61C2F956CD2F49B6C2| Line:187| Valid:X</Exception_Text>
                   </ChainedException>
                </ns:SystemFault
             </detail>
          </soap-env:Fault>
       </soap-env:Body>
    </soap-env:Envelope>

    Hey guys,
    It's been a while since I last replied but this issue was temporarily put on hold.
    I've tried everything that has been suggested without any luck.
    Is there something Im missing?
    I must admit, we started to get this problem following the upgrade to our ECC Dev system. The same service on our ECC test system works fine.
    Here is a quick comparison of the main components on our two systems:
    ECC DEV:
    SAP_ABA     701     6     SAPKA70106     Cross-Application Component
    SAP_BASIS     701     6     SAPKB70106     SAP Basis Component
    PI_BASIS     701     6     SAPK-70106INPIBASIS     Basis Plug-In
    ST-PI     2008_1_700     2     SAPKITLRD2     SAP Solution Tools Plug-In
    SAP_BS_FND     701     6     SAPK-70106INSAPBSFND     SAP Business Suite Foundation
    SAP_BW     701     6     SAPKW70106     SAP Business Warehouse
    SAP_AP     700     19     SAPKNA7019     SAP Application Platform
    WEBCUIF     700     6     SAPK-70006INWEBCUIF     SAP WEBCUIF 700
    SAP_APPL     604     6     SAPKH60406     Logistics and Accounting
    SAP_HR     604     21     SAPKE60421     Human Resources
    ECC TEST
    SAP_ABA     701     3     SAPKA70103     Cross-Application Component
    SAP_BASIS     701     3     SAPKB70103     SAP Basis Component
    PI_BASIS     701     3     SAPK-70103INPIBASIS     Basis Plug-In
    ST-PI     2008_1_700     0          -     SAP Solution Tools Plug-In
    SAP_BS_FND     701     2     SAPK-70102INSAPBSFND     SAP Business Suite Foundation
    SAP_BW     701     3     SAPKW70103     SAP Business Warehouse
    SAP_AP     700     15     SAPKNA7015     SAP Application Platform
    WEBCUIF     700     2     SAPK-70002INWEBCUIF     SAP WEBCUIF 700
    SAP_APPL     604     2     SAPKH60402     Logistics and Accounting
    SAP_HR     604     5     SAPKE60405     Human Resources
    Thanks,
    Krishneel

  • Webservice error......

    Hi,
    I am getting the below error when i am calling webservice from SOAP UI client, i have authorization of SAP_ALL and SAP_NEW.
    Your help would be appreciated.
    Thanks in advance.
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
       <soap-env:Header/>
       <soap-env:Body>
          <soap-env:Fault>
             <faultcode>soap-env:Server</faultcode>
             <faultstring xml:lang="en">CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSS0060807205412435000.Value  is not a valid date in accord with the XML format for ABAP</faultstring>
             <detail>
                <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
                   <Host>undefined</Host>
                   <Component>APPL</Component>
                   <ChainedException>
                      <Exception_Name>CX_SOAP_CORE</Exception_Name>
                      <Exception_Text>CX_SY_CONVERSION_NO_DATE_TIME:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSS0060807205412435000.Value  is not a valid date in accord with the XML format for ABAP</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_SXMLP</Exception_Name>
                      <Exception_Text>XSLT exception</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_ST_DESERIALIZATION_ERROR</Exception_Name>
                      <Exception_Text>An error occurred when deserializing in the simple transformation program /1BCDWB/WSS0060807205412435000: Main Program:/1BCDWB/WSS0060807205412435000| Program:/1BCDWB/WSS0060807205412435000| Line: 25| Valid:X</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_SY_CONVERSION_NO_DATE_TIME</Exception_Name>
                      <Exception_Text>Value  is not a valid date in accord with the XML format for ABAP</Exception_Text>
                   </ChainedException>
                </ns:SystemFault>
             </detail>
          </soap-env:Fault>
       </soap-env:Body>
    </soap-env:Envelope>

    Hi Ashok,
                  looks like there is a mismatch in the Date and Time format being used by the server side program and the payload you are sending via SOAP UI client. To make sure that there is a consistency in the format please check the standard format for Date/Time in XML standards.
    Given below is a reference:
    http://www.w3schools.com/Schema/schema_dtypes_date.asp
    In short the Date-Time should be specified in UTC format as 'YYYY-MM-DDThh:mm:ss' where
    YYYY - indicates the year
    MM -  indicates the month
    DD - indicates the day
    T - indicates the start of the required time section
    hh - indicates the hour
    mm - indicates the minute
    ss - indicates the second
    There are certain variations to specify the Time zones etc. The details you can find in the above link or by googling "UTC time format".
    Please do get back if you still didn't get it solved.
    Regards
    Barada.

  • CRMXIF_ORDER_SAVE Test Returns Error Exception CX_ST_REF_ACCESS

    Hello,
    We are on CRM 6.0 Landscape. I create a Web Service from FM CRMXIF_ORDER_SAVE and when I do a Test from WS Navigator by passing existing Quotation Number and a new Product ID in ITEM I get following error SOAP Response:
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
      <soap-env:Header>
      </soap-env:Header>
      <soap-env:Body>
        <soap-env:Fault>
          <faultcode>soap-env:Server</faultcode>
          <faultstring xml:lang="en">CX_ST_REF_ACCESS:XSLT exception.Error accessing the ref. node 'CODEGROUP'</faultstring>
          <detail>
            <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
              <Host>undefined</Host>
              <Component>APPL</Component>
              <ChainedException>
                <Exception_Name>CX_SOAP_CORE</Exception_Name>
                <Exception_Text>CX_ST_REF_ACCESS:XSLT exception.Error accessing the ref. node 'CODEGROUP'</Exception_Text>
              </ChainedException>
              <ChainedException>
                <Exception_Name>CX_SXMLP</Exception_Name>
                <Exception_Text>XSLT exception</Exception_Text>
              </ChainedException>
              <ChainedException>
                <Exception_Name>CX_ST_REF_ACCESS</Exception_Name>
                <Exception_Text>Error accessing the ref. node 'CODEGROUP':
                          Main Program:/1BCDWB/WSSFF1BC1FC25035BB462A| Program:/1BCDWB/WSSFF1BC1FC25035BB462A| Line: 11| Valid:X</Exception_Text>
              </ChainedException>
            </ns:SystemFault>
          </detail>
        </soap-env:Fault>
      </soap-env:Body>
    </soap-env:Envelope>
    Can anybody tell me what am I doing wrong here? And what and why exactly am I suppose to fill in values for CODEGROUP? This particular field appears in multiple internal tables.
    Thanks and Regards,
    Vasu

    Hi,
    Here is a very smart tool for webservice test:
    [soapUI|http://www.soapui.org/]
    It works fine for me!
    bg,
    attila

  • ("HTTP Code 200  : OK") SRT: Unsupported xstream found

    Hi,
    when I am trying send a request to an external webservice
    I am getting this message. Do you have an idea what can cause this error.
    Regards
    ilhan
    Server: SAP Web Application Server (ICM)
    HTTP/1.1 500 Internal Server Error
    set-cookie: MYSAPSSO2=AjQxMDMBABhBAFIAQwBIAEkAQgBVAFMAIAAgACAAIAACAAYyADgAMQADAB
    BFAFMAUgAgACAAIAAgACAABAAYMgAwADAAOQAwADUAMgA2ADAAOQAwADcABQAEAAAACAYAAlgACQACRA
    D%2fAPswgfgGCSqGSIb3DQEHAqCB6jCB5wIBATELMAkGBSsOAwIaBQAwCwYJKoZIhvcNAQcBMYHHMIHE
    AgEBMBkwDjEMMAoGA1UEAxMDRVNSAgcgCAYQFiMnMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJ
    KoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wOTA1MjYwOTA3NDNaMCMGCSqGSIb3DQEJBDEWBBThnsmT
    %2f90RLKhrO%2fWjjbrvDvw%21czAJBgcqhkjOOAQDBC8wLQIUTDMZiy9E9buJoePGCdCDg5BwYvsCFQ
    DQGyevsV2OfRgF9ol%2fQJKRj9l%214Q%3d%3d; path=/; domain=apslidl
    content-type: text/xml; charset=utf-8
    content-length: 675
    accept: text/xml
    sap-srt_id: 20090526/110743/v1.00_final_6.40/DE49D4AA07D6C6F1BC1E000C29A9F676
    server: SAP Web Application Server (1.0;700)
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"><s oap-env:Header></soap-env:Header><soap-env:Body><soap-env:Fault><faultcode>soap-
    env:Server</faultcode><faultstring xml:lang="en">SRT: Unsupported xstream found:
    ("HTTP Code 200  : OK")</faultstring><detail><ns:SystemFault xmlns:ns="http://w
    ww.sap.com/webas/710/soap/runtime/abap/fault/system/"><Host>undefined</Host><Com
    ponent>COREMSG</Component><ChainedException><Exception_Name>CX_SOAP_CORE</Except
    ion_Name><Exception_Text>SRT: Unsupported xstream found: ("HTTP Code 200  : OK")
    </Exception_Text></ChainedException></ns:SystemFault></detail></soap-env:Fault><
    /soap-env:Body></soap-env:Envelope>

    hi
    the error message comes if I use this tool    http://curl.haxx.se/
    When I use this tool I dont get an error.       http://www.eviware.com/
    To sum up:
    What do you thing what the error causes ?
    - the wsdl format is not correct
    - you are saying "just compare the two clients"
      what can I compare with them
    Regards
    ertas

  • URL in SOAP Receiver Adapter

    Hi,
    I was given a WSDL file which contains the following:
    <wsdl:port name="ZISU_INSTLN_CREATE" binding="tns:ZISU_INSTLN_CREATE">
      <soap:address location="http:// hostname:port /sap/bc/srt/rfc/sap/zisu_instln_create/100/zisu_instln_create/zisu_instln_create" />
    </wsdl:port>
    I've configured a SOAP receiver adapter. In the URL i put the SOAP address location from the WSDL.
    Is this correct?
    I am seeing the following error when i try to send a message:
    Delivering the message to the application using connection SOAP_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: java.net.ConnectException: Connection refused: connect.
    Is the error because of the url I use?
    Thx
    Robert

    Hi,
    I do have details in the message:
    - <detail>
    - <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
      <Host>undefined</Host>
      <Component>COREMSG</Component>
    - <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>SRT: Wrong Content-Type and empty HTTP-Body received: ("HTTP Code 200 : OK")</Exception_Text>
      </ChainedException>
    and there is  lot more if it helps finding the error, but maybe this is already enough.
    Also i tried testing with SOAPUI now:
    Result is good. I dont get error's. I get a response from my request as expected.
    But if I test with XML from the RWB, with he same data as in SOAPUI, i get the error message again.
    Conclusion:
    SOAPUI can communicate with my SAP ISU system.
    But PI cannot communicate with it.
    Why?
    Thx
    Robert

  • Error when executing Webservice in BW

    Hi,
    I am trying to execute Web service in Web service navigator and i am getting the following error
    HTTP/1.1 500 Internal Server Error
    content-type: text/xml; charset=utf-8
    content-length: 600
    accept: text/xml
    sap-srt_id: 20100823/155814/v1.00_final_6.40/4C72FD39F2E90095E10080000A754720
    server: SAP NetWeaver Application Server / ABAP 701
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"><soap-env:Header></soap-env:Header><soap-env:Body><soap-env:Fault><faultcode>soap-env:Client</faultcode><faultstring xml:lang="en">InvalidVariableValues</faultstring><detail><n0:GetQueryViewData.Exception xmlns:n0="urn:sap-com:document:sap:soap:functions:mc-style"><Name>InvalidVariableValues</Name><Text>Incorrect call of OLAP layer CL_RSR_OLAP; error in BW-BEX-ET ()</Text><Message><ID>BRAIN</ID><Number>369</Number></Message></n0:GetQueryViewData.Exception></detail></soap-env:Fault></soap-env:Body></soap-env:Envelope>
    I tried to test my webservice in SICF and i get the following soap message
    <soap-env:Envelope>
    <soap-env:Header/>
    <soap-env:Body>
    <soap-env:Fault>
    <faultcode>soap-env:Server</faultcode>
    <faultstring xml:lang="en">
    SRT: Wrong Content-Type and empty HTTP-Body received
    </faultstring>
    <detail>
    <ns:SystemFault>
    <Host>undefined</Host>
    <Component>COREMSG</Component>
    <ChainedException>
    <Exception_Name>CX_SOAP_CORE</Exception_Name>
    <Exception_Text>
    SRT: Wrong Content-Type and empty HTTP-Body received
    </Exception_Text>
    </ChainedException>
    </ns:SystemFault>
    </detail>
    </soap-env:Fault>
    </soap-env:Body>
    </soap-env:Envelope>
    Can any one help me with this issue
    Thanks
    Surya

    Hi,
    Thanks for your response. It looks like its throwing Invalid Variable Values error. However my query does not have any variables. I tried it with and without variables but i still get the same error..
    Without variables i just entered Infoprovider and Query name. I get the same error. However when i execute function module
    RRW3_GET_QUERY_VIEW_DATA with the same input parameters which is infoprovider and query i get my result. Below is the error message
    HTTP/1.1 500 Internal Server Error
    set-cookie: sap-usercontext=sap-client=210; path=/
    content-type: text/xml; charset=utf-8
    content-length: 600
    accept: text/xml
    sap-srt_id: 20100827/091011/v1.00_final_6.40/4C77DAAC123A0095E10080000A754720
    server: SAP NetWeaver Application Server / ABAP 701
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
          <soap-env:Header></soap-env:Header>
          <soap-env:Body>
                <soap-env:Fault>
                      <faultcode>soap-env:Client</faultcode>
                      <faultstring xml:lang="en">InvalidVariableValues</faultstring>
                      <detail>
                            <n0:GetQueryViewData.Exception xmlns:n0="urn:sap-com:document:sap:soap:functions:mc-style">
                                  <Name>InvalidVariableValues</Name>
                                  <Text>Incorrect call of OLAP layer CL_RSR_OLAP; error in BW-BEX-ET ()</Text>
                                  <Message>
                                        <ID>BRAIN</ID>
                                        <Number>369</Number>
                                  </Message>
                            </n0:GetQueryViewData.Exception>
                      </detail>
               </soap-env:Fault>
          </soap-env:Body>
    </soap-env:Envelope>

  • Consuming an ES Workplace WebService in Flex3

    here is the error message, when I insert these in the main thread it destroys the complete structure crazy
    [FaultEvent fault=SOAPFault (Client): SRT: Error when mapping Consumer and Provider structure <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/" xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
      <Host>undefined</Host>
      <Component>OTHERS</Component>
      <ChainedException>
        <Exception_Name>CX_SOAP_CORE</Exception_Name>
        <Exception_Text></Exception_Text>
      </ChainedException>
      <ChainedException>
        <Exception_Name>CX_XMS_SYSERR_PROXY</Exception_Name>
        <Exception_Text>Information übre die Methodenparameter fehlt für Schnittstelle II_PKAB_KANBANCTRLCYCLEBEQR (ABAP Schnittstelle, Request-Message parameters, Request-Message-Namensraum )</Exception_Text>
      </ChainedException>
    </ns:SystemFault>
    <ns:SystemFault xmlns:ns="http://www.sap.com/webas/711/soap/runtime/abap/fault/system/" xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
      <Host>undefined</Host>
      <Component>OTHERS</Component>
      <ChainedException asx:root="asx:abap" version="1.0" xmlns:asx="http://www.sap.com/abapxml">
        <asx:values>
          <EXCEPTION href="#o183"></EXCEPTION>
        </asx:values>
        <asx:heap xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:abap="http://www.sap.com/abapxml/types/built-in" xmlns:cls="http://www.sap.com/abapxml/classes/global" xmlns:dic="http://www.sap.com/abapxml/types/dictionary">
          <cls:CX_SOAP_CORE id="o183">
            <CX_ROOT>
              <TEXTID>0018FE864EEE1DECA69CF9C71ACB337F</TEXTID>
              <PREVIOUS href="#o182"></PREVIOUS>
              <KERNEL_ERRID></KERNEL_ERRID>
              <INTERNAL_SOURCE_POS>
                <PROGID>104</PROGID>
                <CONTID>1113</CONTID>
              </INTERNAL_SOURCE_POS>
            </CX_ROOT>
            <CX_NO_CHECK></CX_NO_CHECK>
            <CX_SOAP_CORE>
              <E_LOCATION>
                <CLASS></CLASS>
                <METHOD></METHOD>
                <ID>0</ID>
              </E_LOCATION>
              <E_TEXT></E_TEXT>
              <E_ID>1028</E_ID>
              <E_FAULT_LOCATION>2</E_FAULT_LOCATION>
              <E_AREA>OTHERS</E_AREA>
              <E_HOST>0</E_HOST>
              <E_PROCESS_CONTROL></E_PROCESS_CONTROL>
            </CX_SOAP_CORE>
          </cls:CX_SOAP_CORE>
          <cls:CX_XMS_SYSERR_PROXY id="o182">
            <CX_ROOT>
              <TEXTID>DBD2FDC9B54CE6F1A93D0017A4F6DC8C</TEXTID>
              <PREVIOUS></PREVIOUS>
              <KERNEL_ERRID></KERNEL_ERRID>
              <INTERNAL_SOURCE_POS>
                <PROGID>279</PROGID>
                <CONTID>735</CONTID>
              </INTERNAL_SOURCE_POS>
            </CX_ROOT>
            <CX_STATIC_CHECK></CX_STATIC_CHECK>
            <CX_XMS_SYSTEM_ERROR>
              <ID>INTERFACE_SIGNATURE_ERROR</ID>
              <P1>II_PKAB_KANBANCTRLCYCLEBEQR</P1>
              <P2>parameters</P2>
              <P3></P3>
              <P4></P4>
              <INFO></INFO>
              <CATEGORY>XIProxy</CATEGORY>
              <AREA>ABAP</AREA>
              <RETRY>M</RETRY>
            </CX_XMS_SYSTEM_ERROR>
            <CX_XMS_SYSERR_PROXY>
              <CO_AREA_ABAP>ABAP</CO_AREA_ABAP>
            </CX_XMS_SYSERR_PROXY>
          </cls:CX_XMS_SYSERR_PROXY>
        </asx:heap>
      </ChainedException>
    </ns:SystemFault> messageId="4DC4040B-53BE-8683-ABE4-5A5E4E049A81" type="fault" bubbles=false cancelable=true eventPhase=2]

    i found this link on SDN.  If you have see this, then ignore my post..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4094345f-341f-2b10-86a0-86a6309f1a0b

  • WS problem

    Hello,
    I don't if it's in this forum i have to post this question so excuse me if not .
    I've made a WS on a ECC6 SP14 via SOAMANAGER and generated a WSDL.
    With this WSDL, i've made 4 test with it :
    1. I've picked the soap address within the WSDL, put it in my IE and i've got this message :
    <soap-env:fault>
    <faultcode>soap-env:server</faultcode>
    <faultstringxml:lang="en">SRT: Wrong Content-Type and empty HTTP-Body received </faultstring>
    <detail>
    <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/Soap/runtime/abap/fault/system/">
    <Host>undefined</host>
    <Component>COREMSG</Component>
    <chainedException>
    <Exception_Name>CX_SOAP_CORE</Exception_Name>
    <Exception_Text>SRT : Wrong Content-Type and empty HTTP-Body received</Exception_text>
    </chainedException>
    </...>
    2. Thru a .NET application but it gives the same error message than above.
    3. Thru SOAPUI and XMLSPY and it seems "fine" but my response content is the same than my request so i think something is weird...
    4. I've tried also with WSNavigator but i've got an error message which says :
    "Cannot download WSLD from http://<server>:<port>/sap/bc/srt... its not allowed to access this service.If you believe you should be able to, please contact your administrator"
    I have SAP_ALL and SAP_NEW so how can i have an authorization problem ??
    Like you see, i've tried many things but i've lost now...is somebody got an idea ?
    Is someone have an idea plz ?
    PS : By the way, hhen i look in t-code SICF(on ECC), i don't see my WS in sap/bc/srt/rfc/sap/z**/client/z*/z* , is it normal in SP14 now ? Even if there are "obsolete", i don't see either my WS in WSCONFIG..
    Thanks by advance

    Hi,
    i have the same problem. did you solve that?

  • SRT: Wrong Content-Type and empty HTTP-Body received

    Hi All,
    I created and activated a web service for data acquisition in BI 7.0. The service has been activated and when do a test service from SICF transaction I get the following error page.
    I appreciate any  help to resolve this issue.
    Thanks,
    Jomon
    - <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
      <soap-env:Header />
    - <soap-env:Body>
    - <soap-env:Fault>
      <faultcode>soap-env:Server</faultcode>
      <faultstring xml:lang="en">SRT: Wrong Content-Type and empty HTTP-Body received</faultstring>
    - <detail>
    - <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
      <Host>undefined</Host>
      <Component>COREMSG</Component>
    - <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>SRT: Wrong Content-Type and empty HTTP-Body received</Exception_Text>
      </ChainedException>
      </ns:SystemFault>
      </detail>
      </soap-env:Fault>
      </soap-env:Body>
      </soap-env:Envelope>

    good morning,
    i am having the same problem, did you find an answer for this? can you update either this message, or reply back at your findings.
    we are trying to get a external system to talk with ecc 6.0 thru sap connecter for .net v2.0.1. it worked with sap 4.6c, but not now.
    any help is appreciated.
    thanks.

  • "Error attempting to read file" at Webservice call from Adobe Form.

    Hi Experts,
    We have designed a Webservice form a Function Module in ECC 6.0, In the soamanager transaction the webservice works fine. But at the time of call from the Adobe form, it gives an error stating that "Error attempting to read from file" and then the URL of the Webservice to be excuted.
    and if i attempt to open that file, it gives me this error:
    - <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
      <soap-env:Header />
    - <soap-env:Body>
    - <soap-env:Fault>
      <faultcode>soap-env:Server</faultcode>
      <faultstring xml:lang="en">SRT: Wrong Content-Type and empty HTTP-Body received</faultstring>
    - <detail>
    - <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
      <Host>undefined</Host>
      <Component>COREMSG</Component>
    - <ChainedException>
      <Exception_Name>CX_SOAP_CORE</Exception_Name>
      <Exception_Text>SRT: Wrong Content-Type and empty HTTP-Body received</Exception_Text>
      </ChainedException>
      </ns:SystemFault>
      </detail>
      </soap-env:Fault>
      </soap-env:Body>
      </soap-env:Envelope>
    In case I give my user the "SAP_ALL" role, this all works fine, so i think it is somewhere related to a missing role to be assigned.
    any clues..??
    any help would be appreciated, Please help..
    Thanks,
    Amita

    Hi Juergen,
    I am using it as a WSDL based data connection.
    How do i check this WSDL through a web browser? I have checked it through SICF Transaction code, It gives the output in explorer as given in the first post of this thread..
    Please help me resolving this issue, i feel that this issue is somewhere related to the role assignment of the user as if i provide this user an authorization of SAP_ALL then everything starts working fine, but after removing SAP_ALL this error is encountered, do u hav any pin points on this??
    Thanks
    Amita

  • Error in SOAMANAGER transaction

    Hi Buddies,
    I have an rfc function module for which I create a web service(service difinition). In SOAMANAGER transaction, when I select the rfc function module and click "Open Webservice navigator for selected binding", it is throwing an error saying that
    Service cannot be reached
    Note
    The termination occurred in system ECD with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    Where might be the problem.
    Searched the forums before posting.  Please kindly suggest as it is delayed for GO LIVE.
    Thanks & regards,
    Kris

    Trevor,
    I have generated a webservice for getting PurchOrder details (ZBAPI_PO_GET_DETAILS1). When i executed and test in WS Navigator, it is displaying all zero values in the output.
    I provided only PO Number as given in BAPI documentation(only PO is required).
    Then I have tested the same Binding URL in SOAPUI Testing tool, I got these error.
    <faultcode>soap-env:Server</faultcode>
             <faultstring xml:lang="en">CX_SY_CONVERSION_NO_NUMBER:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSSAC7F2FC392B72D8A3E5.The argument '?' cannot be interpreted as a number</faultstring>
             <detail>
                <ns:SystemFault xmlns:ns="http://www.sap.com/webas/710/soap/runtime/abap/fault/system/">
                   <Host>undefined</Host>
                   <Component>APPL</Component>
                   <ChainedException>
                      <Exception_Name>CX_SOAP_CORE</Exception_Name>
                      <Exception_Text>CX_SY_CONVERSION_NO_NUMBER:XSLT exception.An error occurred when deserializing in the simple transformation program /1BCDWB/WSSAC7F2FC392B72D8A3E5.The argument '?' cannot be interpreted as a number</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_SXMLP</Exception_Name>
                      <Exception_Text>XSLT exception</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_ST_DESERIALIZATION_ERROR</Exception_Name>
                      <Exception_Text>An error occurred when deserializing in the simple transformation program /1BCDWB/WSSAC7F2FC392B72D8A3E5: Main Program:/1BCDWB/WSSAC7F2FC392B72D8A3E5| Program:/1BCDWB/WSSAC7F2FC392B72D8A3E5| Line: 25| Valid:X</Exception_Text>
                   </ChainedException>
                   <ChainedException>
                      <Exception_Name>CX_SY_CONVERSION_NO_NUMBER</Exception_Name>
                      <Exception_Text>The argument '?' cannot be interpreted as a number</Exception_Text>
                   </ChainedException>
                </ns:SystemFault>
             </detail>
    Can you please lookinto it.
    Thanks,
    Kris

Maybe you are looking for

  • Force DV output to 0-255 ?

    Hi, After bashing my head against the wall for two hours, I finally figured out why DV footage is getting mangled when passing through After Effects. It seems that the DV output module (and the IYUV output module, for that matter) are hard-wired to o

  • Copy and paste files from Windows Explorer

    Hi everybody, For a part of my application I need to copy and paste files and folders from Windows explorer to the vi shown in the picture. Does anybody know how to implement this with the clipboard functionality. Also drag and drop would be very nic

  • I downloaded Firefox 5.0, hated it and went back to previous version but now I am unable to bookmark any new sites. How do I fix this?

    I can no longer bookmark any new sites. What do I need to do to correct this?

  • My messages are messed up. Please help.

    When I open a new message from the inbox, it shows a totally different content that seems like the one I received previous days. For example, when I open a massage from Apple(like iTunes), the message shown below the inbox is not obviously from Apple

  • Upgrade not applicable

    i am having a similar problem with Mavericks. ( I have AE 11.0.2 on a MBP Early 2011)  I followed your advice and the link led me to a file that says it's a trial version update (AfterEffectsTrial-11.0.4-mul-AdobeUpdate.dmg.)  Downloaded it anyway an