Я пытаюсь настроить веб-сервис в граалях, который может принимать файл.Как мне получить файл из запроса?
Я тестирую это с чем-то вроде
curl -d somefile.tar http://localhost:8080/MyWebS/fileWS
, и мой метод выглядит следующим образом:
def index = {
switch(request.method){
case "POST":
render "Ingesting file\n"
request.each {
println("--> " + it)
}
def uploadedFile = request.getFile() //<--this is the line that doesnt work..what should it be?
File f=new File('c:/dev/newfile.tar');
uploadedFile.transferTo(f);
break
}
}