Archived Forum Post

Index of archived forum posts

Question:

why cannot find a content-type supported by your client ?

Sep 26 '12 at 14:54

*VFP 9 SP2


Answer

1) Please don't post your unlock code.

2) Please enclose code listings within "<pre>" and "<" tags to make them readable.

3) The AddQuickHeader method only applies to other methods where an HttpRequest object is not used, such as in QuickGetStr. Any method, such as SynchronousRequest, where an HTTP request object is explicitly passed, you may add the HTTP header via the HttpRequest.AddHeader method. See http://www.chilkatsoft.com/refdoc/xChilkatHttpRequestRef.html

4) The LastHeader, LastResponseHeader, and LastContentType properties apply to methods where no HTTP response object is returned. For methods such as SynchronousRequest, which return an HTTP response object, you may get this information directly from the HTTP response object. See http://www.chilkatsoft.com/refdoc/xChilkatHttpResponseRef.html The content-type of the response can be obtained via the responseObject.GetHeaderField("Content-Type") method call.