From pyuergens@... Mon May 19 18:15:05 2003
Return-Path: <pyuergens@...>
X-Sender: pyuergens@...
X-Apparently-To: soaplite@yahoogroups.com
Received: (EGP: mail-8_2_6_6); 20 May 2003 01:15:04 -0000
Received: (qmail 56333 invoked from network); 20 May 2003 01:01:34 -0000
Received: from unknown (66.218.66.218)
by m10.grp.scd.yahoo.com with QMQP; 20 May 2003 01:01:34 -0000
Received: from unknown (HELO n19.grp.scd.yahoo.com) (66.218.66.74)
by mta3.grp.scd.yahoo.com with SMTP; 20 May 2003 01:01:34 -0000
Received: from [66.218.67.139] by n19.grp.scd.yahoo.com with NNFMP; 20 May 2003 01:00:48 -0000
Date: Tue, 20 May 2003 01:00:48 -0000
To: soaplite@yahoogroups.com
Subject: Accessing Data within XML tag (not between two tags)
Message-ID: <babuo0+21fh@eGroups.com>
User-Agent: eGroups-EW/0.82
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Length: 2883
X-Mailer: Yahoo Groups Message Poster
From: "pyuergens" <pyuergens@...>
X-Originating-IP: 164.67.14.54
X-Yahoo-Group-Post: member; u=126476877
X-Yahoo-Profile: pyuergens
Greetings,
I am using SOAP::Lite as client on linux and connecting to a Windows SOAP
server.
I was having trouble accessing data within a tag like this:
<attribute name="LastName" value="JONES" />
I cannot access the value "JONES" for a LastName".
I am able to access data between two tags like this:
<ticket>reallylongticketnumber</ticket>
using this code:
my $result = $soap->call($method => @params);
print $result->valueof('//VerifySessionResponse/iwsResponse/sessionInfo/
ticket');
I would greatly appreciate any help. My perl code and the server's xml
response are listed below.
Greetings, I am using SOAP::Lite as client on linux and connecting to a Windows SOAP server. I was having trouble accessing data within a tag like this: ...