通过 SOAP 将 Cisco 电话与用户关联
思科提供所谓的“AXL 工具包”,允许访问思科统一通信管理器 (CUCM) 提供的功能。
WSDL 文件随工具包一起提供。我尝试使用 Eclipse 创建 Java 存根。但这没有用。它说该文件无法访问,而我将其放在文件系统上......
我想将手机与应用程序用户关联。我有一个可以执行类似操作的软件 - 但无法在网络上进行嗅探,因为 AXL 调用强制使用 HTTPS。
知道如何实现这一点吗?
Cisco offers the so called "AXL Toolkit" which allows to access functionality provided by the Cisco Unified Communications Manager (CUCM).
A WSDL-File is shipped with the toolkit. Using Eclipse, I tried to create Java-stubs out of it. But this didn't work. It says the file was inaccessible, while I'm having it right on the filesystem...
I would like to associate a phone with an application user. I have a software which does a similar stuff - but sniffing on the network isn't possible, because HTTPS is enforced for AXL-calls.
Any idea how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我终于在思科网站上找到了教程。可以使用 Apache Axis 将 WSDL 文件转换为工作 Java 类。您只需提前稍微修改 WSDL 即可。
I've finally found a tutorial, right on the Cisco website. One can use Apache Axis to transform the WSDL file to working java classes. You just have to modify the WSDL somewhat before.
以下是您开始使用所需的信息:
<一href="http://developer.cisco.com/web/axl/wikidocs?p_p_id=1_WAR_wikinavigationportlet_INSTANCE_i9JW&p_p_lifecycle=0&p_p_state=正常&p_p_mode =view&p_p_col_id=column-1&p_p_col_count=1&p_r_p_185834411_nodeId=803208&p_r_p_185834411_title=使用%20AXL%20via%20WSDL%20和%20Java,Axis" rel="nofollow">通过 WSDL 和 Java(使用 Axis)使用 AXL
然后,您可以直接对数据库运行查询(这里我使用所提供链接中的示例代码中的 AxlSqlToolkit 类):
Here is the information you need to get started:
Using AXL via WSDL and Java (with Axis)
Then you can just run queries against the database directly (here I'm using the AxlSqlToolkit class from the example code at the link provided):