Problem : They are Two scripts
Script A : Scans for the propertires and stores in a disks
Script B : loads the file and start's creating the objects ("not able to create objects");
If i remove storable perl library or disable any of the function related to the library objects are getting created
Code snippet :
use Storable;
use VMware::VIRuntime;
my $url = "https://".$desip."/sdk/vimService";
Util::connect($url , $desur, $despwd);
my $hashref = retrieve('file');
# Creating a Sample object
my $cpu = ResourceAllocationInfo->new ();
o/p:
perl storable-error.pl
Undefined subroutine &ResourceAllocationInfo::new called at storable-error.pl line 27.
Even tried DBM:DEEP facing the same issue Could any one help me out with the issue Thank you