Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~701 People Reached
Favorite Forums
Favorite Tags
Member Avatar for ressaince

i have an ASP web services to change byte array that given from the client and change it to a file and save it in the web server the code is like this : [CODE] [WebMethod] public string UploadFile(byte[] f, string fileName) { try { MemoryStream ms = new MemoryStream(f); …

Member Avatar for Dagar.pp
0
510
Member Avatar for ressaince

i have an ASP web services to change byte array that given from the client and change it to a file the code is like this : [WebMethod] [CODE=asp] public string UploadFile(byte[] f, string fileName) { try { MemoryStream ms = new MemoryStream(f); String path="/images/"; String location=HttpContext.Current.Server.MapPath(path); FileStream fs = …

0
40
Member Avatar for ressaince

i have a Web services that i build in ASP i need to pass byte array parameter or stream to consume the web service? are php can convert uploaded file into byte array or stream? please help me thx

Member Avatar for qualitybrains
0
151