albert's blog
Showing posts with label
webMethods
.
Show all posts
Showing posts with label
webMethods
.
Show all posts
2017/09/10
[webMethods] How to invoke a Flow Service from a Java Service and get its output values
›
Problem 假設我要呼叫另外一個 flow service,此 flow service 沒有 input parameter,會回傳一個 output parameter,parameter name 為 isAlive 若我要透過 Java code 呼叫此 f...
2017/09/08
[webMethods] How to invoke a Flow Service from a Java Service
›
Problem 如何在 Java Service 中,呼叫一個 Flow Service? How-To 按照不同的情境 (synchronous 或 asynchronous),與有參數或無參數,需呼叫不同的 API,JavaDoc 如下: JavaDoc for a...
2017/09/06
[webMethods] How to Create a Restful Service?
›
Problem 若我要提供一個 restful service 給另外一個系統呼叫,該如何實作? How-To 步驟如下: (1) 在 restful folder 下,建立一個 Rest Resource,命名為 RestTest (2) Rest...
2017/08/06
[webMethods] How to Restart / Shutdown / Startup Integration Server
›
Problem 若我要重新啟動 integration server 的話,該去哪裡執行重啟 How-To 有兩個方式: (1) 到遠端到安裝 integration server 的機器,到 SoftwareAG 的安裝目錄下,如 [SoftwareAG_HOME]\...
2017/08/05
[webMethods] 如何更新 integration server 的 trial license
›
Problem 今天當我 log in 到 webMethods integration server 的 administration console 時,出現 trial license 即將 expire 的 warning message How-To ...
2017/08/04
[webMethods] Software AG Designer 無法編輯 Document Type, Flow Service
›
Problem 當我要編輯先前已經開發好的 document type, flow service 時,發現無法進行編輯,相關可編輯的選項都被 disabled How-To 在欲編輯的 document type 或 flow service 中,按下右鍵,選擇...
2017/07/07
[webMethods] How to delete threads in webMethods
›
Problem 假設在 OpcTest 此 package 中會執行數個 flow services 若希望在 package 被 disable 時,能把這幾個 flow services 的 threads 砍掉,該如何做? How-To 解決方式如下,共有...
2017/07/06
[webMethods] Service 'group2.test:TestSubscriber' is not operational. To run this service, first recompile the Java source.
›
Problem 當我在執行 Flow Service 時,出現此錯誤 1: [ISS.0059.0001W] Interrupted [ISS.0026.9102] Service 'group2.test:TestSubscriber' is not o...
2017/07/04
[webMethods] 打開 Java Services 出現 source not available
›
Problem 當我將開發好的 package export and import 到另外一台 integration server,另外一外工程師無法看到我開發好的 Java Services,在其 designer 中出現 source not available 的錯誤,...
2017/07/03
[webMethods] 如何將 export 的 package zip file,import 到另外一台 integration server
›
Problem 假設我們有多台 integration servers,根據不同用途分成開發機、測試機與正式機等,當我們從開發機的 integration server export 程式以後,該如何 import 到測試機 ? How-To 前置步驟:將 packag...
2017/06/07
[webMethods] Global Variable
›
Problem 若我們有些變數是全域使用的,在 webMethods 中要設定在哪邊,才能讓所有的 Java Service、Flow Service 使用? How-To 可以在 Integration Server 設定 global variable,步驟如下: ...
2017/06/03
[webMethods] 如何從 Java Service 中讀取 Property File
›
在 Java Service 中,有些設定值我希望不要 hard code 在程式中,要搬到 property file 供日後的設定之用,該如何從 Java Service 中讀取 Property File property file 檔名為 opc_config.pro...
2017/05/10
[webMethods] IS Package Class Loaders 順序
›
根據 webMethods 文件 IS package class loaders 順序是下圖的 1.1 ~ 1.4 在 runtime 的時候,順序是下圖的 2.1 ~ 2.3 要注意的是,若有一個檔案同時存在於 jars 與 classes 的 folder,位...
2017/05/09
[webMethods] 如何在 Java Service 中印 debug log
›
Problem 假設我在 Java Service 中印出 debug log 來進行程式碼的 debug,該如何印 How-to 若是同步的作業,作法如下: public static void logger( String message ) { ...
2017/05/08
[webMethods] 如何在 Java Service 中呼叫另外一個 Java Service
›
Problem 假設我有兩個 Java Service,一個為 Test Java Service: input 參數為 name,執行時會出現 popup window 供輸入 另外一個為 HelloWorld,input parameters 有兩個,分別是 name...
2017/05/07
[webMethods] 在 Flow Service 中使用 Sequence 來實現 try-catch
›
步驟 1. 建立一個 SequenceFlow,並建立兩個輸入參數 num1 與 num2,將 num1 * num2 的結果傳送到輸出參數 result 步驟 2. 建立三個 Sequences,try-catch, try 與 catch,此三個 sequence ...
2017/05/06
[webMethods] 在 Flow Service 中使用 Loop
›
步驟 1. 分別建立 OrderRequest 與 OrderResponse Document ,Request 與 Response 的資料結構相仿,唯一差異的地方是 Response 的 Subtotal = Request 的 Quantity * Price ...
›
Home
View web version