views:

65

answers:

1
+1  Q: 

Read bytes array

In web service I have function that return bytes array. Now, I call it from VbScript and I need to catch result of this function. How I can catch result of this function in value that is gone be like a value that function return (bytes array)?

+2  A: 

If you'll call a webservice from VBScript, you'll probably to use a XMLHTTP object; so, you'll get a base64 encoded string to transform into a byte array.

This links can be helpful:

Rubens Farias