if i want to transmit binary data,,,will it be support by
Webservices or any exceptions ? define

Answers were Sorted based on User's Feedback



if i want to transmit binary data,,,will it be support by Webservices or any exceptions ? define..

Answer / siva

Using binary formatter we can serilize and transmit the
binary data

using System.Runtime.Serialization.Formatters.Binary ;

BinaryFormatter oBinaryFrmat = new BinaryFormatter();

oBinaryFrmat.Serialize(,);

But the only thing is the firewall it has to be disabled.

If any issue in the above said answer please correct me.

Is This Answer Correct ?    2 Yes 0 No

if i want to transmit binary data,,,will it be support by Webservices or any exceptions ? define..

Answer / ish

it is possilble by remoting. not web sevices.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Sharp Interview Questions

If we inherit a class do the private variables also get inherited ?

6 Answers   TCS,


Can we overload the main method in c#?

0 Answers  


How do you inherit from a class in C#?

1 Answers  


What are object pooling and connection pooling and difference? Where do we set the Min and Max Pool size for connection pooling?

0 Answers  


What is the predicate of a sentence?

0 Answers  






What is getenumerator?

0 Answers  


Name the control which cannot be placed in mdi?

0 Answers  


Illustrate race condition?

0 Answers  


If you define a user defined data type by using the struct keyword, is it a value type or reference type?

0 Answers  


What is the difference between “finalize” and “finally” methods in c#?

0 Answers  


Structs are largely redundant in c++. Why does c# have them?

0 Answers  


How do you debug an ASP.NET Web application?

1 Answers  


Categories