这可能是一个简单的但我似乎无法确定它 我有一个简单的表格,有2个字段,文本和文件,即
<form>
<input type="text" name="textfield">
<input type="file" name="filefield">
</form>
什么是捕获它的CXF方法声明?
谢谢!
答案 0 :(得分:1)
您可以像这样创建简单的Web服务:
@WebService
public class SimpleWs
{
@WebMethod
public String upload(String textfield, byte[] filefield) {
// ...
return "OK";
}
}
以及CXF网站上的these instructions。