[twsocket] Setting additional Header fields depending on the mimetype in the HTTP Server

2011-12-10 Thread Lars Gehre
Hello, I need to add for certain mime content types special headers to the HTTP header. As an example for static resources the Expires or Cache-Control headers. Unfortunatly I haven't found a way to do this without overriding (and duplicating) the SendDocument function. Did I miss something

Re: [twsocket] Setting additional Header fields depending on the mimetype in the HTTP Server

2011-12-10 Thread RTT
If you call the SendDocument yourself, you can use this overload version procedure SendDocument(SendType: THttpSendType; const CustomHeaders: string); overload; virtual; { V7.29 } If not, you can override it and pass your custom header in the CustomHeaders parameter, calling the inherited