0

有什么方法可以将在 httpAdapter 中创建的会话转换为适配器中的 java 类?我正在使用 httpadapter 连接到https://jazz.net/,但我现在想使用一些 java 代码连接到适配器中的相同 url。所以我不知道如何访问已经创建的会话。

这是我的连接代码:

In javaScript, 
function login(){
var lpath = getLoginPath();
var input = {
    method : 'post',
    returnedContentType : 'html',
    path : lpath,
    parameters : {
        j_password : passwd,
        j_username : username
    }

};

var request = WL.Server.getClientRequest();
UserSession = request.getHeader("Cookie"); // here i am setting the value for a global variable UserSession.
return WL.Server.invokeHttp(input);
}

function getConnection(){
var instance = new com.worklight.customcode.PostRequest();

var rspath = getRootServicesPath();

var input = {
    method : 'get',
    returnedContentType : 'xml',
    path : rspath
};
return {
    result : instance.getXml(UserSession) // Here i am passing the value of session cookie into the java class 
};}

在 Java 类中,

class PostRequest{
 public String getXml(String cookieString){
    String params = "?offlineData={'projectAreaItemId':'_iTuLUmxfEeKR3t32SVbLKQ','executables':[{'terItemId':'_TNoyQW6qEeKR3t32SVbLKQ','scriptItemId':'_DF89AW6qEeKR3t32SVbLKQ'}]}";
    String url = "https://jazz.net/sandbox02-qm/secure/service/com.ibm.rqm.execution.common.service.IOfflineExecutionRestService"
            + params;
URLConnection connection = new URL(url).openConnection();
connection = new URL(url).openConnection();
    connection.setRequestProperty("User-Agent", "yes");
    connection.setRequestProperty("Content-Type",
            "application/x-www-form-urlencoded");
    connection.setRequestProperty("Accept-Encoding", "gzip");
    connection.setRequestProperty("Accept", "application/xml");
    connection.setRequestProperty("Cookie", cookieString);
    connection.setDoInput(true);
    connection.setDoOutput(true);
    ((HttpURLConnection) connection).setRequestMethod("POST");
    connection.setDoOutput(true);
String result = "";
        InputStream resp = connection.getInputStream();
        StringBuilder s = inputStreamToString(resp);
return s;
}
}
4

1 回答 1

0

您不需要访问会话 ID,因为您已经“拥有它”。您编写的 Java 类是适配器会话或范围的一部分。

您需要做的是在适配器中声明您的类。像这样的东西:

班上

Class myHTTPClient
// implementation code goes here - the java code to connect to the same URL as in the adapter XML.

适配器

var httpClient = new com.myHTTPClient
// your adapter code

这样,Java 与适配器在同一范围内,因此无需“获取”会话 ID。

为了在 Java 代码的 POST 中也传递 JSESSIONID,请遵循 WL.Server.invokeHttp API(页面底部)中提供的示例。在适配器 JavaScript 中,实现示例... response.responseHeader 包含一个“Set-Cookie”标头,您可以从中提取 JSESSIONID、传递它并使用它。

于 2013-04-17T11:12:28.357 回答