Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best approach to be able to send a photo from the iPhone client to a rest service (jax-rs) and save it from there? This is my current server code:

@POST
@Path("/newPhoto/{eventId}") 
@Consumes("application/octet-stream") 
public void newPhoto (@PathParam("eventId") String eventID, 
                      InputStream pict) 
     throws Exception 
{ 
        // save photo
}

Is this ok or do you recommend something else? And how can I test this service on terminal with curl command?

share|improve this question

1 Answer

It looks good for me. Usually, I would put the InputStream as first param, but I checked and it's OK.

share|improve this answer
Can you give me an example of a call to this service using a terminal (curl)? – Aliens Oct 10 '11 at 16:01
I don't even know what curl is. What's cool with REST is that it's agnostic. – Nicolas Zozol Oct 11 '11 at 7:24
(to Aliens) Something like this: 'curl --data-binary @foo.jpg host/newPhoto/1234'; – unhillbilly Nov 16 '11 at 13:14
aside: I tried to post @Aliens but apparently one cannot include more than one ampersat (@) immediately followed by a word in a comment. – unhillbilly Nov 16 '11 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.