I am trying to set up a web service in grails that can accept a file. How do I get the file from the request?
I am testing this with something like
curl -d somefile.tar http://localhost:8080/MyWebS/fileWS
and my method looks like the following:
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
}
}