使用 Jax-rpc 和 netbeans 的动态 Soap Url

发布于 2024-10-26 07:34:34 字数 128 浏览 1 评论 0原文

在netbeans 6.9中生成Web服务客户端时,我希望能够从配置(属性)文件(例如dev vrs生产url)动态加载soap端点url。当 netbeans 要求一个文字 url,然后将 url 硬编码到多个对象中时,我该如何实现这一点。

when generating a web service client in netbeans 6.9 I would like the ability to dynamically load the soap endpoint url from a config (Properties) file (e.g. dev vrs production urls). How can I accomplish that as netbeans ask for a literal url and then hard codes that url into multiple objects.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反话 2024-11-02 07:34:34
URL url =  this.getClass().getResource("/package/dir/propFile.properties");
prop = new Properties();
prop.load(new FileInputStream(new File(url.getFile())));
URL url =  this.getClass().getResource("/package/dir/propFile.properties");
prop = new Properties();
prop.load(new FileInputStream(new File(url.getFile())));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文