Hi folks, it's been a while...
I've got a module that's two-steps down the inheritence tree from a Tied module of my own devising. It's autogenerated from an xml file using Template Toolkit, as are other modules that don't seem to be having this problem. Let's begin with the error message:
Can't locate object method "TIEHASH" via package "Resources::Action::V
+iew" at /home/v2/cms/Shared/lib/Resource/Base.pm line 251.
Looking at line 251, we have:
$object = tie( %hash, "Resources::$object_properties->{type}" );
pretty straightforward. We're calling TIEHASH through the Resources::Action::View package.
Looking in the modules, we see:
package Resources::Action::View;
use base 'Resource::Base';
...and...
package Resource::Base;
use base 'Resource::Tied';
...and...
package Resource::Tied;
...which contains:
sub TIEHASH {
return bless( {}, shift );
}
which all leaves me wondering where the typo is. Any ideas why the child class can't find the TIEHASH method?
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.
|