Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've got a webservice written in c#, which accepts as a parameter an array of bytes (byte[]). I'm trying to consume the service using PHP, but am having problems getting the parameter to the correct type expected by the webservice.

Anyone know how this is accomplished?

share|improve this question
What does the byte[] represent? – Paul Creasey Dec 14 '09 at 21:38

1 Answer

up vote 8 down vote accepted

Send the data as base64 encoded data. This will get converted to a byte[] by C#.

You can use base64_encode to do this in PHP.

share|improve this answer
1  
Good call. Looking at the WSDL for a function with a return type of byte[], the response type is: type="s:base64Binary" – Jim H. Dec 14 '09 at 21:42
Very interesting – Aequitarum Custos Dec 14 '09 at 21:58

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.