Accessing fault string element

I have successfully created and deployed a web service using the JDev 1033. When there in is an error how can we set the fault string in the response using the method in the Impl class ?
I am able to set the fault details without any issue. How do I access the fault string object ?
Thanks
Edited by: mat on Dec 8, 2008 5:33 AM

Hi
If you want to access the value of an element with in the view. You have to create the required attributes as per your application.
For perform data binding  select the UI element in the layout tab and go to properties assign the value property to the appropriate context attribute by choosing the Value properties.
If you want to access the UI elemnt value of one view to another view then your data must exist in th component controller.
Go through the simple tutorial it helps you understand the context mapping, data binding
http://help.sap.com/saphelp_nw04/helpdata/en/fd/ed32a8c9994b4ba4a1645a764814db/content.htm
regards
ambicasony

Similar Messages

  • Accessing a JSF element from a back bean method

    Hi,
    short question, can I access the JSF element from a back bean method?
    So, for example, if I have the following JSF code:
    <h:panelGroup id="test1" rendered="#{bean.someMethod}">...</h:panelGroup>
    <h:panelGroup id="test2" rendered="#{bean.someMethod}">...</h:panelGroup>
    <h:panelGroup id="test3" rendered="#{bean.someMethod}">...</h:panelGroup>
    Can I found out in some way, which element (esp. which ID) calls the someMethod-method?
    Kind regards
    Matthias

    There are more possibilities as well. If you depend it on for example the User's rights/groups, then you can also do for example:
    rendered="#{user.admin}" // getter = public boolean isAdmin()
    rendered="#{user.groupName == 'admin'}" // getter = public String getGroupName()
    rendered="#{user.groupId > 1}" // getter = public int getGroupId()
    rendered="#{fn:contains(user.groups, 'admin')}" // getter = public String[] getGroups() or public List<String> getGroups()
    etc..I think it's after all just a matter of learning about the capabilities of EL a bit more.

  • Is there a way of programmatically accessing fault/error/BIT information from the PXI-6723 during runtime?

    In fact can you access fault information for all PXI cards?  How do i detect that there is a fault with a board from within the software so i can report this to a higher level application?
    Thanks
    Martin

    Hi Robert,
    So in essence what you're saying is that if a component on the device fails there is no way to know this as long as the device is still communicating with the PC? It would appear that the Self Test function is a bit of a misnomer - it doesnt actually do what it says on the tin.
    So which of the 2000 errors can actually be returned by this function call?  I appreciate that there are a broad range of errors but I would like to know which one(s) can in reality be returned by this function.  I need to somehow categorise the errors into whether or not the device is healthy so i can communicate this to our customers software (wo have no knowledge of internal NI error codes) so they can decide whether the board needs replacing.  Of the 2000 error codes which of these could potentially relate to a hardware failure of some sort as opposed to a software configuration error.
    I have found this thread which details some error codes on a NI 446X device (is there something like this for all errors on all devices?):
    http://digital.ni.com/public.nsf/allkb/95328C2FAF9DA99A862576E200785C11?OpenDocument
    Lastly where in the NI DAQ help references are the list of error codes and meanings as listed in NIDAQmx.h.  For instance what does DAQmxErrorPALThreadControllerIsNotThreadCreator actually mean?  I don't want to wait for the error to occur in my system before I get information on what it means - it would be useful to know and understand before I write the software what errors may occur on each device.
    Thanks
    Martin

  • How can I access the selected element of a DropDownByIndex-box?

    Hi,
    I want to create a WebDynpro with two web services. I created the first request with the first web service and the results are displayed in a DropDownByIndex-Box. Now the user should choose one of the results and I would like to use this for the request with my second web service. How can I access the selected Element of a DropDownByIndexBox in the Code?
    Thank you!!
    Julia

    Hi Julia,
    when user select one element in drop down it automatically set lead selection of node binded to dropdown.
    For example if you bind a dropdown to node myNode with value attribute myAttribute the lead selection of node myNode is set in the position of element choose from user.
    So to take this chooised element use this code:
    wdContext.currentMyNodeElement.getmyAttribute()
    bye
    Andrea

  • XML into one string element

    Hello,
            In Graphical mapping, Could anyone pls tell me in detail about how to achieve One whole xml into one string element. This XML file i want to send to DATABASE.

    Thi blog might be of some help
    /people/michal.krawczyk2/blog/2005/11/01/xi-xml-node-into-a-string-with-graphical-mapping

  • How to pass a xml CDATA in string element when OSB calling a webservice?

    How to pass a xml CDATA in string element when OSB calling a webservice?
    I have a business service (biz) that route to operation of a webservice.
    A example of request to this webservice legacy:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:eg="example">
    <soapenv:Header/>
    <soapenv:Body>
    <ex:execute>
    <ex:arg><![CDATA[<searchCustomerByDocumentNumber>
    <documentNumber>12345678909</documentNumber>
    </searchCustomerByDocumentNumber>]]></ex:arg>
    </ex:execute>
    </soapenv:Body>
    </soapenv:Envelope>
    the type of ex:arg is a string.
    How to pass this CDATA structure to webservice in OSB?

    Steps to solve this problem:
    1. Create a XML Schema. E.g.:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
         elementFormDefault="unqualified">
         <xs:complexType name="searchCustomerByDocumentNumber">
              <xs:sequence>
                   <xs:element name="documentNumber" minOccurs="0">
                        <xs:annotation>
                             <xs:documentation>
                             </xs:documentation>
                        </xs:annotation>
                        <xs:simpleType>
                             <xs:restriction base="xs:string" />
                        </xs:simpleType>
                   </xs:element>
         </xs:sequence>
         </xs:complexType>
         <xs:element name="searchCustomerByDocumentNumber" type="searchCustomerByDocumentNumber"></xs:element>
    </xs:schema>
    With this XSD, the XML can be generate:
    <?xml version="1.0" encoding="UTF-8"?>
    <searchCustomerByDocumentNumber xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="searchCustomerByDocumentNumber.xsd">
    <documentNumber>documentNumber</documentNumber>
    </searchCustomerByDocumentNumber>
    2. Create a XQuery to create a searchCustomerByDocumentNumber ComplexType. E.g.:
    (:: pragma bea:global-element-return element="searchCustomerByDocumentNumber" location="searchCustomerByDocumentNumber.xsd" ::)
    declare namespace xf = "http://tempuri.org/NovoSia/CreateSearchCustomerByDocumentNumber/";
    declare function xf:CreateSearchCustomerByDocumentNumber($documentNumber as xs:string)
    as element(searchCustomerByDocumentNumber) {
    <searchCustomerByDocumentNumber>
    <documentNumber>{ $documentNumber }</documentNumber>
    </searchCustomerByDocumentNumber>
    declare variable $documentNumber as xs:string external;
    xf:CreateSearchCustomerByDocumentNumber($documentNumber)
    3. In your stage in pipeline proxy add a assign calling the XQuery created passing the document number of your payload.
    Assign to a variable (e.g.: called searchCustomerByDocumentNumberRequest)
    4. Create another XQuery Transformation (XQ) to create a request to the webservice legacy. E.g.:
    <ex:arg>{fn-bea:serialize($searchCustomerByDocumentNumberRequest)}</ex:arg>
    For more information about xquery serialize function:
    41.2.6 fn-bea:serialize()
    You can use the fn-bea:serialize() function if you need to represent an XML document as a string instead of as an XML element. For example, you may want to exchange an XML document through an EJB interface and the EJB method takes String as argument. The function has the following signature:
    fn-bea:serialize($input as item()) as xs:string
    Source: http://docs.oracle.com/cd/E14571_01/doc.1111/e15867/xquery.htm

  • How to receive a xml CDATA in string element when OSB calling a webservice?

    How to receive a xml CDATA in string element when OSB calling a webservice?
    I have a business service (biz) that route to operation of a webservice.
    A example of response to this webservice legacy:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:eg="example">
    <soapenv:Header/>
    <soapenv:Body>
    <ex:executeResponse>
    <ex:arg><![CDATA[<searchCustomerByDocumentNumberResponse>
    <name>John John</name>
    </searchCustomerByDocumentNumberResponse>]]></ex:arg>
    </ex:executeResponse>
    </soapenv:Body>
    </soapenv:Envelope>
    the type of ex:arg is a string.
    How to receive this CDATA structure to webservice in OSB?

    Similiar to the answer How to pass a xml CDATA in string element when OSB calling a webservice?
    Use the xquery function fn-bea:inlinedXML rather than fn-ben:serialize
    Steps to solve this problem:
    1. Create a XML Schema. E.g.:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="unqualified">
    <xs:complexType name="searchCustomerByDocumentNumberResponse">
    <xs:sequence>
    <xs:element name="name" minOccurs="0">
    <xs:annotation>
    <xs:documentation>
    </xs:documentation>
    </xs:annotation>
    <xs:simpleType>
    <xs:restriction base="xs:string" />
    </xs:simpleType>
    </xs:element>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="searchCustomerByDocumentNumberResponse" type="searchCustomerByDocumentNumberResponse"></xs:element>
    </xs:schema>
    2. Create a XQuery to create a searchCustomerByDocumentNumber ComplexType. E.g.:
    3. Create a XQuery Transformation (XQ) to get the CDATA response to the webservice legacy. E.g.:
    declare namespace ns0 = "novosiaws";
    declare function xf:getReponse($searchCustomerByDocumentNumberResponse as element(ns0:searchCustomerByDocumentNumberResponse))
    as element(searchCustomerByDocumentNumberResponse) {
    fn-bea:inlinedXML($searchCustomerByDocumentNumberResponse/ns0:arg)
    For more information about xquery function:
    fn-bea:inlinedXML
    The fn-bea:inlinedXML() function parses textual XML and returns an instance of the XQuery 1.0 Data Model.
    The function has the following signature:
    fn-bea:inlinedXML($text as xs:string) as node()*
    where $text is the textual XML to parse.
    Examples:
    fn-bea:inlinedXML(“<e>text</e>”) returns element “e”.
    fn-bea:inlinedXML(“<?xml version=”1.0”><e>text</e>”) returns a document with root element “e”.
    Source: http://docs.oracle.com/cd/E13162_01/odsi/docs10gr3/xquery/extensions.html

  • Please log-in with an admin account to access adobe premiere elements

    I have bought Premier Elements but it will not start. Keeps asking me to: "please log-in with an admin account to access adobe premiere elements". Then it closes.
    ASUS laptop, 17" Processor: i7- 4700HQ @2.4 GHz
    RAM 8 GB,   Win 8.1 64
    My account is Admin, and have started the program "As administrator."
    Have reinstalled elements.
    The computer ran a trial of Adobe Premiere Pro CC perfectly. Have uninstalled it to see if it fixes the problem.
    Quicktime ver. 7.7.5  It is up to date.

    johnminkara
    What version of Premiere Elements are you using on your Windows 8.1 64 bit computer? For now I will assume Premiere Elements 12.
    If you are running the program from a User Account with Administrative Privileges, then please apply Run As Administrator
    a. by right clicking the desktop icon and clicking on Run As Administrator
    or
    b. by right clicking the desktop icon, selecting Properties, and then putting a check mark next to Run As Administrator found at the bottom of Compatibility Tab's
    "Privilege Level". You could also apply Run As Administrator to the Adobe Premiere Elements.exe file, but one or the other above should do the job.
    In the final analysis, you may probably end up with Premiere Elements 12 uninstall usual Control Panel route, free ccleaner run through (regular cleaner and registry cleaner parts), and reinstall with antivirus and firewall(s) disabled. Did you use a "Clean Tool" for the removal of Adobe Premiere Pro CC.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    We will be watching for your results.
    Thank you.
    ATR

  • How to copy/access a string from inside the driver

    is there any equivalent to strncpy() to use inside
    the driver for copying user sent data to local buffer .
    i used I_STRioctl and assigned struct to strioctl.ic_dp
    as shown below..
    char * buf;
    struct user-data
    int minor;
    char* data;
    struct user_data u_data;
    buf="hello world"
    u_data.minor=0;
    u_data.data=buf;
    strioctl.ic_dp=&u_data;
    strioctl.ic_len=sizeof(struct user_data);
    ioctl(fd,I_STR,&strioctl);
    when i tried to copy/access the string sent by the user application from inside the driver, machine gets into
    booting ...
    here what i did was
    in wput routine
    struct user_data *u_data;    
    u_data =(struct user_data*)mp->b_cont->b_rptr;      
    cmn_err(CE_NOTE,"minor= %d",u_data->minor);
    till here working well..
    where as..
    cmn_err(CE_NOTE,"data= %s",u_data->data);
    causing panic to the system...booting happens.
    please help me out ..
    thank u all
    ss vasu

    looks like the data pointed to by 'data' is not copied from user space to kernel space.
    u_data.data=buf, just makes pointer assignment, does not copy data pointed to by buf.
    two solutions:
    1. Declare data as a array(char data[10] or something
    2. Copy buf after the structure and point data to it. strioctl.ic_len should be set to sizeof(struct) +
    data size.
    -Vijay
    is there any equivalent to strncpy() to use inside
    the driver for copying user sent data to local buffer
    i used I_STRioctl and assigned struct to
    strioctl.ic_dp
    as shown below..
    char * buf;
    struct user-data
    int minor;
    char* data;
    struct user_data u_data;
    buf="hello world"
    u_data.minor=0;
    u_data.data=buf;
    strioctl.ic_dp=&u_data;
    strioctl.ic_len=sizeof(struct user_data);
    ioctl(fd,I_STR,&strioctl);
    when i tried to copy/access the string sent by the
    user application from inside the driver, machine gets
    into
    booting ...
    here what i did was
    in wput routine
    struct user_data *u_data;
    u_data =(struct user_data*)mp->b_cont->b_rptr;
    r;
    cmn_err(CE_NOTE,"minor= %d",u_data->minor);
    till here working well..
    where as..
    cmn_err(CE_NOTE,"data= %s",u_data->data);
    causing panic to the system...booting happens.
    please help me out ..
    thank u all
    ss vasu

  • Give comprehensive API to access gradient mesh elements!

    Illustrator's gradient-mesh feature is a powerful and has created a completely different type of artwork.   We can see some of it by searching with Google search engine "gradient mesh image".   There we can see what some people have done with the gradient-mesh feature.    However, working manually with gradient-mesh can be very time-consuming and that has block this form of art.   It's very time-consuming and not economically efficient.
    I suggest that you offer an extensive API to get access to key elements of gradient-mesh so users can create their own scripts to speed up whatever they are doing.

    Hi all,
    verry good suggestions. The note The specified item was not found. solved my problem, nearls ;-).
    How it came to this?
    It has been a propper installed and working PI 7.10 SPS 6.
    After or during patching to SPS 7 anything went wrong in communication with the SLD. During investigation the user registering to the SLD was not allowed to do this any more and the entries inside SLD Administration for the two RFC connections were not available any more:
    1. SLD setting: NoneUnicodeGatewayRegistrationId for SLD_NUC was gone (deleted during patch)
    2. SLD setting: UnicodeGatewayRegistrationId for SLD_UC was gone (deleted during patch)
    3. SLD setting: StartRfcServer for true was gone (deleted during patch)
    4. User for SLD access was not alowed to access SLD
    This Blog is quite good /people/venugopalarao.immadisetty/blog/2007/03/15/adapter-engine-cannot-be-found-in-integration-directory but did not fit 100% my problem as well.
    The problem on my side was based on the fact that my system was upgraded from PI 7.00. It looked like that the users had not all permissions needed for a PI 7.10 system with SPS 7. I changed the permissions of the following users: PIRWBUSER, PIREPUSER, PIDIRUSER, PIAPPLUSER und PIAFUSER and added the following roles but I think that the main role is this one: SAP_BC_WEBSERVICE_PI_CFG_SRV
    SAP_BC_WEBSERVICE_PI_CFG_SRV
    SAP_SLD_ADMINISTRATOR
    SAP_SLD_CONFIGURATOR
    SAP_SLD_CONTENT_SYNC
    SAP_SLD_DATA_SUPPLIER
    SAP_SLD_DEVELOPER
    SAP_SLD_ORGANIZER
    SAP_SLD_SUPPORT
    SAP_XI_ID_SERV_USER
    SAP_XI_ID_SERV_USER_MAIN
    Maybe I will check later which one was really the reason for my problems.
    BR Markus

  • EInsight - Accessing Fault information when Catch All is used

    When you do a Catch all from a Scope, is it possible access the Fault information, so that it may be passed on to the caller of the process?
    -Mario

    yes you can access fault information in the catch block of BP and this can be set to pass back to the calling source.

  • No mapping at the fault address error while accessing the string variable

    Hi
    we have a application which runs fine on AIX and HP but is throwing error on SOLARIS.
    the application runs well (and use of string variables are also working fine ) till it hits Zone.cpp file
    where the string variable is not getting initialized and throws no mapping at the fault address
    the code snippet is as follows
    #include <string>
    #include <vector>
    const string ZONE_ATTR_TYPE_ZN("ZN");
    const string ZONE_ATTR_TYPE_FC("FC");
    const string ZONE_ATTR_TYPE_ST("ST");
    void Zone::AddAttributeValueAndCountryCode(const string &attributeValue,
                                                      Int attribSeq,
                                                      const string &countryCode,
                                                      ZoneSearchLocMap& zoneSearchLocMap)
         string key = "";
         if ((_attributeType == ZONE_ATTR_TYPE_FC) ||
              (_attributeType == ZONE_ATTR_TYPE_CT))
              key = _attributeType+DELIM+attributeValue;
    we are running it on
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-04 2008/04/16
    compiled with these option
    -g0 -xspace -KPIC -D_XPG5 -m32 -xarch=sparcvis -mt -DNCURSES -DEXC_HANDLING -DRW_NO_BOOL
    and the created the execuatble with these option
    -i -z rescan -g0 -xspace -mt -D_XPG5 -m32 -xarch=sparcvis -mt -DNCURSES -DEXC_HANDLING -DRW_NO_BOOL -lpthread -lsocket -lnsl -ldl -lposix4 -lCrun -lCstd -lc -lm -lnsl -lsocket
    the dbx output
    t@1 (l@1) program terminated by signal SEGV (no mapping at the fault address)
    where -h
    Current function is Zone::AddAttributeValueAndCountryCode
    56 if ((_attributeType == ZONE_ATTR_TYPE_FC) ||
    (dbx) where -h
    current thread: t@1
    =>[1] Zone::AddAttributeValueAndCountryCode(this = 0x194c088, attributeValue = CLASS, attribSeq = 1, countryCode = CLASS, zoneSearchLocMap = CLASS), line 56 in "Zone.cpp"
    [2] ZoneLoader::Load(trans = CLASS, zoneList = CLASS, prZoneList = CLASS, zoneSearchLocMap = STRUCT, planningCompany = 0x1890f20), line 90 in "ZoneLoader.cpp"
    [3] ZoneManager::ZoneManager(this = 0x1933e28, shipperId = 1000, consDBConnection = CLASS), line 24 in "ZoneManager.cpp"

    I see you are compiling with -KPIC. Is the code going into a shared library?
    Run "ldd" on all the C++ shared libraries you create, and on the main program. You should see a dependency on /usr/lib/libCrun.so.1 and /usr/lib/libCstd.so.1, and no dependency on any other libCrun or libCstd.
    Do you have a particular reason for using -D_XPG5? Changing the Unix version presented by the system headers in /usr/include can sometimes create incompatibilities with the C++ headers and runtime libraries that are intended for the default Unix version.
    Are all of the object files created with the same options, especially the -mt option?
    If none of the above considerations raise any red flags, you might have run into a bug in the compiler or the C++ runtime libraries, or you might have a bug in your code that by accident does not show up in other environments.
    There is no way to evaluate whether you have a compiler or runtime library bug without a test case that demonstrates the problem.
    You might have heap or other data corruption in your program due to invalid pointer use, use of an uninitialized variable, reading or writing outside the bounds of an object, double deletion of an object, use of an object after it has been deleted. You might also have an MT programming error where a critical region is not properly guarded, or where a shared variable is not declared volatile.
    By accident, data can be read or written incorrectly, or a data-race condition can exist, but without causing program failure. A program containing these errors can appear to run successfully on one platform and fail on another, or on the same platform under other conditions.
    Running the program under dbx with Run-Time Checking enabled will show many of these errors.
    The Thread Analyzer can find data race conditions.
    If you think you have found a problem with the compiler or libraries, please file a bug report at
    [http://bugs.sun.com]
    with a test case that can be compiled and run to show the problem.

  • Please Help - How do you access/read an element in array of strings

    Hi,
    I want to load up some VI's into subpanels and I have created a for next loop.  Outside the loop is my files and a build array function.  How do you read the first element of the string array?
    I have been programming in Agilent VEE Pro for several years and I am only just learning LabVIEW.  It seems very different!  In VEE, you could use a formula to pass the first element of an array. eg. Array[Element No]
    TIA

    Hi,
    Well, I did try this but I get this error message:
    You have connected a scalar (non-array) data type to an array of the same data type. This type conflict may be resolved by building the scalar type into an array. Check for a tunnel on a loop that has indexing incorrectly disabled.
    The type of the source is string.
    The type of the sink is 1-D array of
    double [64-bit real (~15 digit precision)].
    Attachments:
    MyCode.vi ‏8 KB

  • Help with Jaxb - AnyType access to sub-elements?

    Hi All,
    I am reading an XML file (defined with XML Schema) using Jaxb.
    I need one particular element to hold an arbitrary, but well formed, XML document (with any tags).
    As such I've defined this element to be of the type xs:anyType. (See payload)
    The AnyType Jaxb class however only appears to be giving me access to the text node strings (not sub-elements). (Notice its don't see <b> needs help </b>)
    I need the whole thing so I can pass it on to another parser.
    Any ideas? Is this supported in jaxb? Is this supported by XML Schema? Am I doing something wrong?
    See details below.
    Thanks!
    mike
    THE SCHEMA:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema elementFormDefault="qualified"
               attributeFormDefault="unqualified"
               jaxb:version="1.0"
               xmlns:xs="http://www.w3.org/2001/XMLSchema"
               xmlns:jaxb="http://java.sun.com/xml/ns/jaxb">
            <xs:element name="message" type="message"/>
            <xs:complexType name="message">
                    <xs:annotation>
                            <xs:appinfo>
                                    <jaxb:class name="XmlMessage"/>
                            </xs:appinfo>
                    </xs:annotation>
                    <xs:sequence>
                            <xs:element name="from" type="xs:string"/>
                            <xs:element name="to" type="xs:string"/>
                            <xs:element name="send-date" type="xs:date"/>
                            <xs:element name="payload" type="xs:anyType"/>
                    </xs:sequence>
            </xs:complexType>
    </xs:schema>
    THE DOCUMENT:
    <?xml version="1.0" encoding="UTF-8"?>
    <message xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:noNamespaceSchemaLocation="message.xsd">
         <from>Mike</from>
         <to>Java Community</to>
         <send-date>2006-03-23</send-date>
         <payload>Mike<b> needs help </b>parsing the AnyType</payload>
    </message>
    THE CODE:
            // get the fields
            String from = xmlMessage.getFrom();
            String to = xmlMessage.getTo();
            Calendar date = xmlMessage.getSendDate();
            AnyType payload = xmlMessage.getPayload();
            // print out the values
            System.out.println("FROM: " + from);
            System.out.println("TO: " + to);
            System.out.println("DATE: " + date.getTime());
            System.out.println("PAYLOAD: " + payload);
            // print out details regarding the payload (The AnyType list)
            System.out.println("\tAnyType list length = "
                    + payload.getContent().size());
            for (Iterator i = payload.getContent().iterator(); i.hasNext();) {
                Object o = i.next();
                System.out.println("\t" + o.getClass() + " : \"" + o + "\"");
            } THE OUTPUT:
    FROM: Mike
    TO: Java Community
    DATE: Wed Mar 22 19:00:00 EST 2006
    PAYLOAD: org.w3._2001.xmlschema.impl.AnyTypeImpl@1c99159
         AnyType list length = 2
         class java.lang.String : "Mike"
         class java.lang.String : "parsing the AnyType"

    Ok.
    source message:
    root
    - node0 (first instance)
    --- node1
    name="<b>key</b>"
    value="<b>my_key_value_1</b>"
    --- /node1
    --- node1
    name="attribute1"
    value="attribute1_value"
    --- /node1
    --- /node0
    - node0 (second instance)
    --- node1
    name="<b>key</b>"
    value="<b>my_key_value_2</b>"
    --- /node1
    --- node1
    name="attribute1"
    value="attribute1_value"
    --- /node1
    - /node0
    /root
    Desired destination message:
    root
    - node0 (first instance)
    - key_value=<b>my_key_value_1</b> <- does exist
    --- node1
    name="<b>key</b>"
    value="<b>my_key_value_1</b>"
    --- /node1
    --- node1
    name="attribute1"
    value="attribute1_value"
    --- /node1
    - /node0
    - node0 (second instance)
    - key_value=<b>my_key_value_2</b>  < should exist but does <u>not</u> exist
    --- node1
    name="<b>key</b>"
    value="<b>my_key_value_2</b>"
    --- /node1
    --- node1
    name="attribute1"
    value="attribute1_value"
    --- /node1
    - /node0
    /root

  • I received an order number, a product key, and a password but no serial number.  Now I cannot access Adobe Premiere Elements 13 because it asks me for a serial number.

    I bought and installed Adobe Premiere Elements 13.  The download email provided me with an order number, a product key and a password.  I never received a serial number.  When I attempted to access the software, it required a serial number.  I now cannot use this product because I never received a serial number.

    Burr Leonard please be aware you are posting in a public forum.  I have edited your previous responses to remove your personal information.  If you do wish to continue responding via e-mail then please turn off your e-mail signature prior to responding.
    The suggestion provided by Kglad is information on how to redeem your redemption code.  Did you purchase from Adobe directly?  If not then it is likely you received a redemption code as opposed to a serial number.
    If your order is from Adobe directly then you serial number will be located under your account at http://www.adobe.com/.  You can find additional details at Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.

Maybe you are looking for

  • XML Publisher Report

    Dear Gurus, I have 3 pages of data. But i want print first 2 pages of data print in one page and 3rd page should be print as 2nd page. Is there any way to develop the rtf, pls guide me on this. Thanks, -narendra

  • [HELP!!!]iCloud, Mac appstore not connecting, ever since I  move to china bot in ipad and macbook pro

    since I move to china a week ago i realize base on my personal experience that the country is definitely no mac friendly, which is unfortunate for me since i own a macbook pro, iphone and ipad, and i tell you why. ever since i move to china it seems

  • How to design a call back service ?

    Hi, Could you help me understand whether this is possible or whether I am on the right track with what I am trying to achieve? Client (C# Winform) ---- Send a Message to Service Bus [SB] Please Keep in mind that Client can be ASP.NET MVC/Mobile App.

  • I have MAC OS X 10.6.8 and want to install pages but get notice it only is good for 10.9 or later

    How to install Pages on my Mac OS X 10.6.8 ?- when I try to install Pages I get message "the application requires Mac OS 10.9 or later! Do I have to convert or update my current iMac?

  • CS5 and AS3 external base class

    In CS5..... I have set my path to the file folder where classes are:  desktop/folder/movie/classes Inside that have another folder and 'interactive' folder, then the class inside that:  classes/otherFolder/interactive/myclass.as in the 'movie' folder