Click here to Skip to main content
15,896,726 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralApp domain vs. process Pin
Hesham Amin17-Jan-04 4:28
Hesham Amin17-Jan-04 4:28 
GeneralRe: App domain vs. process Pin
Mike Dimmick19-Jan-04 6:10
Mike Dimmick19-Jan-04 6:10 
GeneralRe: App domain vs. process Pin
Hesham Amin19-Jan-04 10:25
Hesham Amin19-Jan-04 10:25 
Generalcapturing user's action Pin
dnprock16-Jan-04 13:27
dnprock16-Jan-04 13:27 
Question(MSMQ) Whats the Best Way to Poll a Queue? Pin
Vlad Gabovich15-Jan-04 11:33
Vlad Gabovich15-Jan-04 11:33 
GeneralInfo on MS Intermediate Language Pin
Aamir Mughal15-Jan-04 2:40
Aamir Mughal15-Jan-04 2:40 
GeneralRe: Info on MS Intermediate Language Pin
Mike Dimmick15-Jan-04 4:05
Mike Dimmick15-Jan-04 4:05 
GeneralSOAP and serialization Pin
ProffK14-Jan-04 23:10
ProffK14-Jan-04 23:10 
Yesterday I tried to pass a TransportObject to my web service. This object has two properties, Method and State. Both are string fields, and I serialize a business object using a SoapFormatter for the state field. When I use the following serialization code, the web services bombs:

Dim ms as New MemoryStream
Dim soap as New SoapFormatter
soap.Serialize(ms, object)

Dim state as String = Encoding.ASCII.GetString(ms.GetBuffer())

WebService.Process(New TransportObject(state, "Save")

But when I use the following code, it works:

Dim ms as New MemoryStream
Dim soap as New SoapFormatter
soap.Serialize(ms, object)

Dim state as String = Convert.ToBase64String(ms.ToArray())
WebService.Process(New TransportObject(state, "Save")



Memes don't exist = tell your friends
GeneralWord-addin Pin
klawipo14-Jan-04 6:29
klawipo14-Jan-04 6:29 
GeneralAdvanced Collision Detection with GDI+ Pin
david@mindplay.com13-Jan-04 9:34
david@mindplay.com13-Jan-04 9:34 
GeneralRe: Advanced Collision Detection with GDI+ Pin
pwinant14-Jan-04 10:29
pwinant14-Jan-04 10:29 
GeneralRe: Advanced Collision Detection with GDI+ Pin
david@mindplay.com15-Jan-04 9:05
david@mindplay.com15-Jan-04 9:05 
GeneralRe: Advanced Collision Detection with GDI+ Pin
pwinant15-Jan-04 13:03
pwinant15-Jan-04 13:03 
GeneralRe: Advanced Collision Detection with GDI+ Pin
david@mindplay.com15-Jan-04 13:37
david@mindplay.com15-Jan-04 13:37 
GeneralRe: Advanced Collision Detection with GDI+ Pin
david@mindplay.com17-Jan-04 14:00
david@mindplay.com17-Jan-04 14:00 
GeneralLaunching an outside app with .NET Pin
bneacetp13-Jan-04 3:18
bneacetp13-Jan-04 3:18 
GeneralRe: Launching an outside app with .NET Pin
Niels Penneman13-Jan-04 5:45
Niels Penneman13-Jan-04 5:45 
GeneralRe: Launching an outside app with .NET Pin
bneacetp13-Jan-04 7:54
bneacetp13-Jan-04 7:54 
Questionhow to get install path Pin
yu-yu12-Jan-04 20:53
yu-yu12-Jan-04 20:53 
AnswerRe: how to get install path Pin
Heath Stewart14-Jan-04 9:41
protectorHeath Stewart14-Jan-04 9:41 
GeneralRe: how to get install path Pin
yu-yu14-Jan-04 15:37
yu-yu14-Jan-04 15:37 
QuestionHow do you access the scrollbar of a panel? Pin
pwinant12-Jan-04 15:49
pwinant12-Jan-04 15:49 
AnswerRe: How do you access the scrollbar of a panel? Pin
Heath Stewart14-Jan-04 9:30
protectorHeath Stewart14-Jan-04 9:30 
GeneralRe: How do you access the scrollbar of a panel? Pin
pwinant14-Jan-04 10:04
pwinant14-Jan-04 10:04 
GeneralMultithread synchronisation in VB.net Pin
Paul Farry11-Jan-04 20:46
professionalPaul Farry11-Jan-04 20:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.