|
@@ -21,8 +21,8 @@ public class JettyClient {
|
21
|
21
|
|
22
|
22
|
// reqURL
|
23
|
23
|
String reqURL = request.getServerAddress();
|
24
|
|
- if (reqURL!=null && reqURL.toLowerCase().indexOf("http://")==-1) {
|
25
|
|
- reqURL = "http://" + request.getServerAddress() + "/";
|
|
24
|
+ if (reqURL!=null && reqURL.toLowerCase().indexOf("http")==-1) {
|
|
25
|
+ reqURL = "http://" + request.getServerAddress() + "/"; // IP:PORT, need parse to url
|
26
|
26
|
}
|
27
|
27
|
|
28
|
28
|
// remote invoke
|