0
我想弄清楚如何使用來自java的http連接來連接到Hana XS,我花了幾天的時間搜索任何與Internet有關的東西,但找不到任何東西。使用來自JAVA的http連接連接到SAP Hana XS
我只是想一些事情,我可以拿出最好的是:
public static boolean testConnection(String host, String port,String userID,String certificate)
{
boolean success = false;
String https_url = "https://"+host+":"+port;
URL url ;
try{
url = new URL (https_url);
HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("content-type", "application/x-www-form-urlencoded");
con.setRequestProperty("Authorization", certificate);
int response = con.getResponseCode();
System.out.println("Response: "+ response);
}
catch(Exception e)
{
e.printStackTrace();
}
return success;
}
這顯然是行不通的,因爲我不知道如何形成的連接字符串,併發送請求。 任何幫助將不勝感激。
你究竟想在這裏做什麼?利用在SAP HANA XS中實現的ODATA服務,或者是否想要解析連接到支持XS的網頁時生成的實際HTML? –
嗨!我只想連接到Hana XS並查看連接是否成功!我正在爲HANA HTTPS連接實施TestConnection功能。 –
您是否嘗試連接到本地網絡中的HCP HANA xs頁面或HANA實例? –