Please HeLP

I am Using XML and XSLT to generate the page. My all XML tages are combined in JSP itself. While running the Page i am getting the error "The prefix "tags" for element "tags:property" is not bound." In the code we are using CDATA to display the property for this like as

<instruction><![CDATA[><tags:property property="payment.text.makePayment.instructions"/>]]></instruction>

<instructionTrk><![CDATA[><tags:property property="payment.text.makePayment.instructionsOne"/>
<tags:property property="payment.text.makePayment.cuttofftimeOne"/> <tags:property property="companyName.text.trade"/> <tags:property property="payment.text.makePayment.cuttofftimeTwo"/>
<tags:property property="payment.text.makePayment.instructionsTwo"/>

]]></instructionTrk>

Except the tage written in the CDATA tag. It picke every thing but when i remove cdata from this it picks every thing and then it gives the error

"The content of elements must consist of well-formed character data or markup"

I don't know where is my mistake. We are using our own tag library. I have printed each and every thin on the Console. It is printing evry thing except the tags in between cdata. After all validations and check it gives blank page. This jsp is using other jsp which is nothing but XSL tags. fr reading cdate we are using

<![CDATA[

function init(){

selectMenu('makePayment');

}

function getElement( name ) {

for ( var w = 0; w >< document.paymentForm.elements.length; w++ ) {

if ( document.paymentForm.elements[ w ].name == name ) {

return document.paymentForm.elements[ w ];

}

}

return null;

}

function submitForm() {

getElement( "inputMode" ).value = "insert";

document.paymentForm.submit();

}

]]>

</script>

This application is working fine in Web Sphere Application 5.0. We are migrating the application to WAS6.0. Please suggest me what to do.

The help will be higly appreciated.

[2165 byte] By [MYJAVAForuma] at [2007-11-27 8:38:00]
# 1
Try the java & xml forum: http://forum.java.sun.com/forum.jspa?forumID=34
jxca at 2007-7-12 20:35:30 > top of Java-index,Desktop,Runtime Environment...