Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <%-- start web service invocation --%>
  2. <%
  3. try
  4. {
  5. client.siakad.Mahasiswa_Service service = new client.siakad.Mahasiswa_Service();
  6. client.siakad.Mahasiswa port = service.getMahasiswaPort();
  7. // TODO initialize WS operation arguments here
  8. int nim = Integer.valueOf(request.getParameter("nim")); port.delMahasiswa(nim);
  9. response.sendRedirect("index.jsp");
  10. }
  11. catch (Exception ex)
  12. { }
  13. %>
  14. <%-- end web service invocation --%>