Click here to Skip to main content
15,902,908 members

Comments by willworknow1 (Top 13 by date)

willworknow1 29-Jul-11 18:34pm View    
This is what worked.
"POST /Default.aspx?data=VGVzdERhdGE%3d HTTP/1.1\r\nHost: vztest.cloudapp.net\r\nContent-Type: application/x-www-form-urlencoded\r\nContent-Length: 0\r\n\r\n";
willworknow1 28-Jul-11 15:17pm View    
Is that just like it is...with spaces, forward slashes etc? The above still does not seem to be working for me.
willworknow1 27-Jul-11 14:41pm View    
I do understand that. The reason for the C++ tag is someone with C++ knowledge could also know the answer to this question. They might have more intimate knowledge of the HTTP protocol.
willworknow1 3-Apr-11 8:17am View    
Thanks...you made me step back and have a look at what was REALLY going on. I had an extra Convert.ToBase64String in there when it should have been something more along the lines of:

System.Text.Encoding encoding=null;
encoding = new System.Text.UTF8Encoding();
String EventToSend = encoding.GetString(Serialize(ev));
willworknow1 23-Nov-10 10:17am View    
Thanks for the answer....but....I understand checking for null/values, Global.SpellEngine should never be null unless there's a failure. There IS a failure and that's the failure that I am seeing...Global.SpellEngine == null. My question is WHY is this null and how can I rectify it? I want Global.SpellEngine to exist for the life of the web app.

Thanks.