Categories > TinyButStrong general >

https and TBS

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: SunWuKung
Date: 2008-09-19
Time: 22:57

https and TBS

Hi,
I have a Flash application that calls a php file which returns an xml file generated by TBS.
Everything is happy in http.
Still everything is happy in FF and Chrome when using https.
In IE7 however the xml content is just not loaded under https.
The only thing I can think of is maybe it has to do with the fact that the xml file comes Transfer-Encoding: chunked and IE7 may block that under https.

I have some distant recollection that TBS starts sending the output before the whole document is generated and this may be related to the file being chunked (if I request the template as a plain file it goes through fine and is not chunked).

As I recall chunking is required by the
HTTP/1.1 spec when sending content where the total length is not known
at the time the headers are sent.

Could this be TBS related? And if yes how can I make TBS to send the whole file only when its completed?

Thx.
SWK
By: Skrol29
Date: 2008-09-20
Time: 01:15

Re: https and TBS

Hi,

TBS sends the contents only when you call the Show() method.
And you can avoid this using the argument Render or the property Render. If you do so, you can retreive the result of the merge and send it when you need.