Customizing AIAEHNotification.xml

Hi
I have tried customizing the AIAEHNotification.xml to show the html content in the mail send. After saving the file I have updated it in the MDS as per the steps written in User Guide. Now from the JDev I can even see the updated file from the MDS.
The problem is I'm not able to see any formated HTML content. Do I need to set up anything else to send formatted HTML content ? I can see other formatted html in the mail address specified which proves the email client can show the formatted content. below is the content of AIAEHNotification.xml. the contents are appearing but not in a tabular format.
---- AIAEHNotification.xml -----------------------------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<AIAEHNotification xmlns="http://schemas.oracle.com/aia/notify" version="1.0">
<EMAIL>
     <SUBJECT>Error in AIA #@#XPATH.{default:Fault/default:FaultNotification/default:FaultingService/default:ID}#@# Process</SUBJECT>
     <BODY>An error has occurred during the processing of #@#XPATH.{default:Fault/default:FaultNotification/default:FaultingService/default:ID}#@# Process requires your attention. Please access the details from the url mentioned below.
     <br></br>     
     <TABLE cellspacing="2" cellpadding="1" border="1" align="left" width="100%">
<tr>
     <th>
Error
</th>
<th>
Details
</th>
     </tr>
     <tr>
          <td width="50%">Code</td>
          <td width="50%">#@#XPATH.{default:Fault/default:FaultNotification/default:FaultMessage/default:Code}#@#</td>
     </tr>
     <tr>
          <td width="50%">Text</td>
          <td width="50%">#@#XPATH.{default:Fault/default:FaultNotification/default:FaultMessage/default:Text}#@#</td>
     </tr>
     <tr>
          <td width="50%">Stack</td>
          <td width="50%">#@#XPATH.{default:Fault/default:FaultNotification/default:FaultMessage/default:Stack}#@#</td>
     </tr>
     </TABLE>
     </BODY>
</EMAIL>
<FYI_EMAIL>     
     <SUBJECT>Error in AIA #@#XPATH.{default:Fault/default:FaultNotification/default:FaultingService/default:ID}#@# Process FYI</SUBJECT>
     <BODY>An error has occurred during the processing of #@#XPATH.{default:Fault/default:FaultNotification/default:FaultingService/default:ID}#@# Process requires your attention. Please access the details from the url mentioned below.
     </BODY>
</FYI_EMAIL>
<URL>
==================================================================================
Please click on the following URL To view the instance details in the em console :
==================================================================================
http://<host>:<port>/em/faces/ai/soa/messageFlow?target=/<>/<domain>/<server1>/default/#@#PROPS.{compositeName}#@#+[#@#PROPS.{compositeRevision}#@#]%26type=oracle_soa_composite%26soaContext=#@#PROPS.{compositeDN}#@#/#@#PROPS.{compositeInstanceID}#@#
==================================================================================
</URL>
<EXT_URL>
==============================================================
Please access the task in the Worklist Application :
==============================================================
http://<host>:<port>/integration/worklistapp/faces/home.jspx
==============================================================
</EXT_URL>
</AIAEHNotification>
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

I try to Install "Product MDM: EBS"
I know I have to install "Foundation Pack" first,
Could any one please let me know if I need to Install "Product MDM Base Pack" ??
Thanks!! I am very appreciated any help!! Jenny

Similar Messages

  • How to customizing AIAEHNotification.xml

    Hi,
    How to customize the notification template AIAEHNotification.xml used by AIAAsyncErrorHandlingBPELProcess process so that it doesn’t affect other processes using it.
    Please suggest.
    Thanks & Regards,
    Sunita

    Hi,
    I have updated the AIAEHNotification.xml file to handle business fault.
    In email body, I was trying to access URL to view instance details in the EM console but #@#PROPS.{compositeRevision},
    #@#PROPS.{compositeDN}#@#  and #@#PROPS.{compositeInstanceID}#@# always display as null.
    Please click on the following URL to view instance details in the EM console :
    http://xyz.com:1001/em/faces/ai/soa/messageFlow?target=/Farm_im_core/im_core/SOA_Cluster/#@#PROPS.{compositeName}#@#
    +[#@#PROPS.{compositeRevision}#@#]%26type=oracle_soa_composite%26soaContext=#@#PROPS.
    {compositeDN}#@#/#@#PROPS.{compositeInstanceID}#@#
    Please suggest.
    Thanks & Regards,
    Sunita

  • How to include custom application.xml in JDev9i project

    Can anybody explain to me how to include a custom application.xml file when deploying to an .ear file? I need to include application wide security roles, and I can't see where in Jev9i how to do this.
    After searching this forum, I see that jdev9i can't include the orion-application.xml, but I want to include just the standard J2EE application.xml. Is this possible?
    Thanks,
    matt

    The standard application.xml file unfortunately can't be customized in JDev 9.0.2. The reasons why this capability was left out of JDev 9.0.2 are same reasons why the other EAR-level XML files were excluded. The OTN thread
    Re: Regarding 11i and E-business suite
    has a summary of those reasons, which you've probably seen. We know this is an area in need of improvement and will be adding this functionality in the JDev 9.0.3 release. Until then, you'll have to go with a work-around like an Ant build file, batch file, Java application, or some other kind of script.
    Below is a sample Java application which can be used to insert <security-role> elements into an EAR file's application.xml. Modify the main() method to customize for your purposes, and put xmlparserv2.jar on the classpath (in a JDev project, add the "Oracle XML Parser v2" library):
    package mypackage4;
    import java.io.*;
    import java.util.*;
    import java.util.zip.*;
    import oracle.xml.parser.v2.*;
    import org.w3c.dom.*;
    import org.xml.sax.SAXException;
    public class PostProcessEAR
    public static void main( String[] args ) throws IOException
    final String earFile = "C:\\temp\\myapp.ear";
    final PostProcessEAR postProcess = new PostProcessEAR( earFile );
    postProcess.addSecurityRole( null, "first_role" );
    postProcess.addSecurityRole( "Description for the second role", "second_role" );
    postProcess.commit();
    System.out.println( "Done." );
    private final File _earFile;
    private final ArrayList _securityRoles = new ArrayList();
    public PostProcessEAR( String earFile )
    _earFile = new File( earFile );
    public void addSecurityRole( String description, String roleName )
    if ( roleName == null )
    throw new IllegalArgumentException();
    _securityRoles.add( description );
    _securityRoles.add( roleName );
    * Write out modified EAR file.
    public void commit() throws IOException
    if ( _securityRoles.size() == 0 )
    return;
    final ZipFile zipFile = new ZipFile( _earFile );
    final Enumeration entries = zipFile.entries();
    final File outFile = new File( _earFile.getAbsolutePath() + ".out" );
    final ZipOutputStream out = new ZipOutputStream( new BufferedOutputStream( new FileOutputStream( outFile ) ) );
    while ( entries.hasMoreElements() )
    final ZipEntry entry = (ZipEntry) entries.nextElement();
    final InputStream in = zipFile.getInputStream( entry );
    if ( "META-INF/application.xml".equals( entry.getName() ) )
    final XMLDocument modifiedApplicationXml = insertSecurityRoles( in );
    final ByteArrayOutputStream byteOutput = new ByteArrayOutputStream();
    modifiedApplicationXml.print( byteOutput );
    final int numBytes = byteOutput.size();
    entry.setSize( numBytes );
    if ( entry.getMethod() == ZipEntry.STORED )
    entry.setCompressedSize( numBytes );
    final CRC32 crc32 = new CRC32();
    crc32.update( byteOutput.toByteArray() );
    entry.setCrc( crc32.getValue() );
    out.putNextEntry( entry );
    byteOutput.writeTo( out );
    else
    // Copy all other zip entries as they are.
    out.putNextEntry( entry );
    copy( in, out );
    in.close();
    out.close();
    private XMLDocument insertSecurityRoles( InputStream in ) throws IOException
    final DOMParser domParser = new DOMParser();
    domParser.setAttribute( DOMParser.STANDALONE, Boolean.TRUE );
    try
    domParser.parse( in );
    final XMLDocument doc = domParser.getDocument();
    final Element docElem = doc.getDocumentElement();
    final Iterator iter = _securityRoles.iterator();
    while ( iter.hasNext() )
    final String desc = (String) iter.next(); // might be null
    final String roleName = iter.next().toString(); // must not be null
    final Element securityRoleElem = doc.createElement( "security-role" );
    if ( desc != null )
    securityRoleElem.appendChild( createPcdata( doc, "description", desc ) );
    securityRoleElem.appendChild( createPcdata( doc, "role-name", roleName ) );
    docElem.appendChild( securityRoleElem );
    return doc;
    catch ( SAXException e )
    e.printStackTrace();
    return null;
    private Element createPcdata( XMLDocument doc, String elemName, String pcdata )
    final Element elem = doc.createElement( elemName );
    elem.appendChild( doc.createTextNode( pcdata ) );
    return elem;
    private final byte[] buffer = new byte[4096];
    private void copy( InputStream in, OutputStream out ) throws IOException
    while ( true )
    final int bytesRead = in.read( buffer );
    if ( bytesRead < 0 )
    break;
    out.write( buffer, 0, bytesRead );

  • Need to add custom button (xml) in VA05

    I need to add a custom button (xml) to report output layout of VA05. Even the corrsponding functionality needs to be written for this button. Without changing the SAP standard code using Access keys, is there any other functionality in which we can add the button and write the code.
    Please send me detail steps in this regard.

    Hi Ramesh,
    As i knoew in case of va05 there is no badi or exit available to achieve this functionality.There is a provision to add some fields in report out put.I hope this is possible through a custom one.
    Regards,
    Madhu

  • SAP MDG - Customer IDOC XML

    Hello All,
    We are trying to upload Customer - IDOC XML for initial upload via Data Import Framework. But my XML file is being ignored when i see the log. My first concern is to check the File format.
    Can any one has the IDOC - DEBMAS  xml sample file format? If so, can you please share it with me.

    Thanks Aleksandr for your response.
    I was using the same FM to generate the IDOC xml from IDOC number.  This XML file is being ignored after import and there is no proper error message why its been ignored in logs(SLG1). Thats the reason i requested for sample Customer - IDOC xml.
    I have done extensive seach on SDN but i couldnt find the sample file. Can any one help me on this please?

  • Customizing web.xml

    Hi,
    We're working with jakarta-struts.
    Some configuration parameters are stored in the WEB-INF/web.xml file.
    Oracle Lite generates its own web.xml on application packaging.
    Does anyone have an idea about merging these two web.xml files ?
    Regards
    Eric Saya

    Hi
    <u>Please go through the following SAP OSS Notes below -></u>
    Note 450750 Attachments in XML output of purchase orders are missing
    Note 392837 2.0C: attachments/texts in XML-output of purchase orders
    Note 842181 sent Purchase orders: lineitem-texts in wrong order
    Note 644560 Customer enhancements XML
    Note 603521 Errors for PO XML output via BC are not recognized
    Note 365276 Problems when sending EBP XML documents
    Note 571010 Error in PO XML when attribute ADDR_BILLT not maintained
    Note 524549 Sending bill-to address with XML P.O. from the EBP
    Note 564546 ID of the SoldToParty assigned by the vendor
    Do let me know.
    Regards
    - Atul

  • Anyone using TAW/custom/report.xml or custom.xml

    Oracle's out of the box configuration for the custom.xml and report.xml appears to be commented out and has no bearing on the TAW application default functionality.
    Is custom.xml for some type of third party integration?
    Is report.xml for third party reporting or required for TAW reporting?
    <!--application className="CustomReportEmail" package="com.taw.custom">
    <parameter name="url" value="http://localhost/TAW" />
    <parameter name="urlReportCss" value="http://localhost/TAW/css/web_clients.css" />
    <parameter name="urlReport" value="http://localhost/TAW/AdministrationManager/report" />
    </application-->

    We too have a similar situation.
    In one of our .Net base product, we have to retreive Production Order details of a specific Order Number using .net connector and BAPIs. Our search for a BAPI that can provide this information did not yield any results.
    Does any know if there is a BAPI that can return the Production Order details? or, Can confirm for sure that a BAPI does not exist?
    I am also surprised at the BAPIs available for Production Order. Getting order details seems a rather basic functionality and one would expect it to be there. I wonder why SAP does not provide it, while it has BAPIs for creating order and other opertaions. Did they miss out on this fundamental api? or has it been provided through a different BAPI?
    We would prefer the BAPI route as it is simpler and eliminates a lot of the process involved in getting the ABAP code (custom function module) to be moved into production. Writing custom function module to retreive the details is our very last option.

  • Multilanguage titles using custom panels (xml:lang attribute)

    Hi,
    Is it possible to build a custom panel able to input multilanguage titles in order to get the following in XMP code:
    <xmp:Title>
    <rdf:Alt>
    <rdf:li xml:lang="x-default">XMP - Extensible Metadata Platform</rdf:li>
    <rdf:li xml:lang="en-us">XMP - Extensible Metadata Platform</rdf:li>
    <rdf:li xml:lang="fr-fr">XMP - Une Platforme Extensible pour les Métadonnées</rdf:li>
    <rdf:li xml:lang="it-it">XMP - Piattaforma Estendibile di Metadata</rdf:li>
    </rdf:Alt>
    </xmp:Title>
    Patrick Peccatte
    www.softexperience.com

    I was able to resolve this. The probelm was with Qualifier_attribute6. Although I was still having issue with passing Qualifier_attribute11 and had to remove it.
    BEGIN HXC_LAYOUT_COMPONENTS "Projects Timecard Layout -XX- WORKDEPT"
    OWNER = "ORACLE"
    COMPONENT_VALUE = "WORKDEPT" #not used in code - just a label
    REGION_CODE = "HXC_CUI_TIMECARD"
    REGION_CODE_APP_SHORT_NAME = "HXC"
    ATTRIBUTE_CODE = "HXC_TIMECARD_WORK_DEPT_XX"
    ATTRIBUTE_CODE_APP_SHORT_NAME = "HXC"
    SEQUENCE = "247"
    COMPONENT_DEFINITION = "LOV"
    RENDER_TYPE = "WEB"
    PARENT_COMPONENT =
    "Projects Timecard Layout -XX- Day Scope Building blocks for worker timecard matrix"
    LAST_UPDATE_DATE = "2004/05/24"
    BEGIN HXC_LAYOUT_COMP_QUALIFIERS
    "Projects Timecard Layout -XX- WORKDEPT"
    OWNER = "ORACLE"
    QUALIFIER_ATTRIBUTE_CATEGORY = "LOV"
    QUALIFIER_ATTRIBUTE1 = "XXCustomLov2VO#XXCustomAM#XX.oracle.apps.hxc.selfservice.timecard.server.XXCustomAM"
    QUALIFIER_ATTRIBUTE2 = "NODISPLAYCACHE"
    QUALIFIER_ATTRIBUTE3 = "XXHXC_WORK_DEPT_LOV"
    QUALIFIER_ATTRIBUTE4 = "809"
    QUALIFIER_ATTRIBUTE5 = "10" # display width
    QUALIFIER_ATTRIBUTE6 =
    "XXhxcWorkDeptWorkOrder|WORKDEPT-DISPLAY|CRITERIA|N|XXhxcOrganizationId|WORKDEPT|RESULT|N|XXhxcWorkDeptWorkOrder|WORKDEPT-DISPLAY|RESULT|N"
    QUALIFIER_ATTRIBUTE8 ="Lov2column1" #display
    QUALIFIER_ATTRIBUTE9 ="Lov2column2"
    QUALIFIER_ATTRIBUTE10 ="XX.oracle.apps.hxc.selfservice.timecard.server.XXCustomLov2VO"
    # QUALIFIER_ATTRIBUTE11 ="TIMECARD_BIND_END_DATE|RESOURCE_IDENTIFIER_ID|TIMECARD_BIND_END_DATE|TIMECARD_BIND_END_DATE|TIMECARD_BIND_END_DATE"
    QUALIFIER_ATTRIBUTE17 = "OraTableCellText"
    QUALIFIER_ATTRIBUTE20 = "N"
    QUALIFIER_ATTRIBUTE21 = "Y"
    QUALIFIER_ATTRIBUTE22 = "R"
    QUALIFIER_ATTRIBUTE25 = "FLEX"
    QUALIFIER_ATTRIBUTE26 = "Dummy Paexpitdff Context"
    QUALIFIER_ATTRIBUTE27 = "Attribute8"
    QUALIFIER_ATTRIBUTE28 = "WORKDEPT"
    LAST_UPDATE_DATE = "2004/05/24"
    END HXC_LAYOUT_COMP_QUALIFIERS
    END HXC_LAYOUT_COMPONENTS

  • Custom Chart XML (Apex 3.2)

    Hi,
    I am trying to see if I can reduce the space left in between a chart region title and the actual title of the graph (name property). It leaves 2 cm. approx and I would like to optimize the page a little bit. Unfortunately I can't find the property, if there's any, even after refering to the anychart documentation:
    http://3.anychart.com/products/docs/anychart/index.htm
    My XML looks like this:
    <?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
    <root>
    <type>
    <chart type="2DLine">
    <animation enabled="yes" appearance="size" speed="10" />
    <hints auto_size="yes">
    <text><![CDATA[{NAME}, {VALUE}]]></text>
    <font type="Verdana" size="10" color="0x000000" />
    </hints>
    <names show="&P300_SHOWNAMES." width="150" rotation="45" placement="chart" position="bottom" >
    <font type="verdana_embed_tf" size="10" color="0x000000" />
    </names>
    <values show="no" prefix="" postfix="" decimal_separator="." thousand_separator="," decimal_places="3" />
    <arguments show="no" />
    <line_chart left_space="5" right_space="5">
    <block_names enabled="no" />
    <dots radius='&P300_RADIUS.' />
    </line_chart>
    </chart>
    <workspace>
    <background enabled="yes" type="solid" color="0xffffff" alpha="0" />
    <base_area enabled="no" />
    <chart_area enabled="yes" x="80" y="50" width="630" height="230" deep="0">
    <background enabled="no"/>
    <border enabled="yes" size="1"/>
    </chart_area>
    *<name text="Daily Trend for Contractor Measure">*
    *<font type="Verdana" size="14" color="0x000000" align="center" />*
    *</name>*
    <x_axis name="As At End of Day" position="center_bottom" >
    <font type="Verdana" size="14" color="0x000000" bold="no" align="center" />
    </x_axis>
    <y_axis name="Availability (%)" smart="yes" direction="horizontal" rotation="-90" position="left_center" >
    <font type="verdana_embed_tf" size="14" color="0x000000" bold="no" align="center" />
    </y_axis>
    <grid>
    <values>
    <captions>
    <font type="Verdana" size="10" color="0x000000" />
    </captions>
    </values>
    </grid>
    </workspace>
    <legend enabled="yes" x="730" y="50">
    <names enabled="yes">
    <font type="Verdana" size="10" color="0x000000" />
    </names>
    <values enabled="no"/>
    <scroller enabled="no"/>
    <header enabled="no"/>
    <background alpha="0"/>
    </legend>
    </type>
    #DATA#
    </root>
    So is already partially customized but can't see how to do that bit.
    Many thanks

    I've answered my own question:
    <chart_area enabled="yes" x="80" y="0" width="630" height="230" deep="0">
    Thanks

  • Running custom BI (XML) publisher report from BPEL

    We would like to run a custom BI publisher (XML publisher) report from BPEL process and the resultant PDF report output needs to be FTPed to specific location. BPEL can pass on the XML content required for the report.
    Is this possible or any workaround for this ?

    Any light on this ?

  • Version Differences in Custom Chart XML #DATA#

    In our environment we are running version APEX 4.0.0.00.46
    My workspace on the public site (apex.oracle.com) is running 4.0.2.00.07
    Now, when I create Flash Charts on my instance I get some very different behaviors from what the Public Site is doing. Most of the differences that I have noticed are related to the #DATA# element in the Chart Custom XML and how it formats the XML for the chart engine.
    Is it possible that the behaviors of the #DATA# element have changed that much betweeen the two versions? I would guess the answer is Yes after reading the release notes...
    Austin

    Hilary -
    Thanks for looking at this.
    One of the issues we have already been looking at under thread: Stacked Column Chart setup question - New issue found Some charts do not get a link associated with them.
    Another issue is that on line charts, when a series contains an x-value that other series on the same chart do not contain there are issues. When a series that does not contain that specific x-value, the value for the chart is set to 0 (<point name="167" y="0" />). In my examples online, those values get set to NULL, or an empty string (<point name="18-MAR-10" y="" />).
    The major difference is the version numbers. I am thinking that with an update to the software, these issues will be resolved. However, I can write custom XML for each chart (thanks for your documentation on the subject) to get around these issues I believe. ( http://apex.oracle.com/pls/otn/f?p=28155:2 )
    Both of these examples behave the way I would expect on the public site (Both Andy's and my own) but in our local instance these issues exist. The only solution I can come up with is the version.
    Austin

  • How can i custom the xml soap response in my ws?

    Hello there,
    Im developing a ws in weblogic 10.2 and i need to return a complex type soap response with a custom xml created by me... can any one give me an advice on how can i do that? Im not used to soap ws
    And i need to return a lot of info some times and some of them are ArrayList of an object. Like the info of a Client and all the contracts of this client (and the info of that contract)... a lot of xml element with childs.
    Thanx in advance for any help
    PS. I tried to post an xml as example but i couldnt do it using '{' code '}' tag 
    Edited by: mgaldames on 08-dic-2010 8:50

    Hi Riyaz,
    Thanks for your immediate response.
    Here is my requirement.
    I have created a ZTABLE with Field AUART and this table is maintain table using SM30.
    When I Press F4, it will giving the list of all the order types available in T003O table and can select one and I can proceed succussfully.
    But when using SM30 I need to give '*' in the column for AUART which is not available in T003O table.
    I need to save my entires for AUART with * also( The value "*" is not available in Check table T003O ).
    Please let me know how can I do this.
    Thanks in advance.

  • Error while Importing custom udf xml file in prod evnrmnt

    hi experts,
    I have created 35 UDF'S IN OUR OIM 11GR2 TEST EVNROMENT AND HAVE EXPORTED THE SAND BOX WHICH I HAVE USED WHILE CREATING UDF'S IN FORM DESIGNER'S USER FORM. NOW I HAVE EXPORTED THE SAND BOX AND ALSO EXPORTED THE UDF'S USING THE EXPORT UTITLITY.
    IN THE PRODUCTION ENVIRONMENT WHEN I TRY TO IMPORT THE XML FILE I AM GETTING THE FOLLOWING ERROR.....
    "Error encountered while reading file"....
    pls answer, its urgent....or like how to go about it....thanks

    Please check the zip file which you are trying to import.
    May be your zip file was not correctly created.
    Another option is that before importing the sandbox to prod environment you can try importing the same first in your test environment to make sure your zip was created correctly.
    HTH

  • Customizing/hiding XML enveloppe

    Hello,
    another quesion about my ORDERS05 -> HTTPS server scenario.
    What I send to the supplier looks like this :
    <?xml version="1.0" encoding="UTF-8" ?>
      <p2:MT_PurchaseOrder xmlns:p2="http://www.myNamespace.org">
        <PurchaseOrder>
          <OrderHeader>
    And the supplier says :
    Some more modifications are required for the XML.
    I did further comparison with Production XML we have received
    Root tag should be <PurchaseOrder> rather than <p2:MT_PurchaseOrder xmlns:p2="www.myNamespace.org">
    But the problem is that this "p2:..." stuff is added automatically by XI.
    Do you know the way of controlling exactly what you send ? Is it possible to suppress the enveloppe of the message ?
    Thank you in advance.
    Regards,
    Julien

    hi Julien,
    take a look at question 15 (integration engine section)
    on my XI FAQ:
    how to remove namespace
    /people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions
    about the p2 prefix you can change/delete it from ABAP mapping for instance
    Regards,
    michal

  • Workshop 10.1 not deploying custom context.xml

    I have a web project that was converted from Workshop 3.3. The project has a context.xml file in WebContent/META-INF that contains a datasource.
    This setup was working fine with Workshop 3.3, however for some reason Workshop 10.1 is not merging the file into server.xml (Looked at $WORKSPACE\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\conf\server.xml)
    The old workspace from 3.3 shows the information merged into the file.
    No modifications to the project other than converting to 10.1 have been made. I've tried marking the context.xml as read-only as well and that did not help.
    Any ideas or suggestions?

    I just tried the following steps and it is working for me.
    - Create a new struts project
    - create a new devloader_context.xml under WebContent/META-INF/
    contents:
    <Context docBase="test" path="/test" reloadable="true" source="org.eclipse.jst.j2ee.server:test">
    <Resource name="jdbc/TestDB" auth="Container" type="javax.sql.DataSource"
    maxActive="100" maxIdle="30" maxWait="10000"
    username="javauser" password="javadude" driverClassName="com.mysql.jdbc.Driver"
    url="jdbc:mysql://localhost:3306/javatest?autoReconnect=true"/>
    </Context>
    - Save & mark the file readonly
    - create a new Tomcat 5.5.x (5.5.23) configuration
    - add the project to tomcat and start the server
    - The contents of devloader_context.xml were merged into server.xml file
    verified @ workspaces\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\conf

Maybe you are looking for