hi,
I have a url which is a char *
char * url = "/url=%2Fhome%2Fs umit%2Fpackages %2Fmyxml.xml";
when i send this URL to http server it was like -
"/url=/home/sumit/pacakges/myxml.xml"
but when it get by http server it convert '/' to '%2F' i have to
reconvert it to '/'
i did so many string operation but i did not get real string ,
still i am trying. can anyone please give me idea how to replace '%2F' to
'/'
Thanks
I have a url which is a char *
char * url = "/url=%2Fhome%2Fs umit%2Fpackages %2Fmyxml.xml";
when i send this URL to http server it was like -
"/url=/home/sumit/pacakges/myxml.xml"
but when it get by http server it convert '/' to '%2F' i have to
reconvert it to '/'
i did so many string operation but i did not get real string ,
still i am trying. can anyone please give me idea how to replace '%2F' to
'/'
Thanks
Comment