好日子所有,WSO2 EMM MDM管理員休息webservces
我有添加REST服務問題的MDM管理員
我有一些麻煩與MDM-android- *我創建的服務和refrence在該permition.xml文件
創建於MDM管理員休息服務已sefinitin如下
@GET
@Path("{type}/{id}/logs")
public List<? extends Application> getDeviceLogs(
@PathParam("type") String type,
@PathParam("id") String id)
throws MDMAPIException {
List<Application> applications;
ApplicationManagementProviderService appManagerConnector;
DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
try {
deviceIdentifier.setType(type);
deviceIdentifier.setId(id);
appManagerConnector = MDMAPIUtils.getAppManagementService();
applications = appManagerConnector.getApplicationListForDevice(deviceIdentifier);
} catch (ApplicationManagementException e) {
String msg = "Error occurred while fetching the apps of the device.";
log.error(msg, e);
throw new MDMAPIException(msg, e);
}
return applications;
}
}
其應用方法獲取列表中只用路徑的一個克隆nd函數名稱已更改。
當我部署它。我的webapp返回一個錯誤狀態代碼。當我嘗試調用函數
複製此,下載V2.0.1開放使用Netbeans,修改WSO2 MDM - Mobile Device Management Admin Services
複製並粘貼其餘功能之一,Renanme功能部署和調用新的功能
哪有我解決這個問題?
你叫什麼路徑? – lakshman
{「actionMethod」:「GET」,「actionUrl」:「/ mdm-admin/operations/android/353007060012943/logs」,「actionPayload」:「null」} – user2955481
你使用什麼分支?主人還是標籤?因爲主分支有很多正在進行的開發,所以這可能會改變。我會檢查並通知你。對不起,發生了延遲。 – lakshman