- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题类似于getting blobstore to callback to endpoint method但她/他没有得到回复。我实际上也写了我的代码。我将回调 url 创建为
BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService();
String url = blobstoreService.createUploadUrl("/loadImages");
然后我将端点创建为
@ApiMethod(name = "loadImages", httpMethod = HttpMethod.POST)
public void loadImages(javax.servlet.http.HttpServletRequest req) {
//…. get blob key etc.
}
当 blobstore 进行回调调用时,我的服务器出现错误:
No handlers matched this URL. (404)
有谁知道要传递给 blobstoreService.createUploadUrl
的内容以便由我的端点方法处理?
我也尝试过将 ”/loadImages”
更改为 "/_ah/spi/com.company.package.ApiName.loadImages”
以便它看起来像另一个路径,但这也不起作用。然后我尝试了 "_ah/api/apiname/1/loadImages”
:没有。
注意:我不是在寻找 blobstore/endpoint 的替代品。当我使用简单的 servlet 接收回调时,它会起作用。但是 servlet 只是降低了我的其他端点代码的成本。
最佳答案
恐怕您只能使用 servlet 来处理这种类型的回调。我一直在寻找解决方案几个小时并找到了 this topic .
简而言之:
The form must include a file upload field, and the form's enctype must be set to multipart/form-data. The API ... passes the rewritten request to your application on the given path as a blob key.
As Endpoints doesn't (as far as I know) accept multipart/form-data as a valid encoding, this won't work. The error messaging you see is because the Endpoint is expecting JSON.
关于java - 传递给 `blobstoreService.createUploadUrl` 的内容,以便由我的端点方法处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23483761/
我有一个 servlet,我首先在其中下载 pdf http://www.cbwe.gov.in/htmleditor1/pdf/sample.pdf将其内容上传到我的 blobstore 上,当用户
在我的 Google App Engine 应用程序中,登录用户可以上传他们的照片及其其他详细信息。我使用 HttpSession 来管理日志记录。当登录用户填写表单并选择要上传的照片并单击“保存”按
自从 2 天谷歌搜索以来,我必须使用 java 在 Google 云存储中上传文件。现在我在使用 java 从 Google Cloud Storage 下载相同的文件时遇到了麻烦。 我尝试使用 Bl
我正在使用 Google 应用引擎和 Google 云存储在 GCS 中上传文件。我在这里创建上传 url。为了存储文件,我正在创建一个 url 以在 GCS 中托管该文件。我的问题是我有一个包含多个
我的问题类似于getting blobstore to callback to endpoint method但她/他没有得到回复。我实际上也写了我的代码。我将回调 url 创建为 Blobstore
我正在尝试从存储在 Google Cloud Storage 上的文件中读取字节并将其通过 HTTP POST 请求发送,但我在使用较大的文件时出现此异常,代码正在运行小文件: 此行抛出异常: wri
这是我的 Serve.java,这是我的 Serve servlet。 public class Serve extends HttpServlet { private BlobstoreServic
我正在使用 Java 开发 Appengine 应用程序,它允许用户上传通过名为 PaintWeb 的 HTML5 Canvas 库绘制的图像( http://code.google.com/p/pa
我在 GCS 中遇到问题。在我的应用程序中,我尝试使用带有 appengine sdk 1.9.0 的 BlobstoreService.generateUploadUrl() 从托管在 Google
我是一名优秀的程序员,十分优秀!