<%-- start web service invocation --%>
<%
try
{
client.siakad.Mahasiswa_Service service = new client.siakad.Mahasiswa_Service();
client.siakad.Mahasiswa port = service.getMahasiswaPort();
// TODO initialize WS operation arguments here
int nim = Integer.valueOf(request.getParameter("nim")); port.delMahasiswa(nim);
response.sendRedirect("index.jsp");
}
catch (Exception ex)
{ }
%>
<%-- end web service invocation --%>