WebSphere liberty profile 8.5.5是否具有RMI或SOAP端口?
如果是这样,如何配置NumberFormat fmt = new CaseInsensitiveNumberFormat(Locale.US);
System.out.println(fmt.parse("0")); // 0
System.out.println(fmt.parse("0.00003")); // 3.0E-5
System.out.println(fmt.parse("5e-76")); // 5.0E-76
System.out.println(fmt.parse("2E-10")); // 2.0E-10
并通过Java客户端远程连接。
答案 0 :(得分:0)
Liberty自版本8.5.5.6起支持IIOP上的RMI。有关如何配置它的信息,请访问:https://www.ibm.com/support/knowledgecenter/SSEQTP_8.5.5/com.ibm.websphere.wlp.doc/ae/rwlp_config_iiopEndpoint.html
SOAP可通过HTTP / HTTPS端口使用,并使用httpEndpoints进行配置。有一个有用的教程,用于配置SOAP / HTTP并开发在此处使用它的客户端/服务器应用程序: https://developer.ibm.com/wasdev/docs/sample_ejbwebservicessample/
希望这有帮助,Andy