单点登录三个接口
parent
a0bf1fec0b
commit
62f6af6b0b
@ -0,0 +1,16 @@
|
||||
package com.api.wxbsinglelogin;
|
||||
|
||||
import com.engine.web.wxbaction.SingelLoginAction;
|
||||
|
||||
import javax.ws.rs.Path;
|
||||
|
||||
|
||||
/**
|
||||
* @author:CL
|
||||
* @date:2023/3/6 10:02
|
||||
* wxb单点登录接口
|
||||
*/
|
||||
@Path("/wxb/singleLogin")
|
||||
public class SingelLoginApi extends SingelLoginAction {
|
||||
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
|
||||
Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information.
|
||||
-->
|
||||
<application generated-by="intellij" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_3.xsd">
|
||||
|
||||
<id>TestJrebel</id>
|
||||
|
||||
<classpath>
|
||||
<dir name="D:/Project/TestJrebel/out/production/TestJrebel">
|
||||
</dir>
|
||||
</classpath>
|
||||
|
||||
</application>
|
@ -0,0 +1,69 @@
|
||||
package weaver.formmode.customjavacode.modeexpand;
|
||||
|
||||
import com.alitriph5.logging.Logger;
|
||||
import com.alitriph5.logging.LoggerFactory;
|
||||
import org.java_websocket.client.WebSocketClient;
|
||||
import org.java_websocket.handshake.ServerHandshake;
|
||||
|
||||
import java.net.URI;
|
||||
/**
|
||||
* @author:CL
|
||||
* @date:2023/3/8 8:50
|
||||
*/
|
||||
|
||||
public class MyWebSocketClient extends WebSocketClient {
|
||||
|
||||
private static final Logger log = LoggerFactory.getLogger("【--------------wxb_SingelLogin---MyWebSocketClient-----】");
|
||||
|
||||
//用来接收数据
|
||||
private String excptMessage;
|
||||
|
||||
//构造方法
|
||||
public MyWebSocketClient(URI serverUri) {
|
||||
super(serverUri);
|
||||
excptMessage = null;
|
||||
}
|
||||
|
||||
//连接建立成功时调用该方法
|
||||
@Override
|
||||
public void onOpen(ServerHandshake serverHandshake) {
|
||||
log.info("获取票据接口与本地 WebSocket 连接成功!");
|
||||
}
|
||||
|
||||
//收到来自服务端的消息时调用该方法
|
||||
@Override
|
||||
public void onMessage(String s) {
|
||||
log.info("获取票据接口 收到本地终端WebSocket 消息:" + s);
|
||||
this.excptMessage = s;
|
||||
}
|
||||
|
||||
//连接关闭时调用该方法
|
||||
@Override
|
||||
public void onClose(int i, String s, boolean b) {
|
||||
log.info("获取票据接口与本地 WebSocket 连接 已断开!");
|
||||
}
|
||||
|
||||
//出现错误时调用该方法
|
||||
@Override
|
||||
public void onError(Exception e) {
|
||||
log.info("获取票据接口与本地 WebSocket 连接出现错误!");
|
||||
}
|
||||
|
||||
//发送消息
|
||||
public void sendMessage(String message){
|
||||
this.send(message);
|
||||
log.info("获取票据接口向本地 WebSocket 发送消息 成功!【 " + message+" 】");
|
||||
}
|
||||
|
||||
//获取接收到的信息
|
||||
public String getExcptMessage() {
|
||||
if(excptMessage != null){
|
||||
String message = new String(excptMessage);
|
||||
excptMessage = null;
|
||||
return message;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -0,0 +1,200 @@
|
||||
2020/03/23 12:38:13 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/23 12:52:43 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/23 12:55:15 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/23 12:55:46 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/23 16:37:31 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/23 16:42:40 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/23 18:41:20 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/27 14:44:48 [I] version 1.0
|
||||
2020/03/27 14:44:48 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2020/03/27 14:45:03 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge></challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/27 14:45:26 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge></challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/27 14:45:33 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:36 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:39 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:42 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:45 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:48 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:51 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:54 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:45:57 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:00 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:03 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:06 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:09 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:12 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:15 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:18 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:21 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:24 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:27 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:30 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:33 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:36 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:39 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:42 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:45 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:48 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:51 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:54 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:46:57 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:00 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:03 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:06 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:09 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:12 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:15 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:18 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:21 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:24 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:27 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:30 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:33 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:36 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:39 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:42 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:45 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:48 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:51 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:54 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:47:57 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:00 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:03 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:06 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:09 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:12 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:15 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:18 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:21 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:24 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:27 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:30 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:33 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:36 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:39 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:42 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:45 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:48 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:51 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:54 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:48:57 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:49:00 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:49:03 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:49:06 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:49:09 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:49:12 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:18 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/27 14:54:22 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:24 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:27 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:30 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:33 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:36 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:39 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:42 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:45 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:48 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:51 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:54 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:54:57 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:00 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:03 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:06 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:09 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:12 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:15 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:18 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:21 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:24 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:27 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:30 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:33 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:36 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:40 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 14:55:42 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:03:13 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/27 15:05:21 [I] version 1.0
|
||||
2020/03/27 15:05:21 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2020/03/27 15:05:23 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/27 15:16:38 [I] version 1.0
|
||||
2020/03/27 15:16:38 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2020/03/27 15:16:44 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/27 15:16:45 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:46 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:47 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:48 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:49 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:50 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:51 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:52 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:53 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:54 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:55 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:56 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:57 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:58 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:16:59 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:00 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:01 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:02 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:03 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:04 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:05 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:06 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:07 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:08 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:09 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:10 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:11 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:12 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:13 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:14 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:15 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:16 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:17 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:18 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:19 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:20 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:21 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:22 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:23 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:24 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:25 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:26 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:27 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:28 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:38 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:47 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/27 15:17:56 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/30 10:21:34 [I] version 1.0
|
||||
2020/03/30 10:21:34 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2020/03/30 10:24:29 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>dGVzdHJhbmRvbWRhdGE=</challenge></getsignandtokenreq>, message type 1
|
||||
2020/03/30 10:24:38 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/30 10:24:47 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/30 10:24:56 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/30 10:25:05 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/30 10:25:14 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/03/30 10:25:23 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getauthstatusreq version="1"></getauthstatusreq>, message type 1
|
||||
2020/05/25 16:41:09 [I] version 1.0
|
||||
2020/05/25 16:41:09 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2020/05/25 16:43:08 [I] version 1.0
|
||||
2020/05/25 16:43:08 [I] start websocket server, url: 10.106.9.202:30318
|
||||
2020/05/25 16:44:01 [I] websocket request for user info
|
||||
2020/05/25 16:44:02 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtoken version="1"><challenge>7DbgT65HZFiNEQ5rK3X7eQ==</challenge></getsignandtoken>, message type 1
|
||||
2020/05/25 16:44:02 [I] websocket send message finished: userId=testUserId
|
||||
2020/05/25 16:44:29 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtoken version="1"><challenge>7DbgT65HZFiNEQ5rK3X7eQ==</challenge></getsignandtoken>, message type 1
|
||||
2021/10/21 14:09:31 [I] version 1.0
|
||||
2021/10/21 14:09:31 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2021/10/21 14:09:59 [I] recv: <?xml version="1.0" encoding="UTF-8"?><getsignandtokenreq version="1"><challenge>7DbgT65HZFiNEQ5rK3X7eQ==</challenge></getsignandtokenreq>, message type 1
|
||||
2023/03/03 17:00:01 [I] version 1.0
|
||||
2023/03/03 17:00:01 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2023/03/03 17:00:04 [I] version 1.0
|
||||
2023/03/03 17:00:04 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2023/03/06 11:22:49 [I] version 1.0
|
||||
2023/03/06 11:22:49 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2023/03/06 11:22:52 [I] version 1.0
|
||||
2023/03/06 11:22:52 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2023/03/06 11:22:53 [I] version 1.0
|
||||
2023/03/06 11:22:53 [I] start websocket server, url: 127.0.0.1:30318
|
||||
2023/03/06 11:49:42 [I] version 1.0
|
||||
2023/03/06 11:49:42 [I] start websocket server, url: 127.0.0.1:30318
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,70 @@
|
||||
Copyright © 2006, 2011, Oracle and/or its affiliates.
|
||||
All rights reserved.
|
||||
|
||||
This software and related documentation are provided under a
|
||||
license agreement containing restrictions on use and
|
||||
disclosure and are protected by intellectual property laws.
|
||||
Except as expressly permitted in your license agreement or
|
||||
allowed by law, you may not use, copy, reproduce, translate,
|
||||
broadcast, modify, license, transmit, distribute, exhibit,
|
||||
perform, publish, or display any part, in any form, or by
|
||||
any means. Reverse engineering, disassembly, or
|
||||
decompilation of this software, unless required by law for
|
||||
interoperability, is prohibited.
|
||||
|
||||
The information contained herein is subject to change
|
||||
without notice and is not warranted to be error-free. If
|
||||
you find any errors, please report them to us in writing.
|
||||
|
||||
If this is software or related software documentation that
|
||||
is delivered to the U.S. Government or anyone licensing it
|
||||
on behalf of the U.S. Government, the following notice is
|
||||
applicable:
|
||||
|
||||
U.S. GOVERNMENT RIGHTS Programs, software, databases, and
|
||||
related documentation and technical data delivered to U.S.
|
||||
Government customers are "commercial computer software" or
|
||||
"commercial technical data" pursuant to the applicable
|
||||
Federal Acquisition Regulation and agency-specific
|
||||
supplemental regulations. As such, the use, duplication,
|
||||
disclosure, modification, and adaptation shall be subject to
|
||||
the restrictions and license terms set forth in the
|
||||
applicable Government contract, and, to the extent
|
||||
applicable by the terms of the Government contract, the
|
||||
additional rights set forth in FAR 52.227-19, Commercial
|
||||
Computer Software License (December 2007). Oracle America,
|
||||
Inc., 500 Oracle Parkway, Redwood City, CA 94065.
|
||||
|
||||
This software or hardware is developed for general use in a
|
||||
variety of information management applications. It is not
|
||||
developed or intended for use in any inherently dangerous
|
||||
applications, including applications which may create a risk
|
||||
of personal injury. If you use this software or hardware in
|
||||
dangerous applications, then you shall be responsible to
|
||||
take all appropriate fail-safe, backup, redundancy, and
|
||||
other measures to ensure its safe use. Oracle Corporation
|
||||
and its affiliates disclaim any liability for any damages
|
||||
caused by use of this software or hardware in dangerous
|
||||
applications.
|
||||
|
||||
Oracle and Java are registered trademarks of Oracle and/or
|
||||
its affiliates. Other names may be trademarks of their
|
||||
respective owners.
|
||||
|
||||
AMD, Opteron, the AMD logo, and the AMD Opteron logo are
|
||||
trademarks or registered trademarks of Advanced Micro
|
||||
Devices. Intel and Intel Xeon are trademarks or registered
|
||||
trademarks of Intel Corporation. All SPARC trademarks are
|
||||
used under license and are trademarks or registered
|
||||
trademarks of SPARC International, Inc. UNIX is a
|
||||
registered trademark licensed through X/Open Company, Ltd.
|
||||
|
||||
This software or hardware and documentation may provide
|
||||
access to or information on content, products, and services
|
||||
from third parties. Oracle Corporation and its affiliates
|
||||
are not responsible for and expressly disclaim all
|
||||
warranties of any kind with respect to third-party content,
|
||||
products, and services. Oracle Corporation and its
|
||||
affiliates will not be responsible for any loss, costs, or
|
||||
damages incurred due to your access to or use of third-party
|
||||
content, products, or services.
|
@ -0,0 +1,374 @@
|
||||
README
|
||||
|
||||
Java(TM) Platform, Standard Edition
|
||||
Runtime Environment
|
||||
Version 6
|
||||
|
||||
|
||||
The Java(TM) Platform, Standard Edition Runtime Environment (JRE(TM)),
|
||||
excluding the JavaFX(TM) runtime, is intended for software developers
|
||||
and vendors to redistribute with their applications.
|
||||
|
||||
The Java SE Runtime Environment contains the Java virtual machine,
|
||||
runtime class libraries, and Java application launcher that are
|
||||
necessary to run programs written in the Java programming language.
|
||||
It is not a development environment and does not contain development
|
||||
tools such as compilers or debuggers. For development tools, see the
|
||||
Java SE Development Kit (JDK(TM)). The JRE installation triggers the
|
||||
download of the JavaFX runtime. The JavaFX runtime is also available
|
||||
separately, and is not part of the JRE. For information on JavaFX, and
|
||||
how to make changes, go to: http://java.com/javafx
|
||||
|
||||
|
||||
=======================================================================
|
||||
Deploying Applications with the Java SE Runtime Environment
|
||||
=======================================================================
|
||||
|
||||
When you deploy an application written in the Java programming
|
||||
language, your software bundle will probably consist of the following
|
||||
parts:
|
||||
|
||||
Your own class, resource, and data files.
|
||||
The Java SE Runtime Environment.
|
||||
An installation procedure or program.
|
||||
|
||||
You already have the first part, of course. The remainder of this
|
||||
document covers the other two parts. See also the Notes for Developers
|
||||
page on the Java Software website:
|
||||
|
||||
http://java.sun.com/javase/6/webnotes/runtime.html
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
Java Platform, Standard Edition Runtime Environment (JRE)
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
To run your application, a user needs the Java SE Runtime Environment,
|
||||
which is freely available from Oracle. Or, you can redistribute the
|
||||
Java SE Runtime Environment for free with your application, according
|
||||
to the terms of the Java SE Platform Runtime Environment's license. The
|
||||
JavaFX runtime is only required to run applications written in the
|
||||
JavaFX scripting language; it is freely available from Oracle, and must
|
||||
not be redistributed with your application.
|
||||
|
||||
The final step in the deployment process occurs when the software is
|
||||
installed on an individual user's system. Installation consists of copying
|
||||
software onto the user's system, then configuring the user's system
|
||||
to support that software. You should ensure that your installation
|
||||
procedure does not overwrite existing JRE installations, as they may
|
||||
be required by other applications.
|
||||
|
||||
|
||||
=======================================================================
|
||||
Redistribution of the Java SE Runtime Environment (JRE)
|
||||
=======================================================================
|
||||
|
||||
--------------------------------------------------------
|
||||
NOTE - The license for this software does not allow the
|
||||
redistribution of beta and other pre-release versions.
|
||||
--------------------------------------------------------
|
||||
|
||||
Subject to the terms and conditions of the Software License
|
||||
Agreement and the obligations, restrictions, and exceptions set
|
||||
forth below, You may reproduce and distribute the Software (and
|
||||
also portions of Software identified below as Redistributable),
|
||||
provided that:
|
||||
|
||||
(a) you distribute the Software complete and unmodified and only
|
||||
bundled as part of your applets and applications ("Programs"),
|
||||
|
||||
(b) your Programs add significant and primary functionality to the
|
||||
Software,
|
||||
|
||||
(c) your Programs are only intended to run on Java-enabled general
|
||||
purpose desktop computers and servers,
|
||||
|
||||
(d) you distribute Software for the sole purpose of running your
|
||||
Programs,
|
||||
|
||||
(e) you do not distribute additional software intended to replace
|
||||
any component(s) of the Software,
|
||||
|
||||
(f) you do not remove or alter any proprietary legends or notices
|
||||
contained in or on the Software,
|
||||
|
||||
(g) you only distribute the Software subject to a license agreement
|
||||
that protects Oracle's interests consistent with the terms
|
||||
contained in this Agreement, and
|
||||
|
||||
(h) you agree to defend and indemnify Oracle and its licensors from
|
||||
and against any damages, costs, liabilities, settlement amounts
|
||||
and/or expenses (including attorneys' fees) incurred in
|
||||
connection with any claim, lawsuit or action by any third party
|
||||
that arises or results from the use or distribution of any and
|
||||
all Programs and/or Software.
|
||||
|
||||
The term "vendors" used here refers to licensees, developers, and
|
||||
independent software vendors (ISVs) who license and distribute the
|
||||
Java SE Runtime Environment with their programs.
|
||||
|
||||
Vendors must follow the terms of the Java SE Runtime Environment Binary
|
||||
Code License agreement.
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
Required vs. Optional Files
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
The files that make up the Java SE Runtime Environment are divided into
|
||||
two categories: required and optional. Optional files may be excluded
|
||||
from redistributions of the Java SE Runtime Environment at the
|
||||
vendor's discretion.
|
||||
|
||||
The following section contains a list of the files and directories that
|
||||
may optionally be omitted from redistributions with the Java SE Runtime
|
||||
Environment. All files not in these lists of optional files must be
|
||||
included in redistributions of the runtime environment.
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
Optional Files and Directories
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
The following files may be optionally excluded from redistributions.
|
||||
These files are located in the jre1.6.0_<version> directory, where
|
||||
<version> is the update version number. Solaris and Linux filenames
|
||||
and separators are shown. Windows executables have the ".exe" suffix.
|
||||
Corresponding files with _g in the name can also be excluded.
|
||||
The corresponding man pages should be excluded for any excluded
|
||||
executables (with paths listed below beginning with bin/ ,
|
||||
for the Solaris(TM) Operating System and Linux).
|
||||
|
||||
lib/charsets.jar
|
||||
Character conversion classes
|
||||
lib/ext/
|
||||
sunjce_provider.jar - the SunJCE provider for Java
|
||||
Cryptography APIs
|
||||
localedata.jar - contains many of the resources
|
||||
needed for non US English locales
|
||||
ldapsec.jar - contains security features supported
|
||||
by the LDAP service provider
|
||||
dnsns.jar - for the InetAddress wrapper of JNDI DNS provider
|
||||
bin/rmid
|
||||
Java RMI Activation System Daemon
|
||||
bin/rmiregistry
|
||||
Java Remote Object Registry
|
||||
bin/tnameserv
|
||||
Java IDL Name Server
|
||||
bin/keytool
|
||||
Key and Certificate Management Tool
|
||||
bin/kinit
|
||||
Used to obtain and cache Kerberos ticket-granting tickets
|
||||
bin/klist
|
||||
Kerberos display entries in credentials cache and keytab
|
||||
bin/ktab
|
||||
Kerberos key table manager
|
||||
bin/policytool
|
||||
Policy File Creation and Management Tool
|
||||
bin/orbd
|
||||
Object Request Broker Daemon
|
||||
bin/servertool
|
||||
Java IDL Server Tool
|
||||
bin/javaws, lib/javaws/ and lib/javaws.jar
|
||||
Java Web Start
|
||||
|
||||
When redistributing the JRE on Microsoft Windows as a private
|
||||
application runtime (not accessible by other applications)
|
||||
with a custom launcher, the following files are also
|
||||
optional. These are libraries and executables that are used
|
||||
for Java support in Internet Explorer and Mozilla family browsers;
|
||||
these files are not needed in a private JRE redistribution.
|
||||
|
||||
bin\java.exe
|
||||
bin\javaw.exe
|
||||
bin\javaws.exe
|
||||
bin\javacpl.exe
|
||||
bin\jucheck.exe
|
||||
bin\jusched.exe
|
||||
|
||||
bin\wsdetect.dll
|
||||
bin\NPJPI*.dll (The filename changes in every release)
|
||||
bin\NPJava11.dll
|
||||
bin\NPJava12.dll
|
||||
bin\NPJava13.dll
|
||||
bin\NPJava14.dll
|
||||
bin\NPJava32.dll
|
||||
bin\NPOJI610.dll
|
||||
bin\RegUtils.dll
|
||||
bin\axbridge.dll
|
||||
bin\deploy.dll
|
||||
bin\jpicom.dll
|
||||
bin\javacpl.cpl
|
||||
bin\jpiexp.dll
|
||||
bin\jpinscp.dll
|
||||
bin\jpioji.dll
|
||||
bin\jpishare.dll
|
||||
lib\deploy.jar
|
||||
lib\plugin.jar
|
||||
lib\javaws.jar
|
||||
lib\javaws\messages.properties
|
||||
lib\javaws\messages_de.properties
|
||||
lib\javaws\messages_es.properties
|
||||
lib\javaws\messages_fr.properties
|
||||
lib\javaws\messages_it.properties
|
||||
lib\javaws\messages_ja.properties
|
||||
lib\javaws\messages_ko.properties
|
||||
lib\javaws\messages_sv.properties
|
||||
lib\javaws\messages_zh_CN.properties
|
||||
lib\javaws\messages_zh_HK.properties
|
||||
lib\javaws\messages_zh_TW.properties
|
||||
lib\javaws\miniSplash.jpg
|
||||
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
Redistributable JDK(TM) Files
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
The limited set of files from the Java SE Development Kit (JDK)
|
||||
listed below may be included in vendor redistributions of the Java SE
|
||||
Runtime Environment. All paths are relative to the top-level
|
||||
directory of the JDK. The corresponding man pages should be included for
|
||||
any included executables (with paths listed below beginning with bin/ ,
|
||||
for the Solaris(TM) Operating System and Linux).
|
||||
|
||||
jre/lib/cmm/PYCC.pf
|
||||
Color profile. This file is required only if one wishes to
|
||||
convert between the PYCC color space and another color space.
|
||||
|
||||
All .ttf font files in the jre/lib/fonts directory.
|
||||
Note that the LucidaSansRegular.ttf font is already contained
|
||||
in the Java SE Runtime Environment, so there is no need to
|
||||
bring that file over from the JDK.
|
||||
|
||||
jre/lib/audio/soundbank.gm
|
||||
This MIDI soundbank is present in the JDK, but it has
|
||||
been removed from the Java SE Runtime Environment in order to
|
||||
reduce the size of the Runtime Environment's download bundle.
|
||||
However, a soundbank file is necessary for MIDI playback, and
|
||||
therefore the JDK's soundbank.gm file may be included in
|
||||
redistributions of the Runtime Environment at the vendor's
|
||||
discretion. Several versions of enhanced MIDI soundbanks are
|
||||
available from the Java Sound web site:
|
||||
http://java.sun.com/products/java-media/sound/
|
||||
These alternative soundbanks may be included in redistributions
|
||||
of the Java SE Runtime Environment.
|
||||
|
||||
The javac bytecode compiler, consisting of the following files:
|
||||
bin/javac [Solaris(TM) Operating System
|
||||
and Linux]
|
||||
bin/sparcv9/javac [Solaris Operating System
|
||||
(SPARC(R) Platform Edition)]
|
||||
bin/amd64/javac [Solaris Operating System (AMD)]
|
||||
bin/javac.exe [Microsoft Windows]
|
||||
lib/tools.jar [All platforms]
|
||||
|
||||
The Annotation Processing Tool, consisting of the following files:
|
||||
lib/tools.jar [All platforms]
|
||||
bin/apt [Solaris(TM) Operating System
|
||||
and Linux]
|
||||
bin/sparcv9/apt [Solaris Operating System
|
||||
(SPARC(R) Platform Edition)]
|
||||
bin/amd64/apt [Solaris Operating System (AMD)]
|
||||
bin/apt.exe [Microsoft Windows]
|
||||
|
||||
lib/jconsole.jar
|
||||
The Jconsole application. NOTE: The Jconsole application requires
|
||||
the dynamic attach mechanism.
|
||||
|
||||
The dynamic attach mechanism consisting of the following files:
|
||||
lib/tools.jar [All platforms]
|
||||
jre/lib/sparc/libattach.so
|
||||
[Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
|
||||
jre/lib/sparcv9/libattach.so
|
||||
[Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
|
||||
jre/lib/i386/libattach.so
|
||||
[Solaris(TM) Operating System (x86) and Linux]
|
||||
jre/lib/amd64/libattach.so
|
||||
[Solaris(TM) Operating System (AMD) and Linux]
|
||||
jre\bin\attach.dll [Microsoft Windows]
|
||||
|
||||
The Java Platform Debugger Architecture implementation consisting of the
|
||||
files shown in the dynamic attach section above, and the following files:
|
||||
lib/tools.jar [All platforms]
|
||||
lib/sa-jdi.jar [All platforms]
|
||||
jre/lib/sparc/libsaproc.so
|
||||
[Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
|
||||
jre/lib/sparcv9/libsaproc.so
|
||||
[Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
|
||||
jre/lib/i386/libsaproc.so
|
||||
[Solaris(TM) Operating System (x86) and Linux]
|
||||
jre/lib/amd64/libsaproc.so
|
||||
[Solaris(TM) Operating System (AMD) and Linux]
|
||||
|
||||
jre\bin\server\
|
||||
On Microsoft Windows platforms, the JDK includes both
|
||||
the Java HotSpot(TM) Server VM and Java HotSpot Client VM.
|
||||
However, the Java SE Runtime Environment for Microsoft Windows
|
||||
platforms includes only the Java HotSpot Client VM. Those wishing
|
||||
to use the Java HotSpot Server VM with the Java SE Runtime
|
||||
Environment may copy the JDK's jre\bin\server folder to a
|
||||
bin\server directory in the Java SE Runtime Environment. Software
|
||||
vendors may redistribute the Java HotSpot Server VM with their
|
||||
redistributions of the Java SE Runtime Environment.
|
||||
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
Unlimited Strength Java Cryptography Extension
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
Due to import control restrictions for some countries, the Java
|
||||
Cryptography Extension (JCE) policy files shipped with the Java SE
|
||||
Development Kit and the Java SE Runtime Environment allow strong but
|
||||
limited cryptography to be used. These files are located at
|
||||
|
||||
<java-home>/lib/security/local_policy.jar
|
||||
<java-home>/lib/security/US_export_policy.jar
|
||||
|
||||
where <java-home> is the jre directory of the JDK or the
|
||||
top-level directory of the Java SE Runtime Environment.
|
||||
|
||||
An unlimited strength version of these files indicating no restrictions
|
||||
on cryptographic strengths is available on the JDK web site for
|
||||
those living in eligible countries. Those living in eligible countries
|
||||
may download the unlimited strength version and replace the strong
|
||||
cryptography jar files with the unlimited strength files.
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
The cacerts Certificates File
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
Root CA certificates may be added to or removed from the Java SE
|
||||
certificate file located at
|
||||
|
||||
<java-home>/lib/security/cacerts
|
||||
|
||||
For more information, see The cacerts Certificates File section
|
||||
in the keytool documentation at:
|
||||
|
||||
http://java.sun.com/javase/6/docs/tooldocs/solaris/keytool.html#cacerts
|
||||
|
||||
=======================================================================
|
||||
Endorsed Standards Override Mechanism
|
||||
=======================================================================
|
||||
|
||||
From time to time it is necessary to update the Java platform in order
|
||||
to incorporate newer versions of standards that are created outside of
|
||||
the Java Community Process(SM) (JCP(SM) http://www.jcp.org/) (Endorsed
|
||||
Standards), or in order to update the version of a technology included
|
||||
in the platform to correspond to a later standalone version of that
|
||||
technology (Standalone Technologies).
|
||||
|
||||
The Endorsed Standards Override Mechanism provides a means whereby
|
||||
later versions of classes and interfaces that implement Endorsed
|
||||
Standards or Standalone Technologies may be incorporated into the Java
|
||||
Platform.
|
||||
|
||||
For more information on the Endorsed Standards Override Mechanism,
|
||||
including the list of platform packages that it may be used to
|
||||
override, see
|
||||
|
||||
http://java.sun.com/javase/6/docs/technotes/guides/standards/
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
The Java(TM) Runtime Environment (JRE) and the JavaFX(TM) runtime are
|
||||
products of Oracle.
|
||||
|
||||
Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
|
@ -0,0 +1 @@
|
||||
Please see http://www.oracle.com/technetwork/goto/javase/thirdpartyreadme/6
|
@ -0,0 +1,26 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>
|
||||
Welcome to the Java(TM) Platform
|
||||
</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h2>Welcome to the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> Platform</h2>
|
||||
<p> Welcome to the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> Standard Edition Runtime
|
||||
Environment. This provides complete runtime support for Java applications.
|
||||
<p> The runtime environment includes the Java<SUP><FONT SIZE=-2>TM</FONT></SUP>
|
||||
Plug-in product which supports the Java environment inside web browsers.
|
||||
<h3>References</h3>
|
||||
<p>
|
||||
See the <a href=http://java.sun.com/javase/6/docs/technotes/guides/plugin/index.html>Java Plug-in</a> product
|
||||
documentation for more information on using the Java Plug-in product.
|
||||
<p> See the <a href=http://java.sun.com/javase>Java Platform</a> web site for
|
||||
more information on the Java Platform.
|
||||
<hr>
|
||||
<font size="-2">
|
||||
Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
</font>
|
||||
<p>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,24 @@
|
||||
-Xmixed mixed mode execution (default)
|
||||
-Xint interpreted mode execution only
|
||||
-Xbootclasspath:<directories and zip/jar files separated by ;>
|
||||
set search path for bootstrap classes and resources
|
||||
-Xbootclasspath/a:<directories and zip/jar files separated by ;>
|
||||
append to end of bootstrap class path
|
||||
-Xbootclasspath/p:<directories and zip/jar files separated by ;>
|
||||
prepend in front of bootstrap class path
|
||||
-Xnoclassgc disable class garbage collection
|
||||
-Xincgc enable incremental garbage collection
|
||||
-Xloggc:<file> log GC status to a file with time stamps
|
||||
-Xbatch disable background compilation
|
||||
-Xms<size> set initial Java heap size
|
||||
-Xmx<size> set maximum Java heap size
|
||||
-Xss<size> set java thread stack size
|
||||
-Xprof output cpu profiling data
|
||||
-Xfuture enable strictest checks, anticipating future default
|
||||
-Xrs reduce use of OS signals by Java/VM (see documentation)
|
||||
-Xcheck:jni perform additional checks for JNI functions
|
||||
-Xshare:off do not attempt to use shared class data
|
||||
-Xshare:auto use shared class data if possible (default)
|
||||
-Xshare:on require using shared class data, otherwise fail.
|
||||
|
||||
The -X options are non-standard and subject to change without notice.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,24 @@
|
||||
-Xmixed mixed mode execution (default)
|
||||
-Xint interpreted mode execution only
|
||||
-Xbootclasspath:<directories and zip/jar files separated by ;>
|
||||
set search path for bootstrap classes and resources
|
||||
-Xbootclasspath/a:<directories and zip/jar files separated by ;>
|
||||
append to end of bootstrap class path
|
||||
-Xbootclasspath/p:<directories and zip/jar files separated by ;>
|
||||
prepend in front of bootstrap class path
|
||||
-Xnoclassgc disable class garbage collection
|
||||
-Xincgc enable incremental garbage collection
|
||||
-Xloggc:<file> log GC status to a file with time stamps
|
||||
-Xbatch disable background compilation
|
||||
-Xms<size> set initial Java heap size
|
||||
-Xmx<size> set maximum Java heap size
|
||||
-Xss<size> set java thread stack size
|
||||
-Xprof output cpu profiling data
|
||||
-Xfuture enable strictest checks, anticipating future default
|
||||
-Xrs reduce use of OS signals by Java/VM (see documentation)
|
||||
-Xcheck:jni perform additional checks for JNI functions
|
||||
-Xshare:off do not attempt to use shared class data
|
||||
-Xshare:auto use shared class data if possible (default)
|
||||
-Xshare:on require using shared class data, otherwise fail.
|
||||
|
||||
The -X options are non-standard and subject to change without notice.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue