I have a xml contains tag like user name="XYZ\ABC" realname="ABC" email="ABC@yahoo.com" role="Editor"Now I want a name by sending realname. For that I want to use TeamSite\Team.pm. Can anyone tell me which function does this?Thanks in advance.Regards,Jay.
Thanks for reply.Please find the attchment of Team.pm
Thanks for reply. Please find the attchment of Team.pm
...open(IN, '<', $config) || die " $config ($!)";my $confxml = do { local $/; <IN>; };close(IN);
...my $confobj = TeamSite::Team->new($confxml);my $real_name = $confobj->getUserRealName($userid);my $email = $confobj->getUserEmail($userid);...