I have the below setup but I'm unsure how to test the service. I'm not sure how to setup the request, the request headers, request body, form params, content type...etc. I've always use the google rest client, but maybe thats not appropriate for this use case.
            Asked
            
        
        
            Active
            
        
            Viewed 2,170 times
        
    1 Answers
1
            You can use Firefox Poster or a real simple test would be for you to create a form in HTML and submit it. You'll want to change the name of the file to whatever you are looking for in your service.
<form action="yourservicecall" method="post" enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file" />
    <br />
    <input type="submit" name="submit" value="Submit" />
</form>
        Adrian Rodriguez
        
- 3,232
 - 2
 - 24
 - 34