Skip to content
This repository was archived by the owner on Jan 28, 2019. It is now read-only.

Commit 77e87f1

Browse files
authored
Merge pull request #82 from javaee/jon_branch
Removed JAX-WS chapters.
2 parents d1fccf4 + e2e8e26 commit 77e87f1

14 files changed

+7
-947
lines changed

src/main/jbake/content/ejb-basicexamples004.adoc

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ A Web Service Example: helloservice
1515

1616
This example demonstrates a simple web service that generates a response
1717
based on information received from the client. `HelloServiceBean` is a
18-
stateless session bean that implements a single method: `sayHello`. This
19-
method matches the `sayHello` method invoked by the client described in
20-
link:jaxws002.html#BNAYX[A Simple JAX-WS Application Client].
18+
stateless session bean that implements a single method: `sayHello`.
2119

2220
The following topics are addressed here:
2321

@@ -47,9 +45,7 @@ not be declared `static` or `final`.
4745
* Business methods that are exposed to web service clients must be
4846
annotated with `javax.jws.WebMethod`.
4947
* Business methods that are exposed to web service clients must have
50-
JAXB-compatible parameters and return types. See the list of JAXB
51-
default data type bindings at link:jaxws003.html#BNAZC[Types Supported by
52-
JAX-WS].
48+
JAXB-compatible parameters and return types.
5349
* The implementing class must not be declared `final` and must not be
5450
`abstract`.
5551
* The implementing class must have a default public constructor.
@@ -205,5 +201,3 @@ Methods, enter a name as the parameter to the `sayHello` method.
205201
+
206202
The sayHello Method invocation page opens. Under Method returned, you'll
207203
see the response from the endpoint.
208-
209-

src/main/jbake/content/ejb-intro004.adoc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -383,9 +383,7 @@ Web Service Clients
383383
~~~~~~~~~~~~~~~~~~~
384384

385385
A web service client can access a Java EE application in two ways.
386-
First, the client can access a web service created with JAX-WS. (For
387-
more information on JAX-WS, see link:jaxws.html#BNAYL[Chapter 29,
388-
"Building Web Services with JAX-WS"].) Second, a web service client can
386+
First, the client can access a web service created with JAX-WS. Second, a web service client can
389387
invoke the business methods of a stateless session bean. Message beans
390388
cannot be accessed by web service clients.
391389

@@ -450,5 +448,3 @@ parameters in remote methods should be relatively coarse-grained. A
450448
coarse-grained object contains more data than a fine-grained one, so
451449
fewer access calls are required. For the same reason, the parameters of
452450
the methods called by web service clients should also be coarse-grained.
453-
454-

src/main/jbake/content/jaxrs.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ type=page
22
status=published
33
title=Building RESTful Web Services with JAX-RS
44
next=jaxrs001.html
5-
prev=jaxws005.html
5+
prev=webservices-intro003.html
66
~~~~~~
77
Building RESTful Web Services with JAX-RS
88
=========================================

src/main/jbake/content/jaxws.adoc

Lines changed: 0 additions & 31 deletions
This file was deleted.

src/main/jbake/content/jaxws001.adoc

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)