Kesha Williams explains how to implement SOAP clients.
- [Instructor] Now, we are ready to create a client…that accesses the application service web service.…The application client class is a standalone…application client that accesses the getAll method…of application service.…At this point in the learning,…the getAll method simply returns…the hard coded string Hello World.…We'll change that a bit later.…Without using any special tools,…you can create a Java web service client…to test this service.…Another option to create a web service client…would be to use the wsimport tool.…
The wsimport tool is bundled with the JDK…and parses the published WSDL file…and generates the necessary stub client files…that can be used to access…the application service web service.…The wsimport tool can be executed from the command line…using this command.…Let's review the code for the client…that will test our web service.…I've opened the project in IntelliJ,…and I've navigated to the ApplicationClient.java file.…So let's look at this.…
On line 12 we are defining the URL to the WSDL document.…
Author
Released
1/18/2019- Comparing when to use JAX-WS vs. JAX-RS
- Using JAX-RS annotations
- Accessing REST resources with JAX-RS
- Creating JAX-WS endpoints
- Writing RESTful services using JAX-RS
- Reading, writing, updating, and deleting data via endpoints
- Mapping to entities
- Error handling
- Testing web services
- Securing Java EE web services
Skill Level Intermediate
Duration
Views
Related Courses
-
Java EE: RESTful Service with JAX-RS 2.0
with Alex Theedom2h 17m Intermediate -
WebSocket Programming with Java EE
with Alex Theedom1h 29m Intermediate
-
Introduction
-
1. Understanding Web Services
-
Web services overview4m 20s
-
Why use Java EE?1m 53s
-
Decide which service to use1m 27s
-
-
2. Building RESTful Web Services with JAX-RS
-
Understand REST services3m 6s
-
Use JAX-RS annotations4m 31s
-
Map to entities3m 42s
-
Extract request parameters3m 13s
-
Use HTTP GET4m 20s
-
Use HTTP POST2m 39s
-
Use HTTP PUT2m 8s
-
Use HTTP DELETE2m 5s
-
-
3. Accessing REST Resources with the JAX-RS Client API
-
Use the JAX-RS Client API4m 28s
-
Use advanced features2m 7s
-
4. Building SOAP Web Services with JAX-WS
-
Understand SOAP services1m 29s
-
Create a JAX-WS endpoint4m 55s
-
Create data via an endpoint2m 24s
-
Map to entities with JAXB3m 50s
-
-
5. Searching, Error Handling, and Testing in Web Services
-
Search in web services4m 56s
-
Incorporate error handling3m 45s
-
Test web services2m 45s
-
-
6. Documentation, Logging, and Tracing
-
Document web services1m 36s
-
Secure web services4m 48s
-
-
Conclusion
-
Next steps1m 51s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Implement SOAP clients in Java