This repository was archived by the owner on Jan 28, 2021. It is now read-only.
echo-https
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved.
The contents of this file are subject to the terms of either the GNU
General Public License Version 2 only ("GPL") or the Common Development
and Distribution License("CDDL") (collectively, the "License"). You
may not use this file except in compliance with the License. You can
obtain a copy of the License at
http://glassfish.java.net/public/CDDL+GPL_1_1.html
or packager/legal/LICENSE.txt. See the License for the specific
language governing permissions and limitations under the License.
When distributing the software, include this License Header Notice in each
file and include the License file at packager/legal/LICENSE.txt.
GPL Classpath Exception:
Oracle designates this particular file as subject to the "Classpath"
exception as provided by Oracle in the GPL Version 2 section of the License
file that accompanied this code.
Modifications:
If applicable, add the following below the License Header, with the fields
enclosed by brackets [] replaced by your own identifying information:
"Portions Copyright [year] [name of copyright owner]"
Contributor(s):
If you wish your version of this file to be governed by only the CDDL or
only the GPL Version 2, indicate your decision by adding "[Contributor]
elects to include this software in this distribution under the [CDDL or GPL
Version 2] license." If you don't indicate a single choice of license, a
recipient has the option to distribute your version of this file under
either the CDDL, the GPL Version 2 or to extend the choice of license to
its licensees as provided above. However, if you add GPL Version 2 code
and therefore, elected the GPL Version 2 license, then the option applies
only if the new code is made subject to such option by the copyright
holder.
-->
<html><head><title>Secure Echo Sample</title></head>
<body>
<h1>Secure Echo Sample</h1>
<p>This application presents Echo sample. The user sends a text message, server concatenates text " (from your server)" to the message and sends it back. All data is
secured with ssl.</p>
<h2>Contents</h2>
<p>The application utilizes endpoint <code>org.glassfish.tyrus.sample.echo.https.EchoEndpoint</code> to receive messages, add the text and send it back.</p>
<h2>Running the Example</h2>
<p>Run the example as follows:
deploy:
<blockquote><code>$AS_MAIN/bin/asadmin start-domain</code></blockquote>
<blockquote><code>$AS_MAIN/bin/asadmin deploy --force ./target/*war</code></blockquote>
<p>From a web browser, visit:</p>
<blockquote><code><a href="https://localhost:8181/sample-echo-https">https://localhost:8181/sample-echo-https</a></code></blockquote>
<p>Executing test via maven:</p>
<blockquote><p><code>mvn clean test -Djavax.net.ssl.trustStore=$AS_MAIN/domains/domain1/config/cacerts.jks -Djavax.net.ssl.trustStorePassword=changeit -Dtyrus.test.host=localhost -DskipTests=false -Dtyrus.test.port=8181 -Djavax.net.debug=all</code><br /><br />
<i># Note: you can add <code>-Djavax.net.debug=all</code> for SSL related debug info.</i></p>
<p>Java client SSL properties can be configured separately to JVM configuration, see <a href="https://java.net/jira/browse/TYRUS-146">TYRUS-146</a>. SSL Configuration
is Tyrus proprietary API and might be changed in the future (current version directly depends on <a href="https://grizzly.java.net">Grizzly</a> API).</p>
</blockquote>
</body>
</html>