我一直在构建一个客户端来替换我们拥有的连接社交网站上的一些内容。我按照Github repo中的示例代码编写了一个java客户端:https://github.com/OpenNTF/SocialSDK/tree/master/sdk/com.ibm.sbt.core.test/src/test/java/com/ibm/sbt/services/client/connections/files
还使用本教程作为创建端点的参考,然后将其传递给不同的服务。 http://bastide.org/2014/01/28/how-to-develop-a-simple-java-integration-with-the-ibm-social-business-toolkit-sdk/
要明确的是,我在社区上发布内容,因此我使用CommunityService上传内容,使用FileService更新社区文件。
此方法正常工作:fileservice.updateCommunityFile(iStream,fileId,title,communityLibraryId,params) 这会在服务器上创建多个版本,这不是我想要的。
但是,我想使用这个 - fileservice.updateFile(inputStream,file,params) 如果我在我的代码中使用上面的代码,则会导致以下错误:
Error updating the file
com.ibm.sbt.services.client.connections.files.FileServiceException: Error updating the file
at com.ibm.sbt.services.client.connections.files.FileService.updateFile(FileService.java:2686)
at sbt.sample.standalone.java.StandaloneDemo.ReplacePhoto(StandaloneDemo.java:332)
at sbt.sample.standalone.java.StandaloneDemo.main(StandaloneDemo.java:239)
Caused by: java.lang.IllegalStateException: SBT context is not initialized for the request
at com.ibm.commons.runtime.Context.get(Context.java:57)
at com.ibm.sbt.services.endpoints.BasicEndpoint.authenticate(BasicEndpoint.java:151)
at com.ibm.sbt.services.client.ClientService.forceAuthentication(ClientService.java:296)
at com.ibm.sbt.services.client.ClientService.processResponse(ClientService.java:1154)
at com.ibm.sbt.services.client.ClientService._xhr(ClientService.java:1072)
at com.ibm.sbt.services.client.ClientService.execRequest(ClientService.java:1037)
at com.ibm.sbt.services.client.ClientService.xhr(ClientService.java:1003)
at com.ibm.sbt.services.client.ClientService.put(ClientService.java:937)
at com.ibm.sbt.services.client.ClientService.put(ClientService.java:933)
at com.ibm.sbt.services.client.base.BaseService.updateData(BaseService.java:439)
at com.ibm.sbt.services.client.connections.files.FileService.updateFile(FileService.java:2683)
注意:我在该计划中使用的用户是发布内容的社区的管理员。 此外,有什么办法我可以在sbtsdk api中指定替换其他文件而不创建其他版本吗?
我发现这是相似的 - Liferay Portal & IBM SBT SDK: SBT context is not initialized for the request 但我不明白是否有任何解决方案。
感谢。
答案 0 :(得分:1)
首先很难理解为什么你看到“SBT上下文没有为请求初始化”,因为你可以运行一个文件服务API而不是另一个。
fileservice.updateCommunityFile(iStream, fileId, title, communityLibraryId, params)
和fileservice.updateFile(inputStream, file, params)
都会创建新版本。它们不会取代最新版本。此API有一个参数,用于控制是否创建新版本。
这是你需要做的:
使用参数createVersion,其值为“false”。像这样:
Map<String, String> paramsMap = new HashMap<String, String>();
paramsMap.put("createVersion", "false");
现在在updateCommunityFile API中使用这个paramsMap,如下所示:
fileservice.updateCommunityFile(iStream, fileId, title, communityLibraryId, paramsMap)