通讯适配器java,从HttpAdapter获取会话到基于Java的适配器

Is there any way to get the session that is created in a httpAdapter into a java class in the adapter?

I am connecting to a https://jazz.net/ with a httpadapter, but i now want to use some java code to connect to same url in the adapter. So i dont knw how to access the session already created.

Here is my connection code:

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

};}

In Java Class,

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;

}

}

解决方案

You do not need to access the session ID, as you already "have it".

The Java class you write is part of the adapter session, or, scope.

What you need to do is declare your class in the adapter. Something like this:

The Class

Class myHTTPClient

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

The Adapter

var httpClient = new com.myHTTPClient

// your adapter code

This way the Java is in the same scope as the adapter, hence there is no need to "get" the session ID.

In order to pass the JSESSIONID also in the POST from the Java code, follow the example provided in the WL.Server.invokeHttp API (bottom of page). In the adapter JavaScript, implement the example... response.responseHeader contains a "Set-Cookie" header, from which you can extract the JSESSIONID, pass it and use it.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值