I am using Spring, CXF, Tomcat for developing web services.
I have a problem sending characters such as pipes(|) in the URL?
For example:
http://localh
Yes. %7C is PIPE Character that needs to be used in URL. following is another example that I used successfully. In this neighborhood name is "ROOT|RESTFUL" which is represented as ROOT%7CRESTFUL
http://localhost:8080/BAE_4_3_API/rest/v1/user/rahul1/neighborhood/ROOT%7CRESTFUL/collaboration/1000/whiteboard
please refer here for url encoding. Say suppose if you want to send Sachin|Tendulkar. You can send as Sachin%7CTendulkar.