我正在开发一个用于连接到 Tridion 2011 SP1 核心服务的 Android 应用程序。到目前为止,我已经使用 wsclient 从核心服务 wsdl 创建了 Android WS Stub。
导入了那些允许访问所有核心服务方法的存根。
我现在可以通过 Android 应用程序对 Tridion 进行身份验证,但是一旦我尝试执行最基本的 Web 服务调用,例如getApiVersion()
,我就会收到错误消息:
ReflectionHelper*java.lang.NoSuchFieldException:GetApiVersionResult。
我想知道有没有其他人设法创建一个与核心服务通信的 java android 应用程序?
有趣的是,如果我将代码作为 java 应用程序运行,那么使用 wsimport stubs 一切都很好。
任何帮助表示赞赏。这里有一个代码片段供参考:
要连接到 Tridion:
class TridionConnect extends AsyncTask<String, Integer, String> {
// Called to initiate the background activity
@Override
protected String doInBackground(String... statuses) {
try {
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("username", "password".toCharArray());
}
});
url = new URL("http://tridion-server/webservices/CoreService2011.svc?wsdl");
System.out.println(String.format("Get Service"));
service = new CoreService2011();
System.out.println(String.format("Get Client"));
client = service.getBasicHttp();
return "Authenticated To Tridion";
} catch (Exception e) {
Log.e("Authentication failure", e.toString());
e.printStackTrace();
return "Failed to authenticate";
}
}
// Called when there's a status to be updated
@Override
protected void onProgressUpdate(Integer... values) {
super.onProgressUpdate(values);
// Not used in this case
}
// Called once the background activity has completed
@Override
protected void onPostExecute(String result) { //
Toast.makeText(FullscreenActivity.this, result, Toast.LENGTH_LONG).show();
area.setText("Authenticated to Tridion OK");
}
}
获取 ApiVersion
client.getApiVersion();
UserData currentUser = client.getCurrentUser();
System.out.println(String.format("'%s' %s", currentUser.getTitle(), currentUser.getId()));