%@page contentType="text/html"%>
OpenMath and Mathematica: Server Settings
<%
if ( request.getParameter( "host" ) != null )
{
if ( request.getParameter( "host" ).equals( "" ) == false )
{
phrasebook.setHost( request.getParameter( "host" ) );
}
}
if ( request.getParameter( "port" ) != null )
{
if ( request.getParameter( "port" ).equals( "" ) == false )
{
phrasebook.setPort(
new Integer( request.getParameter( "port" ) ).intValue() );
}
}
%>
OpenMath and Mathematica
Setting the server
Back to the main page.