Catching Fault Messages when using a webservice

Hi all.
We are using a webservice that looks like this.
nonSAP-system <-> XI <-> SAP
A nonSAP-system asks for some information from a SAP-system. When we get an error of some kind we want to return the errormessage to the nonSAP-system so they will know what went wrong.
For first we want to try to return the errormessage generated in XI or the SAP-system and when we get that to work we want to be able to generate our own faultmessages so we specific what went wrong in the in the call.
We have looked around in the help pages and not getting a good picture on how to do this. Is there anybody who could help me out?
BR
Kalle

Hi,
Check these
/people/shabarish.vijayakumar/blog/2006/11/02/fault-message-types--a-demo-part-1
http://help.sap.com/saphelp_nw04/helpdata/en/5d/a45c3cff8ca92be10000000a114084/frameset.htm
i have documented a fault message scenario through my blog;
/people/shabarish.vijayakumar/blog/2006/11/02/fault-message-types--a-demo-part-1
Handling Web Service SOAP Fault Responses in SAP NetWeaver XI -
/people/jin.shin/blog/2007/05/21/handling-web-service-soap-fault-responses-in-sap-netweaver-xi
http://help.sap.com/saphelp_nw04/helpdata/en/5d/a45c3cff8ca92be10000000a114084/content.htm
check this nice blog also
/people/shabarish.vijayakumar/blog/2006/11/02/fault-message-types--a-demo-part-1
http://help.sap.com/saphelp_nw2004s/helpdata/en/5d/a45c3cff8ca92be10000000a114084/content.htm
Asynchronus RFC  exception handling
XI Alerts are not getting triggered from proxy servers
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ee5bc490-0201-0010-e9b5-
a258cf083bca
/people/sap.user72/blog/2006/01/16/xi-propagation-of-meaningful-error-information-to-soap-client
Fault Message
Regards
Seshagiri

Similar Messages

  • Throwing fault message WebProxy generated over webservices

    I have a requirement to throw fault message when ever there is any exception caught in webservice. I have written a xsd for Fault Type and using the same in all webservices. But the problem is when generating webProxy it is generating multiple Fault Message java class for each webservice.
    Constraint I want to apply is .. When generating WebProxy for these webservices, it should generate single fault message class for the Fault type.
    How to achieve this?
    Sample webservice that I have created -
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions name="UserRegistrationService" targetNamespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" xmlns:tns="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" xmlns:inp1="http://portal.nv.gov/EnterpriseObjects/CBO/PortalAccount" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:flt1="http://portal.nv.gov/EnterpriseObjects/Common" xmlns:out1="http://portal.nv.gov/EnterpriseObjects/CBO/PortalAccount">
    - <wsdl:documentation>
    <abstractWSDL>http://IN-BLR-SOADEVL.corp.capgemini.com:8001/soa-infra/services/default/UserRegistrationService!2.3/UserRegistrationService.wsdl</abstractWSDL>
    </wsdl:documentation>
    - <wsdl:types>
    - <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://portal.nv.gov/EnterpriseObjects/CBO/PortalAccount" schemaLocation="http://10.74.100.28:7001/CoreObjectsLibrary/Schema/v1.0/CBM/PortalAccountCBM.xsd" />
    </schema>
    - <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://portal.nv.gov/EnterpriseObjects/Common" schemaLocation="http://10.74.100.28:7001/CoreObjectsLibrary/Schema/v1.0/Primitives/FaultType.xsd" />
    </schema>
    </wsdl:types>
    + <wsdl:message name="UserRegistrationServiceRequestMessage">
    <wsdl:part name="request" element="inp1:SyncPortalAccountCBM" />
    </wsdl:message>
    - <wsdl:message name="UserRegistrationServiceResponseMessage">
    <wsdl:part name="reply" element="inp1:SyncPortalAccountResponseCBM" />
    </wsdl:message>
    - <wsdl:message name="faultMessage">
    <wsdl:part name="fault" element="flt1:Fault" />
    </wsdl:message>
    - <wsdl:message name="validateUserNameAccountRequestMessage">
    <wsdl:part name="request" element="inp1:ValidatePortalAccountUsernameCBM" />
    </wsdl:message>
    - <wsdl:message name="validateUserNameAccountResponseMessage">
    <wsdl:part name="reply" element="inp1:ValidatePortalAccountUsernameResponseCBM" />
    </wsdl:message>
    - <wsdl:message name="validateEmailIdAccountRequestMessage">
    <wsdl:part name="request" element="inp1:ValidatePortalAccountEmailIdCBM" />
    </wsdl:message>
    - <wsdl:message name="validateEmailIdAccountResponseMessage">
    <wsdl:part name="reply" element="inp1:ValidatePortalAccountEmailIdResponseCBM" />
    </wsdl:message>
    - <wsdl:message name="activatePortalAccountRequestMessage">
    <wsdl:part name="request" element="inp1:ActivatePortalAccountCBM" />
    </wsdl:message>
    - <wsdl:message name="activatePortalAccountResponseMessage">
    <wsdl:part name="reply" element="inp1:ActivatePortalAccountResponseCBM" />
    </wsdl:message>
    - <wsdl:message name="requestMessage">
    <wsdl:part name="request" element="inp1:AssociateExistingBusinessRequsetCBM" />
    </wsdl:message>
    - <wsdl:message name="replyMessage">
    <wsdl:part name="reply" element="inp1:AssociateExistingBusinessResponseCBM" />
    </wsdl:message>
    - <wsdl:portType name="UserRegistrationService">
    - <wsdl:operation name="createPortalAccount">
    <wsdl:documentation>This operation is used to create a Portal Account.</wsdl:documentation>
    <wsdl:input message="tns:UserRegistrationServiceRequestMessage" />
    <wsdl:output message="tns:UserRegistrationServiceResponseMessage" />
    <wsdl:fault name="PortalAccountFault" message="tns:faultMessage" />
    </wsdl:operation>
    - <wsdl:operation name="editPortalAccount">
    <wsdl:documentation>THis operation is used to update or edit a user portal account.</wsdl:documentation>
    <wsdl:input message="tns:UserRegistrationServiceRequestMessage" />
    <wsdl:output message="tns:UserRegistrationServiceResponseMessage" />
    <wsdl:fault name="PortalAccountfault" message="tns:faultMessage" />
    </wsdl:operation>
    - <wsdl:operation name="validateUserName">
    <wsdl:documentation>This operation is used to validate whether a username is unique or not.</wsdl:documentation>
    <wsdl:input message="tns:validateUserNameAccountRequestMessage" />
    <wsdl:output message="tns:validateUserNameAccountResponseMessage" />
    <wsdl:fault name="PortalAccountfault" message="tns:faultMessage" />
    </wsdl:operation>
    - <wsdl:operation name="validateEmailId">
    <wsdl:documentation>This operation is used to validate whether a emailid is unique or not.</wsdl:documentation>
    <wsdl:input message="tns:validateEmailIdAccountRequestMessage" />
    <wsdl:output message="tns:validateEmailIdAccountResponseMessage" />
    <wsdl:fault name="PortalAccountfault" message="tns:faultMessage" />
    </wsdl:operation>
    - <wsdl:operation name="activateUserProfile">
    <wsdl:documentation>This operation is used to activate a user account in Portaldatabase.</wsdl:documentation>
    <wsdl:input message="tns:activatePortalAccountRequestMessage" />
    <wsdl:output message="tns:activatePortalAccountResponseMessage" />
    <wsdl:fault name="PortalAccountfault" message="tns:faultMessage" />
    </wsdl:operation>
    - <wsdl:operation name="Authenticate">
    <wsdl:documentation>This operation is used to authenticate and create account in TAX, UCM and eSoS.</wsdl:documentation>
    <wsdl:input message="tns:requestMessage" />
    <wsdl:output message="tns:replyMessage" />
    <wsdl:fault name="Authenticatefault" message="tns:faultMessage" />
    </wsdl:operation>
    - <wsdl:operation name="forgotUserName">
    <wsdl:documentation>This operation is used to send username to a registered Email-Id.</wsdl:documentation>
    <wsdl:input message="tns:UserRegistrationServiceRequestMessage" />
    <wsdl:output message="tns:UserRegistrationServiceResponseMessage" />
    <wsdl:fault name="fault" message="tns:faultMessage" />
    </wsdl:operation>
    - <wsdl:operation name="changePassword">
    <wsdl:documentation>This operation is used to change password on OIM..</wsdl:documentation>
    <wsdl:input message="tns:UserRegistrationServiceRequestMessage" />
    <wsdl:output message="tns:UserRegistrationServiceResponseMessage" />
    <wsdl:fault name="fault" message="tns:faultMessage" />
    </wsdl:operation>
    </wsdl:portType>
    - <wsdl:binding name="UserRegistrationServiceBinding" type="tns:UserRegistrationService">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="createPortalAccount">
    <soap:operation style="document" soapAction="createPortalAccount" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="PortalAccountFault">
    <soap:fault name="PortalAccountFault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="editPortalAccount">
    <soap:operation style="document" soapAction="editPortalAccount" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="PortalAccountfault">
    <soap:fault name="PortalAccountfault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="validateUserName">
    <soap:operation style="document" soapAction="validateUserName" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="PortalAccountfault">
    <soap:fault name="PortalAccountfault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="validateEmailId">
    <soap:operation style="document" soapAction="validateEmailId" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="PortalAccountfault">
    <soap:fault name="PortalAccountfault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="activateUserProfile">
    <soap:operation style="document" soapAction="activateUserProfile" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="PortalAccountfault">
    <soap:fault name="PortalAccountfault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="Authenticate">
    <soap:operation style="document" soapAction="Authenticate" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="Authenticatefault">
    <soap:fault name="Authenticatefault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="forgotUserName">
    <soap:operation style="document" soapAction="forgotUserName" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="fault">
    <soap:fault name="fault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    - <wsdl:operation name="changePassword">
    <soap:operation style="document" soapAction="changePassword" />
    - <wsdl:input>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" namespace="http://xmlns.oracle.com/UserRegistrationApp/UserRegistrationService/UserRegistrationService" />
    </wsdl:output>
    - <wsdl:fault name="fault">
    <soap:fault name="fault" use="literal" encodingStyle="" />
    </wsdl:fault>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:service name="UserRegistrationService">
    - <wsdl:port name="UserRegistrationService" binding="tns:UserRegistrationServiceBinding">
    <soap:address location="http://10.74.100.28:8001/soa-infra/services/default/UserRegistrationService/UserRegistrationService" />
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Thanks,
    Rajdeep

    Hi Frank,
    In response to " the web service proxy doesn't generate the methods but exposed the WS port for you" .
    There is a operation getAllDepartments() in your WebService.
    I referred to link provided and in Class WsPrxyWrapperBean.java -
    there is a method getAllDepartments() where wsport.getAllDepartments() is called to return the Departments.
    In the WSDL i have provided the operation is supposed to return a responseDataType ... but Proxy created is not having any method like that.
    I hope I made it more clear this time. Or Just creating a WebProxy on top the provided WSDL will show that Port is not having the proper methods.
    Thanks,
    Rajdeep

  • Error message when using search

    why do i keep getting an error message when using the "search" tabe in iTunes. This happend whe i upgraded t the latest version of itunes.

    Well, I believe JHeadstart does not really have this functionality.
    One way is use a Query Operator 'startsWith', but then you always query like LIKE '<entered search value>%'
    This is probably not what you want...
    But you could hack it into advancedSearch in YourApplicationModuleImpl
    try {
    if (viewCriterium.getQueryValue() != null) { //This is where exception JHS-00116 is raised...
    value = viewCriterium.getQueryValue().toString();
    } else {
    value = null;
    catch (NumberFormatException ex) {
    //insert check for wildcard
    value = viewCriterium.getValue().toString();
    if (value.indexOf('%')>=0) {          
    sLog.debug("Ja, een wildcard!!!");
    operator = "LIKE";
    } else {//original exceptionhandling code here...
    ...and a bit later, add test for "LIKE":
    if (viewCriterium.isDate() || viewCriterium.isString() || "LIKE".equals(operator)) {
    value = "'" + value + "'";
    very nasty code, and does not raise an exception for searches like '%xxx'
    Good luck,
    HJH
    Edited by: HJHorst on Mar 5, 2009 12:03 AM

  • ERROR MESSAGE WHEN USING PACK COMMAND   Missing file ////presenter.css   Also:  "This course requires JavaScript to be enabled in your browser. Please enable JavaScript, then relaunch the course."  I have Java enabled in all browsers

    ERROR MESSAGE WHEN USING PACK COMMAND   Missing file ////presenter.css    Command then fails
    Also:  "This course requires JavaScript to be enabled in your browser. Please enable JavaScript, then relaunch the course."  I have Java enabled in all browsers
    Thoughts?  Using Presenter 10  Win 8.1  Intel I7  new HP with plenty of memory
                   Thanks

    I had saved one copy as an .asp but then resaved it to .xhtml 
    I'm assuming this is a static web site.  Rename (F2) all your pages with .html or .htm extension. 
    .xhtml is not a valid extension.
    Nancy O.

  • Error message when using xrpcc in JWSDP 1_0_01

    Dear all,
    I've got the following error message when using xrpcc of JWSDP 1_0_01 for my config.xml file.
    D:\jwsdp-1_0_01\Message>xrpcc -classpath build -both -d build config.xml
    error: invalid element "{http://java.sun.com/jax-rpc-ri/xrpcc-config}configurati
    on" in configuration file (line 2)
    The content of 'config.xml' is shown as follows.
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/jax-rpc-ri/xrpcc-config">
    <rmi name="MessageService"
    targetNamespace="http://messageuri.com/wsdl"
    typeNamespace="http://messageuri/types">
    <service name="MyMessage" packageName="Message">
    <interface name="Message.MessageIF"
    servantName="Message.MessageImpl"/>
    </service>
    </rmi>
    </configuration>
    Thank you for your kind attention!
    Regards,
    Eddie

    Thanks all! I've already solved my previous problem, however, i got another one now.
    =========================================================
    error: unknown model info in configuration file (line 5)
    =========================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <rmi name="MessageService"
    targetNamespace="http://messageuri.com/wsdl"
    typeNamespace="http://messageuri.com/types">
    <service name="MyMessage" packageName="Message">
    <interface name="Message.MessageIF"
    servantName="Message.MessageImpl" />
    </service>
    </rmi>
    </configuration>
    Thanks,
    Eddie

  • Error message when using FM 'BAPI_BUPA_ADDRESS_CHANGE'.

    I'm continually getting an error message when using FM 'BAPI_BUPA_ADDRESS_CHANGE'. The message being 'Table BAPIADTEL entry to be changed not found in target system'.
    I have looked up this message but all links seem to refer to FM 'BAPI_BUPA_CENTRAL_CHANGE', which I'm not using, and has different parameter settings.
    I'm simply trying to update the telephone number and I'm updating strcuture BAPIADTEL and BAPIADTELX but still the message appears. I know that there is a really simple reason for this, but I have been double-checking everything and experimenting with lots of different areas, but with no effect.
    Has anyone encountered this problem using the specific FM ''BAPI_BUPA_ADDRESS_CHANGE' ?.
    Jason

    Hi Jason,
    In case your database tables had already value for field telephone number, then only the flag should be "U".
    If the telephone number field was empty, and we will try to change it by using the flag as U, it wont work. In this case, we should be using "I".
    I even wrote that before in this post, but somehow I guess the post was locked, and a lot of comments from you and me were not visible apart from the first two. So, I couldnt get any update from you.
    Anyway, its good that its working for you. Thank you for the update.
    Regards,
    Susanta

  • Error Message-When using DataScroller

    Hi
    I get the following error message when using DataScroller. I am using Oracle Jdeveloper 9i production release.
    Application Error
    Return
    Error Message: null
    java.lang.NullPointerException
         int oracle.jbo.server.ViewRowSetIteratorImpl.scrollRange(int)
         int oracle.jbo.server.ViewRowSetImpl.scrollRange(int)
         int oracle.jbo.server.ViewObjectImpl.scrollRange(int)
         int oracle.jbo.html.jsp.datatags.RowsetNavigateTag.doStartTag()
         void DataHandlerComponent.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.ServletRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.GetParametersRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.EvermindPageContext.include(java.lang.String)
         int oracle.jbo.html.jsp.datatags.ComponentTag.doStartTag()
         void Rate.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.ServletRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.GetParametersRequestDispatcher.include(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.EvermindPageContext.include(java.lang.String)
         void BrowseTab.jspService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
         void oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
         void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
         void com.evermind.server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest, javax.servlet.http.HttpServletResponse)
         boolean com.evermind.server.http.HttpRequestHandler.processRequest(com.evermind.server.ApplicationServerThread, com.evermind.server.http.EvermindHttpServletRequest, com.evermind.server.http.EvermindHttpServletResponse, java.io.InputStream, java.io.OutputStream, boolean)
         void com.evermind.server.http.HttpRequestHandler.run(java.lang.Thread)
         void com.evermind.util.ThreadPoolThread.run()

    Issue has been resolved .Ingnore this

  • Adobe Air error message when using  PSE 10

    When I try using the tips in PSE 10 I get an error message from Adobe Air stating that it is damaged. Have tried uninstalling and re-installing, but that hasn't helped. I have windows 7

    Okay Jeff, this is as far as I have gotten so far. I'm using Air version 3.2.0.2070.  This is the install log.
    Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -silent -eulaAccepted -programMenu AdobeHelp.air
    Installed runtime (2.6.0.19120) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Invoking Application Installer for combined install
    Launching subprocess with commandline C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air
    Application Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -runtime C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air
    Installed runtime (2.6.0.19120) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Unpackaging file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air to C:\Users\Vette\AppData\Local\Temp\flaE4EA.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'chc' and pubID '4875E02D9FB21EE389F73B8D1702B320485DF8CE.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\fla71A.tmp
    Native installation package creation succeeded
    Starting silent combined runtime update and app install.
    Updating runtime from version 2.6.0.19120 to version 2.6.0.19140.
    Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 3.5.23 to C:\Program Files (x86)\Adobe  using the source file at file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air
    Reinstalling C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp\setup.msi
    Installing msi at C:\Users\Vette\AppData\Local\Temp\fla71A.tmp\setup.msi with guid {BD7F1DA3-5EA0-65F8-52B0-5E103FDC045A}
    Application Installer end with exit code 0
    Subprocess app installer succeeded
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -silent "E:\Adobe Photoshop Elements 10\AdobePhotoshopDotcomInspirationBrowser.air"
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Invoking Application Installer for combined install
    Launching subprocess with commandline C:\Users\Vette\AppData\Local\Temp\AIR4EA4.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Vette\AppData\Local\Temp\AIR4EA4.tmp -silent -withRuntime -url file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air
    Application Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -runtime C:\Users\Vette\AppData\Local\Temp\AIR4EA4.tmp -silent -withRuntime -url file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Unpackaging file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air to C:\Users\Vette\AppData\Local\Temp\fla634C.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'PhotoshopdotcomInspirationBrowser' and pubID '4C35C4D325D350FE0114230CBADCA2DDD0AC8D25.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\fla7325.tmp
    Native installation package creation succeeded
    Starting silent app installation to C:\Program Files (x86)\Adobe. Installing app PhotoshopdotcomInspirationBrowser.4C35C4D325D350FE0114230CBADCA2DDD0AC8D25.1 version 3.07 using the source file at file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air
    Installing msi at C:\Users\Vette\AppData\Local\Temp\fla7325.tmp\setup.msi with guid {4C184855-B85A-6873-C642-60A58682E721}
    Application Installer end with exit code 0
    Subprocess app installer succeeded
    Runtime Installer end with exit code 0
    Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -updatecheck
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.6.0.19140/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.6.0.19140/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Unpackaging complete
    Download success
    Runtime updated downloaded
    User has selected immediate install of the update
    Starting runtime background update installation
    Launching subprocess with commandline C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update
    Runtime updater successfully launched
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -update
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\airafa3.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_704_0 -ei
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Starting silent runtime update. Updating runtime from version 2.6.0.19140 to version 3.1.0.4880
    Installing msi at c:\users\vette\appdata\local\temp\airafa3.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    Runtime Installer end with exit code 0
    Elevated install completed
    Runtime Installer end with exit code 0
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -updatecheck
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Clearing unused background update directory
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -arp:uninstall
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Runtime Installer end with exit code 6
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is:
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\aire7af.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_4784_0 -ei
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Starting silent runtime update. Updating runtime from version 3.1.0.4880 to version 3.2.0.2070
    Installing msi at c:\users\vette\appdata\local\temp\aire7af.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -installupdatecheck
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -arp:uninstall
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Relaunching with elevation
    Launching subprocess with commandline c:\program files (x86)\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_3840_0 -eu
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Starting runtime uninstall. Uninstalling runtime version 3.2.0.2070
    Uninstalling product with GUID {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is:
    No installed runtime detected
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\airbda4.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_764_0 -ei
    No installed runtime detected
    Starting silent runtime install. Installing runtime version 3.2.0.2070
    Installing msi at c:\users\vette\appdata\local\temp\airbda4.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -installupdatecheck
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is:
    No installed runtime detected
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\air2fa8.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_5396_0 -ei
    No installed runtime detected
    Starting silent runtime install. Installing runtime version 3.2.0.2070
    Installing msi at c:\users\vette\appdata\local\temp\air2fa8.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -installupdatecheck
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Application Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -playerVersion=11,2,202,233 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -url http://www.adobe.com/support/chc/air/350/AdobeHelp.air -- WWW aHR0cDovL3d3dy5hZG9iZS5jb20vc3VwcG9ydC9jaGMv
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Begin air file download from http://www.adobe.com/support/chc/air/350/AdobeHelp.air
    Download destination is C:\Users\Vette\AppData\Local\Temp\fla7A97.tmp
    Received download status 200
    Response URL is http://www.adobe.com/support/chc/air/350/AdobeHelp.air
    Download success
    Unpackaging file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp to C:\Users\Vette\AppData\Local\Temp\flaB22B.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'chc' and pubID '4875E02D9FB21EE389F73B8D1702B320485DF8CE.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\flaC7B.tmp
    Native installation package creation succeeded
    Starting app installation to C:\Program Files (x86)\Adobe. Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 3.5.23 using the source file at file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Directory can't be written to" errorID=5006]
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)\Adobe" -desktopShortcut -programMenu file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Relaunching with elevation
    Application Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_4952_0 -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)\Adobe" -desktopShortcut -programMenu file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Unpackaging file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp to C:\Users\Vette\AppData\Local\Temp\fla3260.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'chc' and pubID '4875E02D9FB21EE389F73B8D1702B320485DF8CE.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\fla3BF3.tmp
    Native installation package creation succeeded
    Starting silent app installation to C:\Program Files (x86)\Adobe. Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 3.5.23 using the source file at file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Installing msi at C:\Users\Vette\AppData\Local\Temp\fla3BF3.tmp\setup.msi with guid {BD7F1DA3-5EA0-65F8-52B0-5E103FDC045A}
    Application Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline C:\Program Files (x86)\Adobe\Adobe Help\Adobe Help.exe
    Application Installer end with exit code 0
    Date: Thu, 12 Apr 2012 17:10:46 -0600
    From: [email protected]
    To: [email protected]
    Subject: Adobe Air error message when using  PSE 10
        Re: Adobe Air error message when using  PSE 10
        created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    Vetteski65 I would recommend reviewing Troubleshoot AIR installation | Windows - http://helpx.adobe.com/air/kb/troubleshoot-air-installation-windows.ht ml for steps on how to resolve your difficulties.  Please feel free to respond to this thread if you have any questions about the steps listed within the document.  If you could also respond with the specific error message you receive it would be appreciated.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4331328#4331328
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4331328#4331328. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Licence error message when using automation software

    Error message when using Rational Functional Tester 7.0.1.1
    to record a Flex application. The message seemed to come from the
    Flex application.
    I can record a fiew step in the application, then I have the
    message : "Licence are not present. Eith the trial version only
    limited record are allowed". But, my license of my Rational
    Functional Tester application is activated.
    I am using a Flex builder 3 trial version and the trial is
    not over.
    Is there any problem to get the license in the File compiler
    with "D:\apps\IBM\SDP70\FunctionalTester\bin\rft.swc"? That RFT
    file is supposed to be included in the flex application once
    compile

    Does anyone know how to build with automation support in a
    linux environment?
    We simply run an ant script build and have the SDK installed.
    We purchased Flex Builder Professional, but cannot install on Linux
    (we don't want to use the alpha version).
    Thanks for any pointers :)

  • Dreamweaver CC generates one of 3 error messages when using find and replace on Win 8.1 64 bit.

    Dreamweaver CC generates one of 3 error messages when using find and replace is used more than twice in succession. "While executing onLoad in bc_afterSave.htm, the following JavaScript error(s) occurred: At line 188 of file C:\Program Files (x86)\Adobe|Adobe DreamweaverCC|Configuration|Shared|BC\JS\bc_sites.js": out of memory"
    or
    While executing runCommand in File_Save.htm, a JavaScript erroroccurred.
    or
    While exciting getDynamicContent inAdressURL.htm, a Javascript erroroccirred.
    Any thoughts - I end up closing DWCC and reopening. Will work for two additional Find and Replace before the error messaged\s popup again.

    bkaufman43 wrote:
    Thanks Jon. I tried all of those solutions before posting. Same problem. It seems that the problem is tied to DWCC. Do not have the problem when using DW6 on Win8.1. When running DWCC on a Win7 pc, we get the same error message. When running DW6 on Win 7, f&c works fine. It seems to be a bug in DWCC. DWCC works flawlessly on our Macs.
    The same steps apply to DWCC, you just need to choose the CC folders rather than the DWCS4-6 versions that the page talks about. The layout of CC's folders hasn't changed from the older versions which is why, I think, Adobe hasn't updated the troubleshooting page as of yet.
    As Nancy mentions, a 38,500 page site is sort of ridiculously large for a static website, that could be part of the problem, but your response quoted above leads me to think you may have tried the troubleshooting steps in the wrong version of the program. Could you confirm that?

  • I'm getting a error message when using Apple Configurator "unable to send ClearPasscode command to device"

    I'm getting a error message when using Apple Configurator "unable to send ClearPasscode command to device"

    Yes, that is correct.  My spreadsheet has the following information in those cells if you want to compare yours on Monday:
    Product Type
    Application
    |
    AdamId:
    <and a 9 digit number>
    I ended up bringing the Macbook Pro home with me after struggling with it for a half hour at the end of a long day. I called and within 5 minutes the problem was corrected.  The technician said they were getting calls all day. 

  • I cannot paste into the body a a Gmail message when using FFox but can di so using IE.altho

    I cannot paste into the body a a Gmail message when using Firefox but can do so using IE
    Occasionally when I paste only portion of the text appears but now I cannot paste any text at ll

    Hello ymda, '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings, disables most add-ons (extensions and themes).
    Restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Thank you

  • Difference in Fault message types & exceptions for Webservice in ABAP

    Hello all,
    I am relatively new to the web service framework in SAP. My problem scenario is as follows.
    I have a WSDL file of a webservice from 3rd party non-SAP s/w  and I want to replicate the same webservice into SAP by creating FM in SE37 with same imp/exp parameters and functionality.
    So I first created a consumer proxy using the external WSDL file of non-SAP webservice. This generated imp/exp DDIC structures in SAP. Now I created a RFC FM in SE37 with similar Imp/exp parameters and relesed this FM as a webservice.  I then created another consumer proxy using WSDL of this newly created webservice in SAP.
    In the old consumer proxy I see a structure as SOAPFault as a Fault message type which has 3 fields ERRORCODE, TEXT, DETAILS but in the newly created consumer proxy I don't see Fault message types but i see exceptions which i mentioned in exception tabs while creating the FM. The imp/exp parameters are identical.
    So my question is while creating a web service in SAP using a FM in SE37, what needs to be done in order to get the Fault message types getting created automatically when we create a consumer proxy for this webserivice?
    Also based on the WSDL of 3rd party system , can i replicate the same web service in SAP ?
    Appreciate your expert advice on this.
    BR
    Nilesh Puranik

    Hi Krishna,
    I've read the SAP description about Fault Message Types but I'm still struggling on how to use them correctly.
    Why do we need them if I can't do nothing with it on the BPM side? After the mapping of the FMT, I'd like to acess it so that I can send a description back to the original system...The thing is, in BPM you can't acess the FMT, you can only create a new BRANCH (on a block step) for it...
    I've tried to acess the description text on trace which comes with the message, but it seems that the trace only serves for posting info, and not for getting any...
    The Mapping Runtime Constants have some information where you can read some descriptions, but nothing related to the errors....You can read the Receiver service, sender, interface_namespace, but nothing from the ERROR tag...
    Is there a way to get the description? Or anything related to the error tag?
    Thanks in advance

  • Error message when using Spry Data set with XML

    Hi,
    I have what i see as a big problem, might just be me being
    dumm, but here we go.
    When I try to use the feature of spry XML Data Set and insert
    spry table I get error message when trying it in IE 7.
    There are even a problem when I use fireworks automated slide
    show function, where you can choose to use the Spry/XML gallery
    feature.
    The error message I get everytime (incl the auto gallery in
    fireworks) is:
    The tag: "html" doesn't have an attribute: "xmlns:spry" in
    currently active versions.[XHTML 1.0 transitional]
    The tag: "div" doesn't have an attribute: "spry:region" in
    currently active versions.[XHTML 1.0 transitional]
    The tag: "th" doesn't have an attribute: "spry:sort" in
    currently active versions.[XHTML 1.0 transitional]
    and so on.
    What´s wrong?!

    Hello barvid,
    Ok, let's take each problem step by step:
    1. The first error you see in the browser: " Exception while
    loading ..." normally appears when you try to load files that are
    not permitted by the browser security model. This means the XML
    file you try to load is located on a different server than your
    HTML which is not allowed. The browser is not permitting to load
    any files that are not in the same domain as the current page
    because of the complex security risks. You'll have to either get
    the XML file from its original location and save it in your website
    or use a proxy on your web server that should request that file
    from the external server and send it to the browser as an XML from
    the same domain as the HTML origin.
    1.2 The "Exception while loading ..." error you see is a
    generic error and my previous advise is based on my experience. In
    case this is not your scenario you'll have to open the SpryData.js
    and around line 112 you'll see the following code:
    Spry.Debug.reportError("Exception caught while loading " +
    url + ": " + e);
    Please change this line with the following line of code:
    Spry.Debug.reportError("Exception caught while loading " +
    url + ": " + (e.message?e.message:e));
    to obtain a more verbose error message that may clarify the
    reasons of your errors.
    2. The problems you describe are not browser errors but they
    are w3c validation errors. At this point the XHTML standard allows
    every application that define custom namespace attributes to also
    link a DTD to the page so the page to continue to be valid.
    Unfortunately at this point this feature is not correctly supported
    by the FF and IE so we wrote an articles about how you should
    link
    the Spry DTD to your page so the validator understand the
    custom attributes Spry use. You'll find inside the full description
    of the problems and all the technical details you'll need to know
    to solve this issue.
    Regards,
    Cristian

  • Error message when using function module HRIQ_TESTRESULTS_CREATE

    Hi,
    I need your help, I'm trying to use function module HRIQ_TESTRESULTS_CREATE to create external test results, I've used this function before without subscores, now I need to create subscores, but I get the message: "Grading scale UBID applies".
    The test type EXAM_UB_ING has assigned the UBID academic scale, which has a range from 1 to 677. Test type EXAM_UB_ING has 3 subtests (grammar, listening and reading) which also have the UBID academic scale assigned.
    I think this isn't a customizing problem because I can create test results with subscores using the PIQST00 transaction, the error message happens just when using the function module.
    I'm using this import parameters:
    STUDENT:
    PL:           01
    OT:          ST
    OBJID:     Student ID
    TESTRESULTS_HEADER:
    ISSUEDATE                      08.02.2010
    VALIDDATE                      30.04.2010
    TEST_GUID
    TESTEO                         50000269
    TRANSEO                        00000000
    TESTTYPE                       EXAM_UB_ING
    SESSIONID                      T1
    SESSIONYEAR                    2010
    ENTRYDATE                      08.02.2010
    TESTPASSFAIL
    TESTTOTRES                     458
    TESTSCALE_ID
    TOTALPERCENT1                   0,00
    TOTALPERCENT2                   0,00
    ENTRYMODE
    SUBTY
    Table TESTRESULTS_SUBSCORES:
    SUBTESTID            GRAMMAR
    SUBTESTTRES      GRAMMAR
    SUBT                     203
    SUBTESTID            READING
    SUBTESTTRES      READING
    SUBT                     120
    Does anybody know which could be the error? Or any other function module which I can use? (with HRIQ_TESTRESULTS_PROCESS_DATA I get the same error message).
    Thanks in advance!
    Araceli

    Araceli,
      I just noticed. You are populating SUBTESTSCALE_ID in subtest result structure.That's the reason it's throwing this error. it is trying to match Scale ID from test with value in sub test result scale ID.
    Prabhat Singh

Maybe you are looking for

  • VI locked for no reason

    We had an issue with an executable delivered to our customer. When they started the executable, it displayed an error message, not the exact words, but something like 'Cannot load the front panel of ... Mean.vi'.  We have updated the executables a fe

  • Trying to get ready for home loan.. Should I apply for more credit

    My plans are to apply for a home loan in January, currently I have  1 line of credit 1 cc3 installmentIs it okay to apply for more cards, I have always heard not to apply for new credit before you apply for a home loan, but I need points. The baddies

  • How can I get back to English?

    somehow the page came on that has all languages on it. Before I could get off, I accedentally hit a different language . just need English again please.

  • Aperture 2.0 (YES!) Education Pricing

    So I'm downloading the trial now!!! But I want to clarify: Aperture 1.5 Academic users aren't eligible for the upgrade, right? And we must pay $179 or $199. Apple what happened? Is that true? It seems that it worth Academic users getting the full ver

  • 195706.11 + 4669.53 = 200375.63999999998 ?!? WTF?

    I am writing a program that has to read transaction amounts from a file and add make sure that the previous balance + transactions = current balance. I have been getting errors that the accounts are out of balance because of things like this: 195706.