Skip to content

Kaazing WebSocket client using RFC-6455 and emulated protocols, plus AMQP protocol client

License

Notifications You must be signed in to change notification settings

sanjay-saxena/java.client

 
 

Repository files navigation

java.client

Build Status

About this Project

This project contains community version of Java [WebSocket] (https://tools.ietf.org/html/rfc6455) and AMQP 0-9-1 Client Libraries.

Developers can include the Java WebSocket Client using the following maven dependency to develop and run web applications:

<dependency>
    <groupId>org.kaazing</groupId>
    <artifactId>gateway.client.java</artifactId>
    <version>[5.1.0.0,5.2.0.0)</version>
</dependency>

Developers can include the Java AMQP 0-9-1 Client using the following maven dependency to develop and run web applications:

<dependency>
    <groupId>org.kaazing</groupId>
    <artifactId>amqp.client.java</artifactId>
    <version>[5.1.0.0,5.2.0.0)</version>
</dependency>

Building this Project

Minimum requirements for building the project

  • Java SE Development Kit (JDK) 7 or higher
  • maven 3.0.5 or higher

Steps for building this project

  1. Clone the repo: git clone https://github.com/kaazing/java.client.git
  2. Go to the cloned directory: cd java.client
  3. Build the project: mvn clean install

Running the WebSocket demo

From the command-line

  1. Change directory: cd ws/demo/target
  2. Run the demo application: java -cp . -jar gateway.client.java.demo-develop-SNAPSHOT.jar

From within Eclipse

  1. Import the project in Eclipse
  2. Under gateway.client.java.demo project, right-click on WebSocketFrame.java or WebSocketApplet.java in src/main/java/org.kaazing.net.ws.demo and run!

Running the AMQP 0-9-1 demo

From the command-line

  1. Change directory: cd amqp0-9-1/demo/target
  2. Run the demo application: java -cp . -jar amqp.client.java.demo-develop-SNAPSHOT.jar

From within Eclipse

  1. Import the project in Eclipse
  2. Under amqp.client.java.demo project, right-click on AmqpFrame.java or AmqpApplet.java in src/main/java/org.kaazing.net.ws.amqp.demo and run!

Learning How to Develop Client Applications

Learn to develop RFC-6455 based Java client applications.

View a Running Demo

View a demo (see kaazing.org)

About

Kaazing WebSocket client using RFC-6455 and emulated protocols, plus AMQP protocol client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 99.9%
  • Other 0.1%