rfc

See HttpWebRequest as string before GetResponse without using fiddler

How can i see HttpWebRequest object as string before calling GetResponse method? I want to see raw format of request something like this as in fiddler: Content-Type: multipart/form-data; boundary=---------------------------2600251021003 Content-Length: 338 -----------------------------2600251021003 Content-Disposition: form-data; name...

.NET SAP RFC tutorial?

Hello, is there a tutorial out there which explains step by step how to connect to a remote capable SAP module? Thanks :) ...

How RFC 5545 is different from RFC 2445

In native Android calendar app RFC 2445 protocol is used to create .ics files. I found in some blogs that RFC 2445 is replaced with RFC 5545. Can any one please tell me what are the extra features in RFC 5545 and how it is different from RFC 2445? Regards, Rajani ...

RTP RFC (3550) interpretation question.

I'm doing a Java implementation of RFC 3550 (RTP) and I've ran into a little problem: In chapter 11, paragraph 2, it states that: (...) A participant MUST NOT assume that the source port of the incoming RTP or RTCP packet can be used as the destination port for outgoing RTP or RTCP packets. When RTP data packets are being sent in b...

how do you comment on RFC?

is there general guideline about writing comment on RFC? ...

Uri.IsWellFormedUriString allows http://http://<url>

This seems strange to me but I am sure there is an explanation If I use Uri.IsWellFormedUriString passing in "http://http://www.google.com" it returns true, I can only assume that this URI conforms to some RFC specification and is valid. Most of my other tests indicate this method works in the manner in which I expect other than this ...

can an array be top-level JSON-text?

per the debate in this post: json-conversion-in-javascript ...

PHP: RFC-2231 How to encode UTF-8 String as Content-Disposition filename

Scenario: (in PHP) I have a form submission with a UTF-8 encoded string ($name) to support international characters. Upon submitting the form (via GET), I am creating a CSV download file. I want the name of the file to be that string + .csv ("$name.csv"). For a western character set I can do this just fine by doing: header("Content-Di...