%
response.setContentType( "text/xml" );
%>
<%@ taglib uri="/WEB-INF/tlds/omcore-taglib.tld" prefix="omcore" %>
<%@ taglib uri="/WEB-INF/tlds/util-taglib.tld" prefix="util" %>
OpenMath Integration Service
<%@page import="java.io.*,antlr.*,
nl.tue.win.riaca.openmath.lang.*,
nl.tue.win.riaca.openmath.io.*,
com.web4math.axis.maxima.client.*,
at.ac.uni_linz.risc.openmath.expressions.parser.*"%>
<%@page session="true" %>
<%
// Get access to service properties
WebMaximaService service = new WebMaximaServiceLocator();
// Get port type
WebMaxima port = service.getWebMaxima();
boolean firstTime = false;
String fData = request.getParameter("fData");
if (fData == null) {
firstTime = true;
fData = "1+3*4*x";
}
%>