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 URL String 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 response InputStream instream = urlConnection.getInputStream(); OutputStream outstream = response.getOutputStream(); copyStream(instream, outstream); } catch (Exception e) { // Connectivity operation failed String 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:
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/69364.html
摘要:以,在瀏覽器里訪問這個,得到輸出從到的距離。如何讓一個部署到云平臺的應用也能訪問到該呢首先在云平臺里創建一個,維護的在代碼里使用云平臺里創建的然后使用讀取里配置的部署到云平臺之后,在里看到結果云平臺顯示如下瀏覽器訪問如下 showImg(https://segmentfault.com/img/remote/1460000014835767); 以Internet Service ht...
摘要:環境的搭建我的系統有個函數名叫,輸入一個和,會輸出為這對客戶和組合維護的一組和描述信息。測試如下下面是使用消費該函數的代碼為簡單起見沒有使用的庫進行的序列化。 Java Connector(JCO)環境的搭建:Step by step to download and configure JCO in your laptop我的ABAP系統有個函數名叫ZDIS_GET_UPSELL_MA...
摘要:我在的事務碼里為維護圖片文件作為附件通過如下簡單的代碼即可將圖片文件的二進制內容讀取出來然后我把這段代碼封裝到一個里,在代碼里消費這個,把返回的二進制內容存成本地圖片文件。 我在S/4HANA的事務碼MM02里為Material維護圖片文件作為附件: showImg(https://segmentfault.com/img/remote/1460000015368069); 通過如下簡...
摘要:中間件的分類基于遠程過程調用的中間件。基于對象請求代理的中間件。消息傳遞指的是程序之間通過在消息中發送數據進行通信,而不是通過直接調用彼此來通信,直接調用通常是用于諸如遠程過程調用的技術。 一.中間件 1.1 什么是中間件? 由于業務、機構和技術是不斷變化的,因此為其服務的軟件系統必須適應這樣的變化。在合并、添加服務或擴展可用服務之后,公司可能無力負擔重新創建信息系統所需的成本。正是在...
閱讀 2804·2021-11-19 11:35
閱讀 2582·2021-11-02 14:40
閱讀 1396·2021-09-04 16:48
閱讀 3009·2019-08-30 15:55
閱讀 1756·2019-08-30 13:11
閱讀 1956·2019-08-29 11:12
閱讀 1088·2019-08-27 10:52
閱讀 3157·2019-08-26 18:36