2013. 5. 22. 10:44




 

  1. // set to dynamic config:
  2. DynamicConfiguration conf = in.getDynamicConfiguration();
  3. DynamicConfigurationKey idkey = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/HTTP", "UrlParamOne");
  4. DynamicConfigurationKey SVCIDkey = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/HTTP", "UrlParamTwo");
  5. DynamicConfigurationKey Kkey = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/HTTP", "UrlParamThree");
  6.  
  7. if (conf != null) {
  8. conf.put(idkey, ID);
  9. conf.put(SVCIDkey, SVCID);
  10. conf.put(Kkey, KEY);
  11. }

 

참고 : http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/7264



Posted by sungwonpekr