X-Application Version: 4.1.1
Tamino Version : 4.1.1
Platform : Win2k
WebContainer : Tomcat 4.1.1
JDK Version : 1.4.1, 1.3.1
I’m trying to use a value from a javabean as the arg in directelementaction, but it’s not translating the value – it’s setting the element to the literal string. Any ideas how to do this?
<%
util.UniqueId uid = bean_UniqueId.getInstance();
String id = uid.getIdentifierString();
out.print(“UID = " + id);
%>
<xapp:directelementaction type=“setValue” select=”/CapabilityType/@id" arg=“<%out.print(id);%>”>
</xapp:directelementaction>
Sets the value to: “<%out.print(id);%>”
#Tamino#API-Management#webMethods