[Seaside] [VW7.4.1] The page cannot be displayed

Boris Popov boris at deepcovelabs.com
Fri Jan 5 16:23:39 UTC 2007


Yup, had the same unexplained behavior occurring, but unhappy to admit
that I didn't have time to submit a reproducible case to Michel and
Cincom. Instead I moved to running Seaside side of things to Swazoo and
things have been working smoothly ever since.

Cheers!

-Boris

-- 
+1.604.689.0322
DeepCove Labs Ltd.
4th floor 595 Howe Street
Vancouver, Canada V6C 2T5
http://tinyurl.com/r7uw4

boris at deepcovelabs.com

CONFIDENTIALITY NOTICE

This email is intended only for the persons named in the message
header. Unless otherwise indicated, it contains information that is
private and confidential. If you have received it in error, please
notify the sender and delete the entire message including any
attachments.

Thank you.

-----Original Message-----
From: seaside-bounces at lists.squeakfoundation.org
[mailto:seaside-bounces at lists.squeakfoundation.org] On Behalf Of Carl
Gundel
Sent: Friday, January 05, 2007 8:03 AM
To: The Squeak Enterprise Aubergines Server - general discussion.
Subject: Re: [Seaside] [VW7.4.1] The page cannot be displayed

>> I'm very glad to hear that people are paying some attention
>> to this issue.
>> Thanks!
>
>Carl,
>
>I believe I found the reason for this issue.
>
>It looks as if MSIE does not like an HTTP header with no
>space after the colon while WebToolkit does not output any.
>I see this as a bug in MSIE since RFC 2822 specifies that
>spaces after the colon are optional (page 46). The same bug
>exists also in IE7.
>
>I was not curious enough to determine which header exactly
>was affected, so I created two patches to WebToolkit to make
>sure that a space is inserted after the colon in all headers.
>
>The patches are available on the public store as part of package
>WebToolkit/Patches 2.6b1.118.1. You can either load the
>patches from the package, load the package itself into your
>image or rebuild a new image by loading SeasideForWebToolkit.
>
>I hope these patches will fix the issue for you.

I do appreciate it.  Thanks.

It has taken me weeks to get around to trying the patches.  After
loading 
them from the public Store repository they do not seem to do the trick.

I wonder if I'm doing something wrong.

The following method exists in my image for class MessageHeaders:

sendOver: aStream

 self do: [ :header |
  aStream
   nextPutAll: header key;
   nextPutAll: ': '. "A space is needed by IE for some headers"
  aStream nextPutAll:
   (self headerEncode: header).
  aStream crlf.
 ].

So the fix would appear to be there alright.  Any thoughts?

-Carl Gundel, author of Liberty BASIC
http://www.libertybasic.com 


_______________________________________________
Seaside mailing list
Seaside at lists.squeakfoundation.org
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


More information about the Seaside mailing list