This error is caused by a nested structure of double quotes (“).
Changing the former of following strings to the latter will solve the problem.
<imartj2ee:Param name="Name" value="<%= (String)request.getAttribute(\"Name\") %>"/>name</imartj2ee:Link>
<imartj2ee:Param name="Name" value="<%= (String)request.getAttribute('Name') %>"/>name</imartj2ee:Link>
The tag library works on Resin as its allowable range of quote recognition is wide but Weblogic behavior is rather normal with JSEE specifications.
-- Target ----------------------------------------------------------------------------------
iWP/Web System Construction Platform/WebPlatform/AppFramework
----------------------------------------------------------------------------------------------
FAQID:269