Web套接字在OpenShift上断开连接(使用WildFly 8.2.1)

时间:2015-11-09 00:47:18

标签: java maven websocket openshift wildfly

我正在使用OpenShift和WildFly 8.2.1 final来实现新的HTML5 websocket。我使用this教程设置了这个项目。

每当我打开MyTest.html时,这就是JavaScript记录的内容:

JS: Server Connected...
JS: Server Disconnected...

服务器连接然后立即断开连接。为什么?我究竟做错了什么?有什么东西我不见了吗?

这是模式代码 - >

serverendpoint.java

package testing;

import javax.websocket.OnClose;
import javax.websocket.OnError;
import javax.websocket.OnMessage;
import javax.websocket.OnOpen;
import javax.websocket.server.ServerEndpoint;

@ServerEndpoint("/serverendpoint")
public class serverendpoint {
    @OnOpen
    public void handleOpen () {
        System.out.println("JAVA: Client is now connected...");
    }

    @OnMessage
    public String handleMessage (String message) {
        System.out.println("JAVA: Received from client: "+ message);
        String replyMessage = "echo "+ message; 
        System.out.println("JAVA: Send to client: "+ replyMessage);
        return replyMessage;
    }

    @OnClose
    public void handleClose() {
        System.out.println("JAVA: Client is now disconnected...");
    }

    @OnError
    public void handleError (Throwable t) {
        t.printStackTrace();
    }
}

MyTest.html:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My WS Website</title>
</head>
<body>
    <form>
        <input id="textMessage" type="text">
        <input onclick="sendMessage();" value="Send Message" type="button">
    </form>
    <br>
    <textarea id="messageTextArea" rows="10" cols="50"></textarea>
    <script type="text/javascript">
        var wsUri = "ws://" + document.location.hostname + ":8000" + document.location.pathname + "serverendpoint";
        var webSocket = new WebSocket(wsUri);
        var messageTextArea = document.getElementById("messageTextArea");
        webSocket.onopen = function(message) { processOpen(message);};
        webSocket.onmessage = function(message) { processMessage(message);};
        webSocket.onclose = function(message) { processClose(message);};
        webSocket.onerror = function(message) { processError(message);};
        function processOpen (message) {
            messageTextArea.value += "JS: Server Connected..."+"\n";
        }
        function processMessage(message) {
            messageTextArea.value += "JS: Receive from Server ==> "+message.data+"\n";
        }
        function sendMessage () {
            if (textMessage.value !="close") {
                webSocket.send(textMessage.value);
                messageTextArea.value += "JS: Send to Server ==> "+textMessage.value+"\n";
                textMessage.value="";
            } else webSocket.close();
        }
        function processClose(message) {
            webSocket.send("JS: Client disconnected...")
            messageTextArea.value += "JS: Server Disconnected..."+"\n";
        }
        function processError (message) {
            messageTextArea.value += "JS: error ..."+"\n";
        }
    </script>
</body>
</html>

和pom.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>testing</groupId>
    <artifactId>testing</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>testing</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-api</artifactId>
            <version>7.0</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

<profiles>
    <profile>
     <!-- When built in OpenShift the 'openshift' profile will be used when invoking mvn. -->
     <!-- Use this profile for any OpenShift specific customization your app will need. -->
     <!-- By default that is to put the resulting archive into the 'deployments' folder. -->
     <!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
     <id>openshift</id>
     <build>
        <finalName>testing</finalName>
        <plugins>
          <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                    <outputDirectory>deployments</outputDirectory>
                      <warName>ROOT</warName>
                </configuration>
            </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>

感谢您的帮助!

2 个答案:

答案 0 :(得分:1)

Open shift对套接字的端口编号有一些奇怪的规则。你把它命名为一件事,将其称为其他东西.... enter image description here

我认为您希望端口8080用于服务器,让客户端找到自己的端口。

注意:我只是通过node.js在Open Shift中使用套接字我记得在端口#&#39; s上拉出我的头发。 ......这是我的代码:

self.ipaddress = process.env.OPENSHIFT_NODEJS_IP;
self.port      = process.env.OPENSHIFT_NODEJS_PORT || 8080;    

我不确切知道这两个变量名称是什么......

您可能需要check out this link.

更新:我一直在努力复制这个问题,但都无济于事。首先,我尝试在我的localhost(win7桌面)上重现教程,但我没有取得多大进展。我正在使用Java JDK 1.8.0_65,那就是wildfly-8.2.1.Final ......我可以让服务器显示在http://localhost:8080/(带有wildfly启动画面)但我无法获得{{ 3}}完全起作用(404 - Not Found)。所以,我没有太多帮助......

Bingo ...我不得不将浏览器客户端中的URL更改为http://localhost:8080/websocket-chat/,所以现在我在桌面本地主机上运行了。我明天会去OpenShift。

所以我一直试图将您的推送复制到OpenShift。我现在正在理解你的pom.xml问题。真正的问题是你不能将文件传输到OpenShift,你必须通过git推送它们。库javee7-libraries非常庞大,而且pom.xml文件非常交织在一起。你不希望将整个库推送到openshift,并且没有简单的方法将POM文件集成到简单(我已经尝试过!)我不断收到maven错误。

该教程有点破解..他在javee7库中生成war文件(并避免所有POM依赖性难度),然后将它们复制回原始聊天组件目录。然后他删除聊天组件目录中的几乎所有内容,包括源代码,然后将war文件通过git推送到openshift。啊。注意:我通过atom.io和命令行完成所有这些操作。

您尝试做的事情对我来说更有意义,但我无法找出独立聊天目录的正确pom.xml以避免maven错误。

我一整天都在努力工作。这就是我学到的东西。

  • 我能够让我的本地主机上的示例正常工作。
  • 您的pom.xml(随盒式磁带提供的#34; WildFly Application Server 8.2.1.Final&#34;绝对正确,测试文件较少。
  • 您必须使用命令&#39; $ mvn -f pom.xml package -Popenshift`
  • 生成.war文件
  • 为了通过git将.war文件推送到OpenShift服务器,你必须修改.gitignore文件,以便识别.war文件(duh。)
  • 我用不同的端口#s和ws:// codes
  • 玩了很多
  • 完成所有这些后,我仍然可以获得与您相同的输出。我得到一个连接,当我尝试发送文本时,我得到一个JS错误,立即断开连接。
  • rhc工具对Windows机器来说是一种痛苦。事实上,我根本无法工作。
  • 当我仔细查看代码时,套接字的东西是通过html5实现套接字的简单JS。我怀疑版本并不是那么强大。我更喜欢看到像http://localhost:8080/chat/这样的专用JS套接字库。另一个注意事项是,对于html5版本,我们无法控制服务器告诉服务器哪个端口承载套接字。我们可以控制的唯一代码是客户端代码,而这并不是我们想要的。
  • 测试的唯一方法是使用库更新javascript代码并移动它。

答案 1 :(得分:1)

我打算在打开websocket时尝试连接到不存在的端点。

这(请注意,你错过了/../):

var wsUri = "ws://" + document.location.hostname + ":8000" + document.location.pathname + "/../serverendpoint";

...将适用于部署到WildFly的文件,如下所示:

├── pom.xml
└── src
    └── main
        ├── java
        │   └── testing
        │       └── serverendpoint.java
        └── webapp
            ├── MyTest.html
            └── WEB-INF
                └── web.xml

我在OpenShift Online上的WildFly 10盒式磁带上使用您的代码(带有修改的端点路径)检查了这一点。