8.5.3.3 Add a Method to the Java Bean to Perform Faculty Data Deleting To perform a faculty record delete action, we need to perform the following operations: 1) Add a new method to the Java session bean FacultyUpdateDeleteBean to handle the faculty record delete action. 2) Modify the FacultyProcess.jsp page…
Continue Reading....Category: Add a Method to the Java Bean to Perform Faculty Data Deleting
CHAPTER SUMMARY – Develop Java Web Applications to Access Databases
8.7 CHAPTER SUMMARY Most key techniques and knowledge in Java Web database programming are fully discussed and analyzed in this chapter with real project examples. The most popular and important techniques in Java Web database programming, such as JavaServer Pages (JSP), JavaServer Faces (JSF) and Enterprise Java Beans (EJB), are…
Continue Reading....INTRODUCTION TO JAVA WEB SERVICES – Develop Java Web Services to Access Databases
9.1 INTRODUCTION TO JAVA WEB SERVICES Web services are distributed application components that are externally useful and available. You can use them to integrate computer applications that are written in different languages and run on different platforms. Web services are language and platform independent because vendors have agreed on common…
Continue Reading....SOAP-Based Web Services – Develop Java Web Services to Access Databases
9.1.2 SOAP-Based Web Services In SOAP-based Web services, Java utilities create a WSDL file based on the Java code in the Web service. The WSDL is exposed on the net. Parties interested in using the Web service create a Java client based on the WSDL. Messages are exchanged in SOAP…
Continue Reading....THE STRUCTURE AND COMPONENTS OF SOAP-BASED WEB SERVICES – Develop Java Web Services to Access Databases
9.2 THE STRUCTURE AND COMPONENTS OF SOAP-BASED WEB SERVICES To effectively find, identify and return the target information required by computer programs, a SOAP-based Web Service needs the following components: 1) XML (Extensible Markup Language) 2) SOAP (Simple Object Access Protocol) 3) UDDI (Universal Description, Discovery and Integration) 4) WSDL…
Continue Reading....Create Web Service Clients to Consume the Web Service – Develop Java Web Services to Access Databases
9.3.5 Create Web Service Clients to Consume the Web Service In fact, you can develop any kind of Java application as a project to consume a Web service, such as desktop Java with an Ant project, a Java Web application. To make this client project simple, we prefer to build…
Continue Reading....