Advertisement
Guest User

Untitled

a guest
Nov 29th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. curl http://localhost:8080/Tickets/sendContent -F 'inputFile=@/tmp/ticket01.xml' -F'user=username' -F'password=@password'
  2.  
  3. curl -F "inputFile=@/tmp/ticket01.xml" -F"user=username" --data-urlencode password=@password http://localhost:8080/Tickets/sendContent
  4.  
  5. @ = %40
  6.  
  7. curl -F "inputFile=@/tmp/ticket01.xml" -F"user=username" -F "password=%40password" http://localhost:8080/Tickets/sendContent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement