How to pass image from a flex application to a asp net c# web service?

后端 未结 1 906
臣服心动
臣服心动 2020-12-22 06:36

I want to store images from the flex application to a asp net web service and at a later point will be sending these images back to flex application . Can you please give a

相关标签:
1条回答
  • 2020-12-22 06:44

    There are two ways I can think of:

    • use AMF and send ByteArray to C# (flex to c#)
    • use URLRequest and it's data property to send ByteArray encoded in Base64 via HTTP POST
    0 讨论(0)
提交回复
热议问题