I’m not sure if I understand correctly, what do you mean by “java extension file”.
Anyway. You can access X-Application’s Java API by embedding code like this into you JSP pages:
<%@ page import=“com.softwareag.xtools.xapplication.jsp." %>
<%@ page import="com.softwareag.xtools.xapplication.businessdocument.” %>
…
<% SessionContext sessionContext = ServletSessionContext.getSessionContext(pageContext); %>
The SessionContext object holds the state of the current user’s session, in some sense it’s the mother of all X-Application objects. You can use it, e.g., to access a document like this:
<% BusinessDocument document = sessionContext.getDocument(null); %>
… work with document …
Michael
Software AG Germany, Darmstadt
#API-Management#Tamino#webMethods