When you start up T5 it lists all the available page class files with
their corresponding URLs, e.g:

ComponentClassResolver - Available pages:
ServiceStatus: org.apache.tapestry5.corelib.pages.ServiceStatus
PageCatalog: org.apache.tapestry5.corelib.pages.PageCatalog

Do you see the pages listed?

Steve.




On 2 November 2011 11:21, Chris Collins <chris...@me.com> wrote:
> I dont think that is the case.  I had already verified that exception 
> reporting was working.
>
> I programmatically set tapestry.production-mode=false in one of my 
> AppModule's (I didnt do it via the web.xml):
>
> ....
> configuration.add(SymbolConstants.PRODUCTION_MODE, "false");
> .....
>
>
> I have a page I test to see if this property is set:
>
>    @Inject
>    @Symbol(SymbolConstants.PRODUCTION_MODE)
>    @Property(write = false)
>    private boolean productionMode;
>
> .....
>
> <t:if test="productionMode">
>            <b>Production Mode</b>
>            <p:else>
>                <b>Not production mode still</b>
>            </p:else>
>        </t:if>
>
>
> it says it is in production mode or not (it says not production mode).
>
> Further I have in a test page something that forces the exception reporting:
>
> void onActionFromFail ()
>    {
>        throw new RuntimeException("Failure inside action event handler.");
>    }
>
> It blows a lovely exception report page (I love it!!!!).
>
> C
>
> On Nov 1, 2011, at 4:26 PM, Howard Lewis Ship wrote:
>
>> The pages are "invisible" when not in development mode, so the most
>> likely case is that you are not actually running in development mode.
>>
>> On Tue, Nov 1, 2011 at 12:29 PM, Chris Collins
>> <chris_j_coll...@yahoo.com> wrote:
>>> I am a novice at T5 so apologize for what is surely a stupid question.
>>>
>>> I am trying out 5.3-rc-1.
>>>
>>> I am trying to get either the pagecatalog or servicestatus pages such:
>>>
>>> http://localhost:<myport>/<page>
>>
>> By default, the pages are only accessible from localhost.  This should
>> work ... but possibly something else is going on. What is your dev
>> environment (OS, etc.)?
>>
>>>
>>> I can render any of my pages but neither of these pages seem to be found.  
>>> I am running in developer mode.  Any clues on my stupidity?
>>
>> I'd phrase it as "Any idea what I'm missing."  There's a lot going on
>> in Tapestry (almost, too much) , and in all the tiers of client web
>> browser and HTTP between you and it, so don't jump to the conclusion
>> that it's you ... or that it's Tapestry.
>>
>>>
>>>
>>> Best
>>>
>>> C
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>>
>>>
>>
>>
>>
>> --
>> Howard M. Lewis Ship
>>
>> Creator of Apache Tapestry
>>
>> The source for Tapestry training, mentoring and support. Contact me to
>> learn how I can get you up and productive in Tapestry fast!
>>
>> (971) 678-5210
>> http://howardlewisship.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to