External SOAP-Call ends with general error "PART UNKNOWN (NULL)"

Hi,
we generated a consumer proxy using the following WSDL file:
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:intf="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="https://soap.global-esign.com/xsd" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!--WSDL created by Apache Axis version: 1.3
Built on Oct 05, 2005 (05:23:37 EDT)-->
   <wsdl:message name="CreatePdfSignatureRequest">
      <wsdl:part name="in0" type="xsd:string"/>
      <wsdl:part name="in1" type="xsd:string"/>
      <wsdl:part name="in2" type="xsd:base64Binary"/>
      <wsdl:part name="in3" type="xsd:string"/>
      <wsdl:part name="in4" type="xsd:boolean"/>
      <wsdl:part name="in5" type="xsd:string"/>
      <wsdl:part name="in6" type="xsd:string"/>
   </wsdl:message>
   <wsdl:message name="CreatePdfSignatureResponse">
      <wsdl:part name="CreatePdfSignatureReturn" type="xsd:base64Binary"/>
   </wsdl:message>
   <wsdl:portType name="GlobalEsignSoapExt">
      <wsdl:operation name="CreatePdfSignature" parameterOrder="in0 in1 in2 in3 in4 in5 in6">
         <wsdl:input message="impl:CreatePdfSignatureRequest" name="CreatePdfSignatureRequest"/>
         <wsdl:output message="impl:CreatePdfSignatureResponse" name="CreatePdfSignatureResponse"/>
      </wsdl:operation>
   </wsdl:portType>
   <wsdl:binding name="GlobalEsignSoapExtSoapBinding" type="impl:GlobalEsignSoapExt">
      <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
      <wsdl:operation name="CreatePdfSignature">
         <wsdlsoap:operation soapAction=""/>
         <wsdl:input name="CreatePdfSignatureRequest">
            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://GlobalEsign.tsi.de" use="encoded"/>
         </wsdl:input>
         <wsdl:output name="CreatePdfSignatureResponse">
            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" use="encoded"/>
         </wsdl:output>
      </wsdl:operation>
   </wsdl:binding>
   <wsdl:service name="GlobalEsignSoapExtService">
      <wsdl:port binding="impl:GlobalEsignSoapExtSoapBinding" name="GlobalEsignSoapExt">
         <wsdlsoap:address location="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt"/>
      </wsdl:port>
   </wsdl:service>
</wsdl:definitions>
The coding of the test program is:
*& Report  Z_SOAP_PDF_SIGNATUR
REPORT  z_soap_pdf_signatur.
*------ Type pools
type-pools: sai.
*------ Class definitions and references
DATA: lo_zpdf_sign    TYPE REF TO zpdfco_global_esign_soap_ext,
      lo_system_fault TYPE REF TO cx_ai_system_fault,
      lo_appl_fault   type ref to cx_ai_application_fault.
*------ data
DATA: output TYPE zpdfcreate_pdf_signature_respo,
      input TYPE  zpdfcreate_pdf_signature.
DATA: wa_controller TYPE prxctrl.
DATA:  pdfout(255) TYPE c  VALUE
'C:/TEMP/pp-20080229-93ES-40010-0013439840-1690000005.pdf',
       pdfsign(255) TYPE c  VALUE
'C:/TEMP/pp-20080229-93ES-40010-0013439840-1690000005-sign.pdf',
        wa_objcont TYPE soli,
        objcont LIKE soli  OCCURS 0.
DATA: xlines TYPE string,
      buffer TYPE  xstring,
      x_msg  TYPE c LENGTH 100.
TRY.
    CREATE OBJECT lo_zpdf_sign
      EXPORTING
        logical_port_name = 't_systems'.
  CATCH cx_ai_system_fault .
ENDTRY.
* read unsigned pdf
OPEN DATASET pdfout FOR INPUT MESSAGE x_msg
                    IN BINARY MODE.
TRY.
    READ DATASET pdfout INTO xlines.
  CATCH cx_sy_file_open_mode.
    EXIT.
ENDTRY.
CLOSE DATASET pdfout.
* convert string
CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
  EXPORTING
    text           = xlines
*   MIMETYPE       = ' '
*    encoding       = 'UTF-8'
IMPORTING
    buffer         = buffer
  EXCEPTIONS
    failed         = 1
    OTHERS         = 2  .
TRY.
    input-in0 = 'user'.
    input-in1 = 'password'.
    input-in2 =  buffer.
    input-in3 = 'affilinet'.
    CALL METHOD lo_zpdf_sign->create_pdf_signature
      EXPORTING
        input  = input
      IMPORTING
        output = output.
  CATCH cx_ai_system_fault INTO lo_system_fault.
    DATA: lv_message TYPE string.
    DATA: lv_message_long TYPE string.
    CALL METHOD lo_system_fault->if_message~get_text
      RECEIVING
        result = lv_message.
    CALL METHOD lo_system_fault->if_message~get_longtext
      RECEIVING
        result = lv_message_long.
    WRITE lv_message.
    WRITE lv_message_long.
  CATCH cx_ai_application_fault into lo_appl_fault.
    DATA: lv_messaap TYPE string.
    DATA: lv_messaap_long TYPE string.
    CALL METHOD lo_appl_fault->if_message~get_text
      RECEIVING
        result = lv_messaap.
    CALL METHOD lo_appl_fault->if_message~get_longtext
      RECEIVING
        result = lv_messaap_long.
    WRITE lv_messaap.
    WRITE lv_messaap_long.
ENDTRY.
LOOP AT output-controller INTO wa_controller.
  WRITE:/ wa_controller-field.
  WRITE:/ wa_controller-value.
ENDLOOP.
* store signed pdf
OPEN DATASET pdfsign FOR output MESSAGE x_msg
                    IN BINARY MODE.
transfer output-CREATE_PDF_SIGNATURE_RETURN
         to pdfsign.
Processing the soap call in the test programm ends in a system exception (cx_ai_system_fault)  with the message:
"General Error Es ist ein Fehler bei der Proxy-Verarbeitung aufgetreten (  PART UNKNOWN (NULL)    )"
It seems as if there is no response or a response in a wrong format given by the webservice.
We had a look at the ICF-Trace.
The request seems to be a proper soap-call.
But the response is not in XML-format and therefore could not be completely displayed.
it says:
Ungültig auf der obersten Ebene im Dokument. Fehler beim Bearbeiten der Ressource 'file:///C:/Dokumente und Einstellungen/S...
HTTP/1.1 200 OK
^
Could anybody help ?
Kind regards
Heinz

Hello Mathias,
in our case the problem was, that the WDSL used parameters, which were not correcty interpreted by the SAP-Routine that creates the proxy.
We changed the WDSL using only paramters covert by SAP.
Here ist the WSDL that worked fine:
<?xml version="1.0" encoding="utf-8" ?>
- <wsdl:definitions targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" 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="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns:tsi="http://GlobalEsign.tsi.de">
- <wsdl:documentation>
<sidl:sidl xmlns:sidl="http://www.sap.com/2007/03/sidl" />
</wsdl:documentation>
- <wsdl:types>
- <xsd:schema elementFormDefault="qualified" targetNamespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" xmlns="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt">
- <xsd:complexType name="CreatePdfSignature">
- <xsd:sequence>
<xsd:element name="in0" type="xsd:string" />
<xsd:element name="in1" type="xsd:string" />
<xsd:element name="in2" type="xsd:base64Binary" />
<xsd:element name="in3" type="xsd:string" />
<xsd:element name="in4" type="xsd:boolean" />
<xsd:element name="in5" type="xsd:string" />
<xsd:element name="in6" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
- <xsd:schema targetNamespace="http://GlobalEsign.tsi.de" xmlns="http://GlobalEsign.tsi.de">
<xsd:import namespace="https://soap.global-esign.com/axis/services/GlobalEsignSoapExt" />
<xsd:element name="CreatePdfSignature" type="tns:CreatePdfSignature" />
- <xsd:element name="CreatePdfSignatureResponse">
- <xsd:complexType>
- <xsd:sequence>
<xsd:element name="CreatePdfSignatureReturn" type="xsd:base64Binary" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</wsdl:types>
- <wsdl:message name="CreatePdfSignature">
<wsdl:part name="CreatePdfSignature" element="tsi:CreatePdfSignature" />
</wsdl:message>
- <wsdl:message name="CreatePdfSignatureResponse">
<wsdl:part name="CreatePdfSignatureResponse" element="tsi:CreatePdfSignatureResponse" />
</wsdl:message>
- <wsdl:portType name="GlobalEsignSoapExt">
- <wsdl:operation name="CreatePdfSignature">
<wsdl:input message="tns:CreatePdfSignature" />
<wsdl:output message="tns:CreatePdfSignatureResponse" />
</wsdl:operation>
</wsdl:portType>
</wsdl:definitions>
<wsdl:part name="in1" type="xsd:string"/>   was changed to <xsd:element name="in0" type="xsd:string" /> .
Please let me know, whether you succeeded.
Kind regards
Heinz Schäfe

Similar Messages

  • RFC call ended with "Communication Failure" exception (Function call failed; could not find the function

    Hi All,
    I am getting error while executing oDATA service from SAP Netweaver Gateway
    Error details:
    RFC call ended with "Communication Failure" exception (Function call failed; could not find the function
    I am using SAP NG 740
    Project is created in Gateway system using SEGW having Map to Datasource option used.
    in SPRO manage alias, I had seleted Local App option. Screen attached
    I had tried all troubleshooting like delete and add service and alias in "/IWFND_MAINT_SERVICE".
    but still getting same error for all service.
    Kindly advise.
    Regards
    Vivek

    Hello Vivek,
    Service builder would have also generated code for RFC Exception handling to catch exceptions raised when communication fails between your GW and BE for some reasons.
    Handling is done for 1. System Failure 2. Communication Failure & 3. Business Failure;
    Put a BP in your DPC or DP_EXT class where exception code is written to check what exactly is has caused communication failure.
    Check if that RFC is existing in that destination or not.
    For your reference  : Code would be something like this. Put BP here and check the problem.
    * Error and exception handling
    IF lv_subrc <> 0.
    * Execute the RFC exception handling process
       me->/iwbep/if_sb_dpc_comm_services~rfc_exception_handling(
         EXPORTING
           iv_subrc            = lv_subrc
           iv_exp_message_text = lv_exc_msg ).
    ENDIF.
    Go inside this method and check to get info on what has to be done to resolve issue.
    Check carefully what has gone wrong and fix it accordingly.
    No need of adding service & deleting as problem is not because of that.
    Regards,
    Ashwin

  • WIB: Eliminate the option to save after a function was ended with an error

    Hi Xperts,
    is there any possibility in the Web Interface Builder to eliminate the option to save after a function was ended with an error-message?
    Appreciate any help.

    The Firefox 4+ versions automatically save your session when you close Firefox. If you want to restore your previous session the next time you open Firefox, use the Restore Previous Session button on the default about:home homepage or in the History menu.

  • Since up grading to new OS Lion  my iPhone iPod and iPad  all give me sync issues  they load apps , music , books , movies , but refuse photos  and the sync ends with an error 50 message most times  , yes  I have re booted  reinstalled new i Tunes  help !

    Since up grading to the  new OS Lion  basicly problem free except  my iPhone iPod and iPad  all give me sync issues  they load apps , music , books , movies , but refuse photos  and the sync ends with an error 50 message most times  , yes  I have re booted  reinstalled new i Tunes and all my others   help !   I have update every thing I can  re installed  , no other issues apart from Parallels  and windows  which  I have deleted and will reisnstall and up date when I get my discs back moving house so in storage boxes somewhere ? , but who needs  Windows ?  is any one else suffering , or have any solutions 

    Hi Ken,
    Wow, I've logged into adobe and never seen your response until now.
    I need to make the forums more of a daily stop I guess.
    Thank you for your response, When I go to the Archives, it states I have none. In addition, previously when I'd tried to move items to the archive, they just disappeared  
    Currently my desktop is not connecting at all, Everytime I connect, it's states "We have now logged you out" and requests I login again.
    I have of course rebooted,
    Gone into taskmanager, killed all the relevant threads,  tried again to login through the desktop, no luck, I'll have to uninstall it, make sure the threads are killed, then reboot it and then reinstall it, but I've not had the time to do that.
    On another note, and just as a point of reference, myself, personally, I hate these "cloud" file repositories (not to be confused with adobe cloud services which I love) but the file repositories themselves imho, are a blackhole of resource usage when one doesn't/isn't using them,
    Is there a way we can use it more of a "ftp" sort of thing, when I want to I can  put files there?  There is no way to "Download" the repository, no way to download the folders.. only individual files and then it takes I think three different steps before the download starts.. I find this very inhibiting.  Just an fyi. for what it's worth.
    Please, feel free to contact me,
    I'm on g+ chat [email protected]

  • TS3694 My ipod 2nd gen has a white screen and when I try to do a restore through itunes it ends with an error 46. Anyone help?

    My ipod 2nd gen has a white screen and when I try to do a restore through itunes it ends with an error 46. Anyone help?

    https://discussions.apple.com/message/22808372#22808372
    https://discussions.apple.com/message/16155867#16155867
    Also Google for:
    iTunes error 46
    To find others

  • SOAP : response message contains an error Application/UNKNOWN/APPLICATION_E

    Hi All,
    I am working in a Proxy to SOAP synchronous scenario. Message is processing successfully through IE but i am getting the below error in receiver (SOAP) communication channel.
    SOAP : response message contains an error Application/UNKNOWN/APPLICATION_ERROR.
    Please suggest what will be possible way out to resolve this issue.
    Thanks,
    Priya Ranjan

    Dear Priya
    Have you configured Fault Message for this scenario.
    This kind of error is generally thrown by the end target system where the message is not processed succesfully due to some error in there system.
    Sourabh

  • SOAP: response message contains an error Application/UNKNOWN/APPLICATION

    Hi,
    My scenario is Proxy>Soap>WS. When I tested proxy using SPROXY,the web service call is working fine and I am getting response. However, when I call proxy in the the program, I am getting "SOAP: response message contains an error Application/UNKNOWN/APPLICATION_ERROR - application fault" in adapter engine. I have gone through many similar posts in SDN but did not help.
    Thanks for your help.

    Thanks. I used SOAPUI outside SAP and it works perfectly fine. Even in SAP, it works fine when using Sproxy.  Here is the error from adapter engine:
    2010-06-24 12:59:34     Success     SOAP: continued from request message 6600174c-8a22-613e-e100-000018280c11
    2010-06-24 12:59:34     Error     SOAP: response message contains an error Application/UNKNOWN/APPLICATION_ERROR - application fault
    2010-06-24 12:59:34     Success     SOAP: response message leaving the adapter
    2010-06-24 12:59:34     Success     MP: Leaving module processor
    2010-06-24 12:59:34     Success     Application attempting to send an XI message asynchronously using connection SOAP_http://sap.com/xi/XI/System.
    2010-06-24 12:59:34     Success     Trying to put the message into the send queue.
    2010-06-24 12:59:34     Success     The response message for message 6600174c-8a22-613e-e100-000018280c11(INBOUND) was successfully transmitted to the calling application.
    2010-06-24 12:59:34     Success     The message status set to DLVD.
    2010-06-24 12:59:34     Success     The application sent the message asynchronously using connection SOAP_http://sap.com/xi/XI/System. Returning to application.

  • SOAP: response message contains an error XIServer/UNKNOWN/ADAPTER.JAVA_EXCE

    Hi ,
    I am getting below error in SOAP reciever channel.
    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: SOAP: response message contains an error XIServer/UNKNOWN/ADAPTER.JAVA_EXCEPTION - com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Connection SOAP_http://sap.com/xi/XI/System is currently not started. at com.sap.aii.adapter.soap.ejb.XISOAPAdapterBean.process(XISOAPAdapterBean.java:996) at sun.reflect.GeneratedMethodAccessor501_10002.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:43) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:38) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:22) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133) at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164) at $Proxy2662_10002.process(Unknown Source) at com.sap.aii.af.app.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:275) at sun.reflect.GeneratedMethodAccessor326_10002.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:43) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:38) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:22) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16) at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177) at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133) at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164) at $Proxy114_10002.process(Unknown Source) at com.sap.aii.adapter.soap.web.MessageServlet.callModuleProcessor(MessageServlet.java:175) at com.sap.aii.adapter.soap.web.MessageServlet.doPost(MessageServlet.java:470) at javax.servlet.http.HttpServlet.service(HttpServlet.java:727) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.runServlet(FilterChainImpl.java:163) at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:82) at com.sap.engine.services.servlets_jsp.server.servlet.AuthenticationFilter.doFilter(AuthenticationFilter.java:124) at com.sap.engine.services.servlets_jsp.server.runtime.FilterChainImpl.doFilter(FilterChainImpl.java:74) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:425) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:289) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376) at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85) at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71) at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160) at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71) at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67) at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9) at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71) at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60) at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9) at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71) at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27) at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12) at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71) at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29) at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12) at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71) at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:309) at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:222) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)

    Hi,
    Can you please elaborate more on your problem.
    Regards,
    Raghu.

  • Officejet 6500 (e709a) MFP service manual or help with General Error

    Hi. I have an Officejet 6500 (e709a) that I am having some problems with.  It started with a paper jam/carriage jam message and then became a "General Error 0x61011beb".  The carrier holding the ink cartridges was indeed stuck on the right side, so I followed a video showing how to open the unit.  When I did I discovered a small plastic piece with a couple of gears had fallen off.  The piece has different numbers on each side of it so I am not sure which numbers might be helpful in identifying it.  I am not sure exactly how to put it back on so I am hoping there is a service manual for this printer or maybe even just some kind of general technical reference that has assembly diagrams?  (I know this is a longshot but my local service center charges $50 just to diagnose the problem.  I only paid slightly over $100 and I could get another for that same price so I'd rather save that $50 to use buying a new one if I can't fix this myself.) If it would help I could attach some pictures of the piece in question. Thanks in advance. Jim 

    The utility is of no utility when the printer is perpetually taking itself OFFLINE. No printer is detected. I power it down with the switch, unplug the power supply for anywhere from 20 seconds to 20 minutes, plug it back in, power it back up and my stalled print job may or may not print the last page of a two-page document (first one to print in my selected print order). If it gets to the first page, only part prints then the printer sits there doing nothing. After a long time, it spits out the front page. Usually it won't even get halfway down the page.
    In the meantime, the HPHNDU.exe utility cannot even find the printer, regardless of when I press the "refresh printer list" button.
    The software/device is broken. Didn't even get two years out of it.

  • Skype call ends, suddenly activx error and my AV b...

    This happened last night and It happened again today. I was in a call with a friend for about 5 hours, as soon as the call ended I get an Activex error: "One or more ActiveX controls could not be displayed", This appeared again after I hit Ok. I have gotten this error previously before I didn't worry too much about it, but then I notice my Anti virus (Microsoft secuirity essentials) is flipping out telling me its blocking something. The software that was blocked is: https://www.microsoft.com/security/portal/threat/encyclopedia/Entry.aspx?Name=Blacole
    Immedietly afterwards I ensured that my Anti virus, Java, windows updates and everything it told me to do on the above page. Ran a full scan and it came up with nothing, everything was fine. As I said before it happened again today; Skype call ended, activex error, then MSE reporting it blocked harmful software. After this happened I installed a bunch of windows updates and started looking around, and saw that people reporting that Skype ads have been compromised and have been receiving malware. Seeing this I decided this might be the cause as I don't go to potentually harmful sites. Far too Paranoid.
    Has anyone else been having this problem?

    Yes, exactly the same tonight. A call I was in got dropped and I had an ActiveX error message popup followed by MSE immediately throwing up a hit for this 'Blacole' virus. I don't know if anyone can shed some light on whether damage will have been done or not.
    I went through the steps in this guide for the Blacole stuff and none of the tools following MSE could find anything relating to it http://malwaretips.com/blogs/js-exploit-blacole-virus/
    I'll probably be formatting and throwing Skype in the bin prior to changing all my passwords anyway. This wasn't the first time I had the ActiveX bull**bleep** relating to a skype ad popup either :[ I'm curious - are you from the UK? I read about people trying to block ads and the tip wasn't working because people in different locations were recieving different content.

  • SOAP to SOAP call - javax.naming.Reference error - PI 7.1

    Hi friends,
    In our SOAP to SOAP scenario (synchronous) , we are getting the below error in SXMB_MONI.
    Error:
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: java.lang.Exception: #Begin#Exception occurred while the JNDI NamingManager was processing a javax.naming.Reference object.#End#
    We have not used any custom module. In both sender & receiver CC only SAP standard module is there. Also there is no interface mapping in Interface Determination step. 
    We are not getting this error for all messages. But, some of the messages we are getting this error.
    Kindly clarify friends.
    Kind regards,
    Jegathees P.

    Hi,
    Thanks for your reply!!
    My Scenario is File to SOAP to File.
    Configred modules  in Sender channal below:
    Prcessing sequence:
    Number       Module Name                                        Module Key
    1..........       AF_Modules/RequestResponseBean.......1
    2..........       CallSapAdapter..........................................2
    3..........       AF_Modules/ResponseOnewayBean.......3
    Module Configuration:
    Module Key                                       Parameter Name                                       ParameterValue
    1                                                        passThrough                                            true
    3                                                        receiverChannel                                       receiverChannel name
    3                                                        receiverService                                        receiverService name
    please tell any more confiration requered.
    Regards,
    Ramesh

  • SOAP comm channel with SSLException error

    Hi,
    I have set up a SOAP to web service but I'm encountering this error :
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Peer sent alert: Alert Fatal: illegal parameter: iaik.security.ssl.SSLException: Peer sent alert: Alert Fatal: illegal parameter
    SOAP: call failed: iaik.security.ssl.SSLException: Peer sent alert: Alert Fatal: illegal parameter
    Has anyone also encountered this before? Is it because the target URL of the web service is using HTTPS?
    Thanks!

    Hi,
    Reconfigure the Web service client logical port and enable HTTP protocol instead of HTTPS.
    Please go through this link : http://wiki.sdn.sap.com/wiki/display/JSTSG/(WSR)Problems-P16.
    Regards,
    Ranjani.

  • Post-processing ends with the error message

    Hi
    when i try to run a report, i am getting the below error.
    Beginning post-processing of request 5947956 on node RWS60160REMS at 15-MAR-2012 04:13:48.
    Post-processing of request 5947956 failed at 15-MAR-2012 04:13:51 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    i check the OPP and the error stack is:
    [3/15/12 4:13:51 AM] [2103265:RT5947956] Output file was found but is zero sized - Deleted
    [3/15/12 4:13:51 AM] [UNEXPECTED] [2103265:RT5947956] java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:677)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:425)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:244)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:6032)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3459)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3548)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:302)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:176)
    Caused by: oracle.xdo.parser.v2.XSLException: <Line 12, Column 34>: XML-22047: (Error) Invalid instantiation of 'xsl:with-param' in 'DPHEVD' context.
         at oracle.xdo.parser.v2.XSLStylesheet.flushErrors(XSLStylesheet.java:1534)
    The error is : Caused by: oracle.xdo.parser.v2.XSLException: <Line 12, Column 34>: XML-22047: (Error) Invalid instantiation of 'xsl:with-param' in 'DPHEVD' context.
    I checked my XSL template and corrected that line.
    even after the correction it the error still remains. In fact i deleted the line12. But it still shows that the line exists.
    I updated the template many times but it keeps picking a wrong template.
    Need help on this issue.
    Thanks

    Please post the details of the application release, database version and OS.
    I checked my XSL template and corrected that line.
    even after the correction it the error still remains. In fact i deleted the line12. But it still shows that the line exists.
    I updated the template many times but it keeps picking a wrong template.Please create a new template and check then. Also, bounce the OPP.
    Thanks,
    Hussein

  • Need help with General Error message

    I am in desperate help on trying to capture video from my camera and I keep getting a General Error message.
    I'm using FCE HD 3.0
    Camera is Panasonic DVC60
    I've hooked up the camera, named the project, clicked Capture, the camera window opens
    Now I've tried 2 different ways, 1) start video and hit Capture Now, It gives me the General Error.
    2) I've restarted everything, in the Capture window, I've set in and out points, clicked capture Clip, General Error message.
    What is wrong? Please help!

    Through away the QuickTime player from the Applications folder.
    Go to Hard drive/Library/Receipts and throw away the QuickTime receipts.
    http://www.apple.com/support/downloads/quicktime72formac.html
    Trash the preferences like this
    http://www.fcpbook.com/Misc1.html

  • Error in Inbound B2B: AIP-50031:  B2B adapter general error: java.lang.Null

    Hi,
    I am getting the following error in inbound B2B - Custom Document over Generic Exchange - SFTP
    Description: B2B adapter general error
    StackTrace:
    Error -: AIP-50031: B2B adapter general error
         at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1900)
         at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2657)
         at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2527)
         at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2482)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:530)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:376)
         at java.lang.Thread.run(Thread.java:534)
    ]]>
    The outbound B2B is working fine; however for the inbound file transfer the file is picked up from the trading partner and this exception occurs.
    Thanks

    Please paste more log in trace 32 mode. What is the name of the file you are receiving? By default B2B expects incoming filename as -
    <FromTPName>UniqueId.<anyFile_Extn>
    For e.g., if partner MarketInc is sending the file then it's name should be - MarketInc_12345.dat or MarketInc_34567.xml
    Make sure that listening channel is not marked as internal as well.
    Regards,
    Anuj

Maybe you are looking for