Hi,
I have 2 web services, one in ASP.NET and the other in PHP5. Both implement the same functionality (same method). If I query both (same method, same data), should the result string in base64 encoding be the same as well?
thank you.
| SitePoint Sponsor |
Hi,
I have 2 web services, one in ASP.NET and the other in PHP5. Both implement the same functionality (same method). If I query both (same method, same data), should the result string in base64 encoding be the same as well?
thank you.
I would think they will be the same, seen as there the same type of encoding. But thats just a guess, you could always just do a simple to test to find out though.
Raining
www.thetrial.staronesw.com
Check out my online text based rpg (In development!!)
yeah after using base64 to decode the string
php webservice produces
<parent><tag1>data</tag1><tag2>data</tag2></parent>
with no line breaks
and ASP.NET produces
<parent>
<tag1>data</tag1>
<tag2>data</tag2>
</parent>
with linebreaks...
Bookmarks