日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

ABAP和Java的destination和JNDI

發布時間:2023/12/19 java 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ABAP和Java的destination和JNDI 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Netweaver里使用事務碼SM59創建Destination:

Java

新建一個destination:

測試代碼:

try {Context ctx = new InitialContext();ConnectivityConfiguration configuration = (ConnectivityConfiguration) ctx.lookup("java:comp/env/connectivityConfiguration");DestinationConfiguration destConfiguration = configuration.getConfiguration(destinationName);if (destConfiguration == null) {response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,String.format("Destination %s is not found. Hint:"+ " Make sure to have the destination configured.", destinationName));return;}// Get the destination URLString value = destConfiguration.getProperty("URL");URL url = new URL(value + "xml?origins=Walldorf&destinations=Paris");String proxyType = destConfiguration.getProperty("ProxyType");Proxy proxy = getProxy(proxyType);urlConnection = (HttpURLConnection) url.openConnection(proxy);injectHeader(urlConnection, proxyType);// Copy content from the incoming response to the outgoing responseInputStream instream = urlConnection.getInputStream();OutputStream outstream = response.getOutputStream();copyStream(instream, outstream);} catch (Exception e) {// Connectivity operation failedString errorMessage = "Connectivity operation failed with reason: "+ e.getMessage()+ ". See "+ "logs for details. Hint: Make sure to have an HTTP proxy configured in your "+ "local environment in case your environment uses "+ "an HTTP proxy for the outbound Internet "+ "communication.";LOGGER.error("Connectivity operation failed", e);response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR,errorMessage);}

通過JNDI獲得destination配置的url:

要獲取更多Jerry的原創技術文章,請關注公眾號"汪子熙"或者掃描下面二維碼:

總結

以上是生活随笔為你收集整理的ABAP和Java的destination和JNDI的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。