No subject


Thu Feb 23 00:47:41 CET 2006


[debug] "GET" request for "/" from "155.180.54.102"
[debug] Found sessionid "d0afd16a054c4fc10529ba090040bd8abf84ea1e" in 
cookie
[debug] Restored session "d0afd16a054c4fc10529ba090040bd8abf84ea1e"
[debug] Rendering template "index.tt"
[debug] Applying HTML page layout wrappers to index.tt

[debug] auth_restore_user called
[debug] $parm_frozen_user1 = undef;

[debug] $parm_store_name1 = undef;

[debug] $frozen_user1 = 'I024548';

[debug] $store_name1 = bless( {
                        'hash' => {
                                    'I024548' => bless( {
 '__hash_obj_key_is_array' => {},
                                                          'id' => 
'I024548',
                                                          'name' => 
'Leonard A. Jaffe',
                                                          'roles' => [
 'admin',
 'resolver'
                                                                     ],
                                                          'standardid' => 
'I024548',
                                                          'store' => 
$store_name1
                                                        }, 
'Catalyst::Plugin::Authentication::User::Hash' )
                                  }
                      }, 
'Catalyst::Plugin::Authentication::Store::Minimal::Backend' );

[debug] $store1 = undef;

[error] Coldn't render template "undef error - Can't call method 
"from_session" on an undefined value at 
D:/Perl/site/lib/Catalyst\Plugin\Authentication.pm line 127.
"


[ this bit is my session and flash variables display in myapp::finallize 
in trying to deal with the fatal combination of session and 
Authentication::Store::DBIC but I think it being here could be helpful, so 
I didn't comment the method out ]

[debug] $VAR1 = {
          '__address' => '155.180.54.102',
          '__created' => 1154542085,
          '__updated' => 1154549027,
          '__user' => 'I024548',
          '__user_store' => bless( {
                                     'hash' => {
                                                 'I024548' => bless( {
 '__hash_obj_key_is_array' => {},
 'id' => 'I024548',
 'name' => 'Leonard A. Jaffe',
 'roles' => [
          'admin',
          'resolver'
        ],
 'standardid' => 'I024548',
 'store' => $VAR1->{'__user_store'}
                                                                     }, 
'Catalyst::Plugin::Authentication::User::Hash' )
                                               }
                                   }, 
'Catalyst::Plugin::Authentication::Store::Minimal::Backend' )
        };

$VAR2 = {};


[error] Coldn't render template "undef error - Can't call method 
"from_session" on an undefined value at 
D:/Perl/site/lib/Catalyst\Plugin\Authentication.pm line 127.
"
[debug] Restored session "d0afd16a054c4fc10529ba090040bd8abf84ea1e"
[info] Request took 0.086845s (11.515/s)
.----------------------------------------------------------------+-----------.
| Action                                                         | Time  |
+----------------------------------------------------------------+-----------+
| /auto                                                          | 
0.005265s |
| /index                                                         | 
0.000049s |
| /end                                                           | 
0.046951s |
|  -> dtsis::View::TT->process                                   | 
0.045623s |
'----------------------------------------------------------------+-----------'




-----------------------------------------
This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law.  If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED.  Although this transmission and
any attachments are believed to be free of any virus or other
defect that might affect any computer system into which it is
received and opened, it is the responsibility of the recipient to
ensure that it is virus free and no responsibility is accepted by
JPMorgan Chase & Co., its subsidiaries and affiliates, as
applicable, for any loss or damage arising in any way from its use.
If you received this transmission in error, please immediately
contact the sender and destroy the material in its entirety,
whether in electronic or hard copy format. Thank you.

--=_alternative 0071A919852571BE_=
Content-Type: text/html;
	charset="US-ASCII"


<br><font size=2 face="sans-serif">So after getting my auto() method fixed
up, I still have the undefined value error in the session/user stuff that
I was getting earlier.</font>
<br>
<br><font size=2 face="sans-serif">My code and logs below, (with some debug
statements in):</font>
<br>
<br><font size=2 face="sans-serif">Len.</font>
<br>
<br>
<br>
<br>
<br><font size=2 face="sans-serif">&nbsp;Root::auto()</font>
<br>
<br><font size=2 face="Courier">&nbsp; ########</font>
<br><font size=2 face="Courier">&nbsp; ## Get the username from siteminder
and log that user in.</font>
<br><font size=2 face="Courier">&nbsp; ######## &nbsp;</font>
<br><font size=2 face="Courier">&nbsp; unless ($c-&gt;user_exists) {</font>
<br><font size=2 face="Courier">&nbsp; &nbsp; my $standardid = $c-&gt;request-&gt;header('standardid')
|| $c-&gt;request-&gt;param('laj');</font>
<br><font size=2 face="Courier">&nbsp; &nbsp; unless ($c-&gt;login(uc($standardid)))
{</font>
<br><font size=2 face="Courier">&nbsp; &nbsp; &nbsp; $c-&gt;error(&quot;Could
not authenticate&quot;. &nbsp;($standardid ? &nbsp;&quot;: $standardid&quot;
: 'UNKNOWN') &nbsp;);</font>
<br>
<br><font size=2 face="Courier">&nbsp; &nbsp; &nbsp; ## TODO: should really
redirect to some error page.</font>
<br><font size=2 face="Courier">&nbsp; &nbsp; &nbsp; return 0;</font>
<br><font size=2 face="Courier">&nbsp; &nbsp; }</font>
<br><font size=2 face="Courier">&nbsp; }</font>
<br>
<br>
<br><font size=2 face="System">[ Len's Commentary: again, if I comment
out the outer unless() logic, the page renders. &nbsp;Since the template
contains logic of the form [% IF Catalyst.user_exists %] You are [% Catalyst.user.name
%][% END %] some of the Authentication.pm methods are being executed twice,
but by the time the template calls these methods, the user should be in
the session, waiting to be accessed. &nbsp;</font>
<br>
<br><font size=2 face="System">But the call to Catalyst.user.name, which
fires off $c-&gt;user, is apparently not finding a value in c-&gt;_user,
[which I have </font>
<br><font size=2 face="System">confirmed by dumpering its value at the
end of Root::auto, and seeing the value reported as undef] which makes
user() call suth_restore_user() which looks at $store_name &amp; $store,
&nbsp;and after receiving and undef $store, dereferences it to call from_session().
]</font>
<br>
<br>
<br>
<br><font size=2 face="sans-serif">C::P::Authentication::auth_restore_user:</font>
<br>
<br><font size=2 face="Courier New">sub auth_restore_user {</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; my ( $c, $frozen_user,
$store_name ) = @_;</font>
<br><font size=2 face="Courier New">$c-&gt;log-&gt;debug(&quot;auth_restore_user
called&quot;);</font>
<br><font size=2 face="Courier New">$c-&gt;log-&gt;dumper($frozen_user,
'parm_frozen_user');</font>
<br><font size=2 face="Courier New">$c-&gt;log-&gt;dumper($store_name,
'parm_store_name');</font>
<br>
<br><font size=2 face="Courier New">&nbsp; &nbsp; $frozen_user ||= $c-&gt;_user_in_session;</font>
<br><font size=2 face="Courier New">$c-&gt;log-&gt;dumper($frozen_user,
'frozen_user');</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; return unless defined($frozen_user);</font>
<br>
<br><font size=2 face="Courier New">&nbsp; &nbsp; $store_name &nbsp;||=
$c-&gt;session-&gt;{__user_store};</font>
<br><font size=2 face="Courier New">$c-&gt;log-&gt;dumper($store_name,
'store_name');</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; return unless $store_name;
# FIXME die unless? This is an internal inconsistency</font>
<br>
<br><font size=2 face="Courier New">&nbsp; &nbsp; my $store = $c-&gt;get_auth_store($store_name);</font>
<br><font size=2 face="Courier New">$c-&gt;log-&gt;dumper($store, 'store');</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; $c-&gt;_user( my $user
= $store-&gt;from_session( $c, $frozen_user ) );</font>
<br>
<br><font size=2 face="Courier New">$c-&gt;log-&gt;dumper($c-&gt;_user,
'_user now is');</font>
<br><font size=2 face="Courier New">&nbsp; &nbsp; return $user;</font>
<br>
<br><font size=2 face="Courier New">}</font>
<br>
<br>
<br><font size=2 face="sans-serif">From the apache error.log</font>
<br><font size=2><tt>[info] *** Request 3 (0.007/s) [4636] [Wed Aug &nbsp;2
15:12:57 2006] ***</tt></font>
<br><font size=2><tt>[debug] &quot;GET&quot; request for &quot;/&quot;
from &quot;155.180.54.102&quot;</tt></font>
<br><font size=2><tt>[debug] Found sessionid &quot;d0afd16a054c4fc10529ba090040bd8abf84ea1e&quot;
in cookie</tt></font>
<br><font size=2><tt>[debug] Restored session &quot;d0afd16a054c4fc10529ba090040bd8abf84ea1e&quot;</tt></font>
<br><font size=2><tt>[debug] Rendering template &quot;index.tt&quot;</tt></font>
<br><font size=2><tt>[debug] Applying HTML page layout wrappers to index.tt</tt></font>
<br>
<br><font size=2><tt>[debug] auth_restore_user called</tt></font>
<br><font size=2><tt>[debug] $parm_frozen_user1 = undef;</tt></font>
<br>
<br><font size=2><tt>[debug] $parm_store_name1 = undef;</tt></font>
<br>
<br><font size=2><tt>[debug] $frozen_user1 = 'I024548';</tt></font>
<br>
<br><font size=2><tt>[debug] $store_name1 = bless( {</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; 'hash' =&gt; {</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'I024548'
=&gt; bless( {</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '__hash_obj_key_is_array'
=&gt; {},</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'id'
=&gt; 'I024548',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'name'
=&gt; 'Leonard A. Jaffe',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'roles'
=&gt; [</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'admin',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'resolver'</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;],</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'standardid'
=&gt; 'I024548',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'store'
=&gt; $store_name1</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, 'Catalyst::Plugin::Authentication::User::Hash'
)</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; }, 'Catalyst::Plugin::Authentication::Store::Minimal::Backend'
);</tt></font>
<br>
<br><font size=2><tt>[debug] $store1 = undef;</tt></font>
<br>
<br><font size=2><tt>[error] Coldn't render template &quot;undef error
- Can't call method &quot;from_session&quot; on an undefined value at D:/Perl/site/lib/Catalyst\Plugin\Authentication.pm
line 127.</tt></font>
<br><font size=2><tt>&quot;</tt></font>
<br>
<br>
<br><font size=2><tt><b>[ this bit is my session and flash variables display
in myapp::finallize in trying to deal with the fatal combination of session
and Authentication::Store::DBIC but I think it being here could be helpful,
so I didn't comment the method out ]</b></tt></font>
<br>
<br><font size=2><tt>[debug] $VAR1 = {</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '__address' =&gt;
'155.180.54.102',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '__created' =&gt;
1154542085,</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '__updated' =&gt;
1154549027,</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '__user' =&gt;
'I024548',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '__user_store'
=&gt; bless( {</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'hash'
=&gt; {</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'I024548' =&gt; bless( {</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'__hash_obj_key_is_array' =&gt;
{},</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'id' =&gt; 'I024548',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'name' =&gt; 'Leonard A. Jaffe',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'roles' =&gt; [</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 'admin',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; 'resolver'</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
],</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'standardid' =&gt; 'I024548',</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'store' =&gt; $VAR1-&gt;{'__user_store'}</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}, 'Catalyst::Plugin::Authentication::User::Hash'
)</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;},
'Catalyst::Plugin::Authentication::Store::Minimal::Backend' )</tt></font>
<br><font size=2><tt>&nbsp; &nbsp; &nbsp; &nbsp; };</tt></font>
<br>
<br><font size=2><tt>$VAR2 = {};</tt></font>
<br>
<br>
<br><font size=2><tt>[error] Coldn't render template &quot;undef error
- Can't call method &quot;from_session&quot; on an undefined value at D:/Perl/site/lib/Catalyst\Plugin\Authentication.pm
line 127.</tt></font>
<br><font size=2><tt>&quot;</tt></font>
<br><font size=2><tt>[debug] Restored session &quot;d0afd16a054c4fc10529ba090040bd8abf84ea1e&quot;</tt></font>
<br><font size=2><tt>[info] Request took 0.086845s (11.515/s)</tt></font>
<br><font size=2><tt>.----------------------------------------------------------------+-----------.</tt></font>
<br><font size=2><tt>| Action &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
| Time &nbsp; &nbsp; &nbsp;|</tt></font>
<br><font size=2><tt>+----------------------------------------------------------------+-----------+</tt></font>
<br><font size=2><tt>| /auto &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp;| 0.005265s |</tt></font>
<br><font size=2><tt>| /index &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
| 0.000049s |</tt></font>
<br><font size=2><tt>| /end &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
| 0.046951s |</tt></font>
<br><font size=2><tt>| &nbsp;-&gt; dtsis::View::TT-&gt;process &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; &nbsp; &nbsp; &nbsp; | 0.045623s |</tt></font>
<br><font size=2><tt>'----------------------------------------------------------------+-----------'</tt></font>
<br>
<br>

<HTML><BODY><P><hr size=1></P><br>
<P><br>
This transmission may contain information that is privileged,<br>
confidential, legally privileged, and/or exempt from disclosure<br>
under applicable law.  If you are not the intended recipient, you<br>
are hereby notified that any disclosure, copying, distribution, or<br>
use of the information contained herein (including any reliance<br>
thereon) is STRICTLY PROHIBITED.  Although this transmission and<br>
any attachments are believed to be free of any virus or other<br>
defect that might affect any computer system into which it is<br>
received and opened, it is the responsibility of the recipient to<br>
ensure that it is virus free and no responsibility is accepted by<br>
JPMorgan Chase & Co., its subsidiaries and affiliates, as<br>
applicable, for any loss or damage arising in any way from its use.<br>
If you received this transmission in error, please immediately<br>
contact the sender and destroy the material in its entirety,<br>
whether in electronic or hard copy format. Thank you.<br>
</P></BODY></HTML>

--=_alternative 0071A919852571BE_=--




More information about the Catalyst mailing list