I am following:
http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial?_k=sYMMWLGI&_s=NLtXszDVFNfYkdvO I loaded the changeset into a seaside image where the WAKom was running. I pointer my browser to http://localhost:8080/seaside/todo/. I got an error in my server: UndefinedObject>>doesNotUnderstand: #default from this method: WARenderPhaseContinuation>>updateRoot: anHtmlRoot anHtmlRoot meta contentType: self application contentType. anHtmlRoot meta contentScriptType: WAMimeType textJavascript. anHtmlRoot htmlAttributes at: 'xmlns' put: 'http://www.w3.org/1999/xhtml'; at: 'xml:lang' put: 'en'; at: 'lang' put: 'en'. anHtmlRoot beXhtml10Strict. anHtmlRoot title: 'Seaside'. self application libraries do: [ :each | each default updateRoot: anHtmlRoot ]. self session updateRoot: anHtmlRoot What should I do to fix this? Many thanks, Rob _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
I have run into this before. You need to remove "nil" from the list of libraries for that application.
On Sat, Sep 18, 2010 at 4:49 PM, Rob Withers <[hidden email]> wrote: I am following: http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial?_k=sYMMWLGI&_s=NLtXszDVFNfYkdvO -- http://john-mckeon.us _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Sounds promising but how do I do that? I
tried inspecting "self application" and it went boom:
WARequestContextNotFound signal
From: [hidden email]
Sent: Saturday, September 18, 2010 7:05 PM
To: [hidden email]
Subject: Re: [Seaside] error when testing the Seaside
Tutorial On Sat, Sep 18, 2010 at 4:49 PM, Rob Withers <[hidden email]> wrote: I am following: http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial?_k=sYMMWLGI&_s=NLtXszDVFNfYkdvO -- http://john-mckeon.us
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
>From the configuration page for the application. You should see nil in its list of libraries.
On Sun, Sep 19, 2010 at 1:16 AM, Rob Withers <[hidden email]> wrote:
-- http://john-mckeon.us _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Sorry to be completely obtuse about this but I am a
day old beginner. How can I get to the configuration page for the
application?
From: [hidden email]
Sent: Sunday, September 19, 2010 9:10 AM
To: [hidden email]
Subject: Re: [Seaside] error when testing the Seaside
Tutorial On Sun, Sep 19, 2010 at 1:16 AM, Rob Withers <[hidden email]> wrote:
-- http://john-mckeon.us
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
yourServerAddress/config
then click on the application name in the lefthand column Cheers, Bob On 9/19/10 9:44 AM, Rob Withers wrote:
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Rob Withers-2
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 Hi Rob, the tutorial was written for Seaside 2.8 but as I saw in your follow up message you're using 3.0. That might cause those errors. We've to spent a look on it and update the tutorial, if necessary. regards, David Am 18.09.2010 22:49, schrieb Rob Withers: > I am following: > http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial?_k=sYMMWLGI&_s=NLtXszDVFNfYkdvO > > I loaded the changeset into a seaside image where the WAKom was running. I > pointer my browser to http://localhost:8080/seaside/todo/. > > I got an error in my server: UndefinedObject>>doesNotUnderstand: #default > > from this method: > > WARenderPhaseContinuation>>updateRoot: anHtmlRoot > anHtmlRoot meta contentType: self application contentType. > anHtmlRoot meta contentScriptType: WAMimeType textJavascript. > anHtmlRoot htmlAttributes > at: 'xmlns' put: 'http://www.w3.org/1999/xhtml'; > at: 'xml:lang' put: 'en'; > at: 'lang' put: 'en'. > anHtmlRoot beXhtml10Strict. > anHtmlRoot title: 'Seaside'. > self application libraries > do: [ :each | each default updateRoot: anHtmlRoot ]. > self session updateRoot: anHtmlRoot > > What should I do to fix this? > > Many thanks, > Rob > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkyWGPYACgkQY0bVmIBpe6nOCgCfdr0QAMcgSRtHalOvCjQ8xNby ueoAn3Nf3ku0NrlYexGV5r4INkAwMdcV =j7Mf -----END PGP SIGNATURE----- _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Bob Arning
That did it!
Thanks,
Rob From: [hidden email]
Sent: Sunday, September 19, 2010 9:48 AM
To: [hidden email]
Subject: Re: [Seaside] error when testing the Seaside
Tutorial then click on the application name in the lefthand column Cheers, Bob On 9/19/10 9:44 AM, Rob Withers wrote:
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by David Tibbe
Thanks, David, I'll just take it as far as it goes in the meantime. Up to
chapter 4 so far. Cheers, Rob -------------------------------------------------- From: "David Tibbe" <[hidden email]> Sent: Sunday, September 19, 2010 10:06 AM To: "Seaside - general discussion" <[hidden email]> Subject: Re: [Seaside] error when testing the Seaside Tutorial > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi Rob, > > the tutorial was written for Seaside 2.8 but as I saw in your follow up > message you're using 3.0. That might cause those errors. > > We've to spent a look on it and update the tutorial, if necessary. > > regards, > David > > Am 18.09.2010 22:49, schrieb Rob Withers: >> I am following: >> http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial?_k=sYMMWLGI&_s=NLtXszDVFNfYkdvO >> >> I loaded the changeset into a seaside image where the WAKom was running. >> I >> pointer my browser to http://localhost:8080/seaside/todo/. >> >> I got an error in my server: UndefinedObject>>doesNotUnderstand: #default >> >> from this method: >> >> WARenderPhaseContinuation>>updateRoot: anHtmlRoot >> anHtmlRoot meta contentType: self application contentType. >> anHtmlRoot meta contentScriptType: WAMimeType textJavascript. >> anHtmlRoot htmlAttributes >> at: 'xmlns' put: 'http://www.w3.org/1999/xhtml'; >> at: 'xml:lang' put: 'en'; >> at: 'lang' put: 'en'. >> anHtmlRoot beXhtml10Strict. >> anHtmlRoot title: 'Seaside'. >> self application libraries >> do: [ :each | each default updateRoot: anHtmlRoot ]. >> self session updateRoot: anHtmlRoot >> >> What should I do to fix this? >> >> Many thanks, >> Rob >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.10 (MingW32) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > iEYEARECAAYFAkyWGPYACgkQY0bVmIBpe6nOCgCfdr0QAMcgSRtHalOvCjQ8xNby > ueoAn3Nf3ku0NrlYexGV5r4INkAwMdcV > =j7Mf > -----END PGP SIGNATURE----- > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Rob Withers-2
David,
On second thought I immediately ran into differences when trying to "How to Configure Your Application" on the First Steps page. Configuration looks completely different. What should I do to add and configure my new SeasideTutorialRootComponent? thanks, Rob -------------------------------------------------- From: "Rob Withers" <[hidden email]> Sent: Sunday, September 19, 2010 11:06 AM To: "Seaside - general discussion" <[hidden email]> Subject: Re: [Seaside] error when testing the Seaside Tutorial > Thanks, David, I'll just take it as far as it goes in the meantime. Up to > chapter 4 so far. > > Cheers, > Rob > > -------------------------------------------------- > From: "David Tibbe" <[hidden email]> > Sent: Sunday, September 19, 2010 10:06 AM > To: "Seaside - general discussion" <[hidden email]> > Subject: Re: [Seaside] error when testing the Seaside Tutorial > >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> Hi Rob, >> >> the tutorial was written for Seaside 2.8 but as I saw in your follow up >> message you're using 3.0. That might cause those errors. >> >> We've to spent a look on it and update the tutorial, if necessary. >> >> regards, >> David >> >> Am 18.09.2010 22:49, schrieb Rob Withers: >>> I am following: >>> http://www.hpi.uni-potsdam.de/hirschfeld/seaside/tutorial?_k=sYMMWLGI&_s=NLtXszDVFNfYkdvO >>> >>> I loaded the changeset into a seaside image where the WAKom was running. >>> I >>> pointer my browser to http://localhost:8080/seaside/todo/. >>> >>> I got an error in my server: UndefinedObject>>doesNotUnderstand: >>> #default >>> >>> from this method: >>> >>> WARenderPhaseContinuation>>updateRoot: anHtmlRoot >>> anHtmlRoot meta contentType: self application contentType. >>> anHtmlRoot meta contentScriptType: WAMimeType textJavascript. >>> anHtmlRoot htmlAttributes >>> at: 'xmlns' put: 'http://www.w3.org/1999/xhtml'; >>> at: 'xml:lang' put: 'en'; >>> at: 'lang' put: 'en'. >>> anHtmlRoot beXhtml10Strict. >>> anHtmlRoot title: 'Seaside'. >>> self application libraries >>> do: [ :each | each default updateRoot: anHtmlRoot ]. >>> self session updateRoot: anHtmlRoot >>> >>> What should I do to fix this? >>> >>> Many thanks, >>> Rob >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.10 (MingW32) >> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ >> >> iEYEARECAAYFAkyWGPYACgkQY0bVmIBpe6nOCgCfdr0QAMcgSRtHalOvCjQ8xNby >> ueoAn3Nf3ku0NrlYexGV5r4INkAwMdcV >> =j7Mf >> -----END PGP SIGNATURE----- >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |