9.11.3 Deploy and Test the Web Service Project Perform the following operations to build and deploy our Web service project: A problem arises when testing the UpdateFaculty() operation of this Web service using the tester page, which is the input parameter array fdata. As we know, fdata has a data type of ArrayList, and it […]
Posts
Deploy and Test the Web Service Project 2 – Develop Java Web Services to Access Databases
Recall that when we built our sample Oracle database, CSE _ DEPT, in Chapter 2, we created all original columns in different Tables for an original faculty record. For example, for an original faculty member, Ying Bai, we setup a faculty _ id related to that member in the LogIn Table and detailed information with […]
BUILD A WINDOW-BASED CLIENT PROJECT TO CONSUME THE WEB SERVICE – Develop Java Web Services to Access Databases
9.12 BUILD A WINDOW-BASED CLIENT PROJECT TO CONSUME THE WEB SERVICE We can still use the Window-based client project WinClientFaculty _ Insert we built in Section 9.9 to consume the Web service to perform faculty data update and delete actions. One point to be noted is that although a Web reference to our Web service […]
Build the Code to Call the UpdateFaculty() Operation – Develop Java Web Services to Access Databases
9.12.2 Build the Code to Call the UpdateFaculty() Operation Open our Window-based client project, WinClientFaculty _ UpdtDelt, and double-click on our main class, FacultyFrame.java, to open it. Click on the Design button to open the graphic user interface. In this client project, we need to use the Update button as a trigger to start the […]
Build the Code to Call the DeleteFaculty() Operation – Develop Java Web Services to Access Databases
9.12.3 Build the Code to Call the DeleteFaculty() Operation Open our Window-based client project, WinClientFaculty _ UpdtDelt, and double-click on our main class, FacultyFrame.java, to open it. Click on the Design button to open the graphic user interface. In this client project, we need to use the Delete button in this form as a trigger […]
Build and Run Our Client Project to Update and Delete Faculty Record via Web Service 2 – Develop Java Web Services to Access Databases
Your opened Faculty Table is shown in Figure 9.64. It can be seen that the faculty record with the faculty _ id of B78880, which is located at row 9 and had been highlighted, has been suc-cessfully updated. However, it is highly recommended to recover this updated faculty record to the original one to keep […]
Build and Run Our Client Project to Update and Delete Faculty Record via Web Service – Develop Java Web Services to Access Databases
9.12.4 Build and Run Our Client Project to Update and Delete Faculty Record via Web Service Prior to building and running our client project to consume our Web Service project, make sure that our Web Service application project, WebAppFaculty, has been successfully built and deployed to make it ready to be called by the client […]
BUILD A WEB-BASED CLIENT PROJECT TO CONSUME THE WEB SERVICE – Develop Java Web Services to Access Databases
9.13 BUILD A WEB-BASED CLIENT PROJECT TO CONSUME THE WEB SERVICE We can still use the Web-based client project WebClientFaculty _ Insert we built in Section 9.10 to consume our Web service to perform the faculty data updating and delete action. But we prefer to modify that project and make it our new Web-based client […]
Develop the Code to Call Our Web Service Operation UpdateFaculty() – Develop Java Web Services to Access Databases
9.13.2 Develop the Code to Call Our Web Service Operation UpdateFaculty() The main coding process includes two parts: generate code in the Java managed bean class FacultyMBean.java and add code into the Control class FacultyProcess.jsp page. A binding relationship between the action attribute of the Update command Button in our JSP page Faculty.jsp and the […]
Develop the Code to Call Our Web Service Operation DeleteFaculty() – Develop Java Web Services to Access Databases
9.13.3 Develop the Code to Call Our Web Service Operation DeleteFaculty() Open our Web-based client project WebClientFaculty _ UpdtDelt and double-click on the FacultyMBean.java in the Projects window to open this managed bean class file. Enter the code shown in Figure 9.66 into this class file to generate our Delete _ Faculty() method. Let’s have […]