Thanks.  I had all the things you suggested, except for on little
thing.  Now I know that 'local' should be 'Local'.  So many
things in Catalyst are case-agnostic, but this is the perl part, still
case sensetive.<br><br><div><span class="gmail_quote">On 8/2/06, <b class="gmail_sendername">Jonathan Rockway</b> &lt;<a href="mailto:jon@jrock.us">jon@jrock.us</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>Ben Hopkins wrote:<br><br>&gt; When I ran the server, it listed authors/list in the &quot;Loaded Private<br>&gt; actions&quot; section, but nothing in the &quot;Loaded Path actions&quot; part.<br>&gt; When I go to localhost:3000/authors/list, I get the generic Catalyst
<br>&gt; page (after logging in).<br>&gt;<br>&gt; How can this be?<br><br>It could be :) that you didn't tell Catalyst that the method should be<br>publicly accessible.&nbsp;&nbsp;It should look like:<br><br>&nbsp;&nbsp;&nbsp;&nbsp; sub list : Local {
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; my ($self, $c, @args) = @_;<br>&nbsp;&nbsp;&nbsp;&nbsp; # whatever...<br>&nbsp;&nbsp;&nbsp;&nbsp; $c-&gt;response-&gt;body('list is working now');<br>&nbsp;&nbsp;&nbsp;&nbsp; }<br><br>The &quot;Local&quot; means to bind the method to the URL<br>/controllername/subname, assuming the controller is in
<br>MyApp::Controller::ControllerName and the method is &quot;subname&quot;.<br><br>Instead of :Local, you could also be using LocalRegex, Global, etc.,<br>as per the manual.<br><br>Hope this helps.<br><br>Regards,<br>Jonathan Rockway
<br><br><br><br><br>_______________________________________________<br>List: <a href="mailto:Catalyst@lists.rawmode.org">Catalyst@lists.rawmode.org</a><br>Listinfo: <a href="http://lists.rawmode.org/mailman/listinfo/catalyst">
http://lists.rawmode.org/mailman/listinfo/catalyst</a><br>Searchable archive: <a href="http://www.mail-archive.com/catalyst@lists.rawmode.org/">http://www.mail-archive.com/catalyst@lists.rawmode.org/</a><br>Dev site: <a href="http://dev.catalyst.perl.org/">
http://dev.catalyst.perl.org/</a><br><br><br><br></blockquote></div><br>