- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Eclipse 新手 - AXL - Java
我正在慢慢地学习上述内容。
使用 JavaSE 1.8 和 eclipse 4.13.0 与运行 v 10.5 的实验室调用管理器进行交互,通过跟踪和修改演示,我已经能够成功运行 getphone 以返回有关手机的信息 - 包括 UUID 和描述。
从那里我尝试添加“setphone”部分来仅更改电话描述,然后再次显示电话信息。
一切运行正常,没有错误,但描述永远不会改变。
这是我正在使用的代码:
package com.cisco.axl.demo;
import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
/**
* ------------ AXL DEMO 4 ------------
* Intro - THIS VERSION AXLD3 WORKS on Laptop!!!
*/
import javax.xml.ws.BindingProvider;
import com.cisco.axlapiservice.AXLAPIService;
import com.cisco.axlapiservice.AXLError;
import com.cisco.axlapiservice.AXLPort;
import com.cisco.axl.api._10.*;
/**
*
* Performs getPhone operation using AXL API
*
* Note, service consumers were generated by the Java 6 wsimport command:
*
* <code>
* wsimport -keep -b schema/current/AXLSOAP.xsd -Xnocompile -s src -d bin -verbose schema/current/AXLAPI.ws
* </code>
*
* Since AXL uses HTTPS you will have to install the UC application's
* Certificate into your keystore in order to run this sample code
*
* you can run the program by cd'ing to bin folder within this project and running the following command
*
* <code>
* java -cp . com.cisco.axl.demo.Demo
*</code>
*
* it is necessary to install the target systems ssl certificate to all JRE and JDK
* certificate stores - for JREs use:
* "C:\Program Files\Java\jre1.8.0_231\bin\keytool" -import -alias LabCertJre16 -file "C:\Apps\USFEL1-UCL201_corp_pattersoncompanies_com.crt" -keystore "C:\Program Files\Java\jre<VER>\lib\security\jssecacerts"
*
* for JDKs use:
* "C:\Program Files\Java\jre1.8.0_231\bin\keytool" -import -alias LabCertJre16 -file "C:\Apps\USFEL1-UCL201_corp_pattersoncompanies_com.crt" -keystore "C:\Program Files\Java\jdk<VER>\jre\lib\security\cacerts"
*
*/
/*
/*
Things to fix
password is exposed
cert requires fqdn - need to support IP and just server name
warning at beginning
*/
public class Demo {
/**
* UC app host.
*/
protected static String ucHost = null;
/**
* OS admin.
*/
protected static String ucAdmin = null;
/**
* OS admin password.
*/
protected static String ucPswd = null;
/**
* New Description.
*/
protected static String ucDescr = null;
/**
* phoneName used in request.
*/
protected static String phoneName = null;
/**
* phoneName used in request.
*/
protected static String NewDescription = null;
/**
* UUID returned from getphone - used in setphone
*/
protected static String PhoneUUID = null;
/**
* Run the demo
*
* @param args not used
*/
public static void main(String[] args) {
// Verify JVM has a console
if (System.console() == null) {
System.err.println("The Cisco AXL Sample App requires a console.");
System.exit(1);
} else {
Demo.informUser("%nWelcome to the Cisco AXL Sample APP .%n");
}
Demo demo = new Demo();
demo.getPhoneInfo();
}
/**
* get information about phone
*/
public void getPhoneInfo() {
// Ask for the UC application to upgrade
// Demo.informuser("%nWhat UC server would you like to access?%n");
ucHost = promptUser(" Host: ");
ucAdmin = promptUser(" OS Admin Account: ");
ucPswd = promptUser(" OS Admin Password: ");
// Ask for the phone name
Demo.informUser("%nEnter the name of the phone you want to retrieve information about.%n");
phoneName = promptUser(" Phone Name: ");
// Make the getPhoneRequest
getPhone();
SetPhoneDescr();
getPhone();
}
/**
* Makes the getPhone request and displays some of the fields that are returned.
*/
private void getPhone()
{
// Instantiate the wsimport generated AXL API Service client --
// see the wsimport comments in the class javadocs above
AXLAPIService axlService = new AXLAPIService();
AXLPort axlPort = axlService.getAXLPort();
// Set the URL, user, and password on the JAX-WS client
String validatorUrl = "https://"
+ Demo.ucHost
+ ":8443/axl/";
((BindingProvider) axlPort).getRequestContext().put(
BindingProvider.ENDPOINT_ADDRESS_PROPERTY, validatorUrl);
((BindingProvider) axlPort).getRequestContext().put(
BindingProvider.USERNAME_PROPERTY, Demo.ucAdmin);
((BindingProvider) axlPort).getRequestContext().put(
BindingProvider.PASSWORD_PROPERTY, Demo.ucPswd);
// Create a GetPhoneReq object to represent the getPhone request and set the name of the device
//to name entered by user
GetPhoneReq axlParams = new GetPhoneReq();
axlParams.setName(phoneName);
//Make a call to the AXL Service and pass the getPhone request
GetPhoneRes getPhoneResponse = null;
try {
getPhoneResponse = axlPort.getPhone(axlParams);
} catch (AXLError e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//display information returned in the response to the user
// Demo.informUser("Product=" + getPhoneResponse.getReturn().getPhone().getProduct() + "%n"
// + getPhoneResponse.getReturn().getPhone().getLoadInformation().getValue() + "%n");
Demo.informUser("Product=" + getPhoneResponse.getReturn().getPhone().getProduct() + "%n");
Demo.informUser("Load=" + getPhoneResponse.getReturn().getPhone().getLoadInformation().getValue() + "%n");
Demo.informUser("Descr=" + getPhoneResponse.getReturn().getPhone().getDescription() + "%n");
Demo.informUser("Model=" + getPhoneResponse.getReturn().getPhone().getModel() + "%n");
Demo.informUser("Name=" + getPhoneResponse.getReturn().getPhone().getName() + "%n");
PhoneUUID = getPhoneResponse.getReturn().getPhone().getUuid();
Demo.informUser("UUID=" + PhoneUUID + "%n");
System.out.println(" ");
System.out.println(" ");
}
public void SetPhoneDescr() {
// Ask for the new description to apply to the phone
ucDescr = promptUser(" NewDescription: ");
// Instantiate the wsimport generated AXL API Service client --
// see the wsimport comments in the class javadocs above
AXLAPIService axlService = new AXLAPIService();
AXLPort axlPort = axlService.getAXLPort();
// Set the URL, user, and password on the JAX-WS client
String validatorUrl = "https://"
+ Demo.ucHost
+ ":8443/axl/";
((BindingProvider) axlPort).getRequestContext().put(
BindingProvider.ENDPOINT_ADDRESS_PROPERTY, validatorUrl);
((BindingProvider) axlPort).getRequestContext().put(
BindingProvider.USERNAME_PROPERTY, Demo.ucAdmin);
((BindingProvider) axlPort).getRequestContext().put(
BindingProvider.PASSWORD_PROPERTY, Demo.ucPswd);
// Create a GetPhoneReq object to represent the getPhone request and set the name of the device
//to name entered by user
UpdatePhoneReq axlParams = new UpdatePhoneReq();
axlParams.setNewName(phoneName);
axlParams.setDescription(NewDescription);
axlParams.setName(phoneName);
axlParams.setUuid(PhoneUUID);
/**
/**
* some test code from devnet Support on JAXBElement
// String username = null;
String device_uuid = null;
axlParams.setUuid(device_uuid); //.setUuid(device_uuid);
XFkType user = new XFkType();
user.setUuid(PhoneUUID); //returns UserUUID
JAXBElement<XFkType> user2 = new JAXBElement(new QName(XFkType.class.getSimpleName()), XFkType.class, user);
* end of sample code from devnet
*/
//Make a call to the AXL Service and pass the getPhone request
StandardResponse UpdatePhoneRes = null;
try {
UpdatePhoneRes = axlPort.updatePhone(axlParams);
} catch (AXLError e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// -------------------- Some I/O Helper Methods ------------------------
/**
* Provide the user some instructions.
*/
protected static void informUser(String info) {
System.console().format(info);
}
/**
* Ask the user a question
* @return A non-null, non-empty answer to the question
*/
protected static String promptUser(String question){
String answer = null;
while (answer == null || answer.isEmpty()) {
answer = System.console().readLine(question);
}
return answer.trim();
}
}
主要问题是,为什么不更新描述?我看到之前的一篇文章表明我需要调用“apply”,但我没有看到相应的方法。当我查看 AXL 日志以进行尝试时,它显示为 XML:
<?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:updatePhone xmlns:ns2="http://www.cisco.com/AXL/API/10.5"><name>SEP00AF1F9C5D7A</name><newName>SEP00AF1F9C5D7A</newName></ns2:updatePhone></S:Body></S:Envelope>
显然是 xlParams.setDescription(NewDescription);没有传递参数 - 就像我对自己在做什么还不太了解一样。
如果您能就这个问题提供任何帮助,我们将不胜感激。
此外,当我第一次开始处理其中的“设置”部分时,我认为我不必再次设置连接,因为它是在“获取”部分中设置的。但我发现有必要重复一遍。这是因为它位于 getphone 部分而不是主部分,还是必须每次都进行设置?
此外,每次运行它时(一次用于获取,一次用于设置,然后再次运行第二次获取),我都会收到此错误:
警告:导入文件:/C:/Users/ME/eclipse-workspace/axl-demo/schema/current/AXLSoap.xsd 违反了 BP 1.1 R2001。带着警告继续。R2001 描述只能使用 WSDL“导入”语句来导入另一个 WSDL 描述。
我发现的帖子表明这是网络服务本身的问题而不是我的代码的问题:这是正确的吗?在这种环境下有没有办法抑制它?
感谢您的帮助
最佳答案
我的猜测是,您在 updatePhone 请求中同时设置了“name”和“uuid” - 这些用于识别目标设备,您应该指定其中之一。
查看您的代码,“phoneName”变量在这里可能为空,并且 AXL 可能会忽略您的(有效)uuid 值并尝试使用空名称更新目标设备...
关于java - CUCM 10.5 的 AXL Java UpdatePhoneReq 执行时没有错误,但不会更改电话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59206401/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!