<%@ page contentType="text/html; ISO-8859-1" %>

<jsp:useBean 
  id="dataURLResult"
  class="test.at.gv.egovernment.moa.spss.slinterface.DataURLBean" scope="request">
</jsp:useBean> 

<html>
<head>
  <title>Testanwendung f�r MOA SL - Resultat</title>
</head>
 <body>
<form action="" method="post">
<table width="800px" align="center">
<tr>
<td>
<h1 align="center">Testanwendung f�r MOA SL - Resultat</h1>
<p align="center">Die folgenden Daten wurden von MOA SL als Ergebnis gesendet.</p>
<table bgcolor="#eeeeee" width="790px" border="1" cellpadding="3">
<tr>
<td>Content-Type</td>
<td>
<textarea name="DataURL" cols="80" rows="1">
<jsp:getProperty name="dataURLResult" property="contentType"/>
</textarea>
<td>
</tr>
<tr>
<td>Inhalt</td>
<td>
<textarea name="XMLRequest" cols=80 rows=20>
<jsp:getProperty name="dataURLResult" property="content"/>
</textarea>
</td>
</tr>
</table>
<p align="center">
</p>
</td>
</tr>
</table>
</form>
</body>
</html>