Extracting particular string in a file and storing matched string in output file

Hi ,
I have input file and i want to extract below strings

<msisdn xmlns="">0492001956</ msisdn> => numaber inside brackets
<resCode>3000</resCode> => 3000 needs to be extracted
<resMessage>Request time
getBalances_PSM.c(37): d out</resMessage></ns2:getBalancesResponse> => the word Request timed out needs to be extarcted

Input file

getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>

getBalances_PSM.c(37): t=169119ms: 342-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=2)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3000</resCode><resMessage>Request time
getBalances_PSM.c(37):     d out</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>

Outputfile: It should be like

0492001956|3000|Requests Timed out

You can use the following code

The file content is <msisdn xmlns="">0492001956</ msisdn> => numaber inside brackets
<resCode>3000</resCode> => 3000 needs to be extracted
<resMessage>Request timed out</resMessage>
</ns2:getBalancesResponse> => the word Request timed out needs to be extarcted

 
use strict;
use warnings;
my($var);
open(FH,"<file1") or die "Can't open";
while($var=<FH>)
{
    if($var=~/<msisdn xmlns="">([0-9]{1,})<\/ msisdn>/)
    {
        print "$1|";
    }
    if($var=~/<resCode>([0-9]{1,})<\/resCode>/)
    {
        print "$1|";
    }
    if($var=~/<resMessage>([a-zA-Z ].*)<\/resMessage>/)
    {
        print "$1\n";
    }
}

The output is
0492001956|3000|Request timed out

Hi,
Thanks for your reply. But I am getting syntax error for first 3 lines in bash shell. I think If we do search line by line it is taking too much of time since input file is big. Is there any way to do using awk or sed command?

Till some one comes up with a better one...
Inputfile:

getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>

getBalances_PSM.c(37): t=169119ms: 342-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=2)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3000</resCode><resMessage>Request time
getBalances_PSM.c(37):     d out</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>

Code:

awk -F: 'NF{for(i=1; ++i<=NF;) printf $i}' infile | awk -F">|<" '{print $4"|"$30"|"$34}'

Output:

0492001956|3000|Request time     d out

I hope you can handle those spaces...

Yet another Perl solution:

$
$
$ cat -n data.txt
     1  getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
     2  getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
     3
     4  getBalances_PSM.c(37): t=169119ms: 342-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=2)
     5  getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
     6  getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
     7  getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3000</resCode><resMessage>Request time
     8  getBalances_PSM.c(37):     d out</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
$
$ perl -lne 'BEGIN{undef $/} s/^.*:\s+|\n//mg; s/^.*<msisdn xmlns="">(\d+)<.*resCode>(\d+)<.*resMessage>([^<]+)<.*$/$1\|$2\|$3/; print' data.txt
0492001956|3000|Request timed out
$
$

tyler_durden

Hi Taylor,
Thanks for your reply. I want same code in shell script not in perl. If you know please send the same.

awk -F ":" '{printf $2}' filename | sed 's/.*<msisdn[^0-9]*\([0-9][0-9]*\)<\/msisdn.*<resCode>\([0-9]*\)<\/resCode.*<resMessage>\(.*\)<\/resMessage.*/\1|\2|\3/g'

cheers,
Devaraj Takhellambam

sed 's/\(<\/.*>\)$//g;s/\(^<.*>\)//g' input

You can use the above code.

Assume that the input file contains the following contents

<msisdn xmlns="">0492001956</msisdn>
<resCode>3000</resCode>
<resMessage>Request timed out</resMessage>
</ns2:getBalancesResponse>

Now the output will be as follows

0492001956
3000
Request timed out

Hi Devaraj,
This code is matching only 1 line matched out put. But I need all matched out puts.

I tried below code and out put file containes only 1 line of matched string

awk -F ":" '{printf $2}' Loadrunner_log.log | sed 's/.*<msisdn[^0-9]*\([0-9][0-9]*\)<\/msisdn.*<resCode>\([0-9]*\)<\/resCode.*<resMessage>\(.*\)<\/resMessage.*/\1|\2|\3/g' >>out.txt

Output:

0492001956|3001|ICC Service is not available.

But I need all matched string in out put file.

Have you tried this???

awk -F: 'NF{for(i=1; ++i<=NF;) printf $i}' infile | awk -F">|<" '{print $4"|"$30"|"$34}' 

Hi Devraj,
Thanks for your reply. I have tried your code like this. It is working but it gives only 1 matched line in input file but I need all matched string to be output to the file in different lines.

awk -F ":" '{printf $2}' Loadrunner_log.log | sed 's/.*<msisdn[^0-9]*\([0-9][0-9]*\)<\/msisdn.*<resCode>\([0-9]*\)<\/resCode.*<resMessage>\(.*\)<\/resMessage.*/\1|\2|\3/g' >>out.txt

out.txt contains only 1 line of matched string
0492001956|3001|ICC Service is not available.

Can you provide a sample of the i/p file with some matching expressions. It will help to derive with a logical pattern.

-Devaraj

---------- Post updated at 05:51 AM ---------- Previous update was at 05:16 AM ----------

If I can make a pattern by the number as in

and differentiating each entry by the number indicated there.

awk -F ":" '$0 !~ /^$/{str=index($1,"(");end=index($1,")");new=substr($0,str+1,end-str-1);if(last != new){print line;line=$2} else line=line" "$2;last=new}END{print line}' filename | sed 's/.*<msisdn[^0-9]*\([0-9][0-9]*\)<\/msisdn.*<resCode>\([0-9]*\)<\/resCode.*<resMessage>\(.*\)<\/resMessage.*/\1|\2|\3/g'

cheers,
Devaraj Takhellambam

Hi ,
This is my sample input file

getBalances_PSM.c(37): t=109010ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=2)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:702fed87-dc46-42dd-bbc1-95b1120b74
getBalances_PSM.c(37):     2b</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=169118ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=2)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 342\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:06:40 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=169119ms: 342-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=2)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3000</resCode><resMessage>Request time
getBalances_PSM.c(37):     d out</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=169119ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 60.1199 Wasted Time: 0.0022).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 2.	[MsgId: MMSG-15965]
Starting iteration 3.	[MsgId: MMSG-15968]
t=217128ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=217130ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=217130ms: Connected socket from 10.144.0.138:53838 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=217138ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=3)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=217139ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=3)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:4fa2e12f-f5e6-477a-af69-148bd77299
getBalances_PSM.c(37):     6a</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=277171ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=3)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 342\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:08:28 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=277172ms: 342-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=3)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3000</resCode><resMessage>Request time
getBalances_PSM.c(37):     d out</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=277172ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 60.0444 Wasted Time: 0.0021).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 3.	[MsgId: MMSG-15965]
Starting iteration 4.	[MsgId: MMSG-15968]
t=325179ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=325181ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=325181ms: Connected socket from 10.144.0.138:57459 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=325189ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=4)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=325189ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=4)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:5b1342ed-299f-470b-aa68-34d63b0118
getBalances_PSM.c(37):     5d</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=385228ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=4)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 342\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:10:16 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=385228ms: 342-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=4)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3000</resCode><resMessage>Request time
getBalances_PSM.c(37):     d out</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=385228ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 60.0496 Wasted Time: 0.0021).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 4.	[MsgId: MMSG-15965]
Starting iteration 5.	[MsgId: MMSG-15968]
t=433230ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=433232ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=433232ms: Connected socket from 10.144.0.138:65360 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=433241ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=5)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=433241ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=5)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:6494352b-2d90-4e58-9372-77ed771514
getBalances_PSM.c(37):     53</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=433278ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=5)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:11:04 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=433278ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=5)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=433279ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0491 Wasted Time: 0.0021).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 5.	[MsgId: MMSG-15965]
Starting iteration 6.	[MsgId: MMSG-15968]
t=481279ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=481281ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=481282ms: Connected socket from 10.144.0.138:3688 to 10.144.0.53:443 in 1 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=481290ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=6)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=481290ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=6)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:1ba03bb8-2418-4f02-97d2-689b825f26
getBalances_PSM.c(37):     80</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=481332ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=6)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:11:52 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=481332ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=6)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=481332ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0537 Wasted Time: 0.0022).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 6.	[MsgId: MMSG-15965]
Starting iteration 7.	[MsgId: MMSG-15968]
t=529343ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=529346ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=529346ms: Connected socket from 10.144.0.138:6381 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=529355ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=7)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=529355ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=7)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:0681d314-4216-4e32-b463-c6bd3a3d3d
getBalances_PSM.c(37):     fd</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=529498ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=7)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:12:40 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=529498ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=7)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=529498ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.1556 Wasted Time: 0.0021).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 7.	[MsgId: MMSG-15965]
Starting iteration 8.	[MsgId: MMSG-15968]
t=577517ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=577519ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=577519ms: Connected socket from 10.144.0.138:9214 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=577528ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=8)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=577528ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=8)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:da3d8577-4d86-4307-a2ea-a6eabee3da
getBalances_PSM.c(37):     17</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=577564ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=8)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:13:28 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=577565ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=8)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=577565ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0485 Wasted Time: 0.0022).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 8.	[MsgId: MMSG-15965]
Starting iteration 9.	[MsgId: MMSG-15968]
t=625581ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=625583ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=625583ms: Connected socket from 10.144.0.138:12067 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=625591ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=9)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=625592ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=9)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:61501fe7-483a-44a2-8037-dd78413ba4
getBalances_PSM.c(37):     26</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=625629ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=9)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:14:16 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=625630ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=9)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=625630ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0493 Wasted Time: 0.0021).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 9.	[MsgId: MMSG-15965]
Starting iteration 10.	[MsgId: MMSG-15968]
t=673646ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=673647ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=673648ms: Connected socket from 10.144.0.138:14878 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=673656ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=10)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=673656ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=10)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:f5925951-a598-492f-8525-84ac9fbfd6
getBalances_PSM.c(37):     b7</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=673691ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=10)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:15:05 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=673691ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=10)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=673691ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0463 Wasted Time: 0.0020).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 10.	[MsgId: MMSG-15965]
Starting iteration 11.	[MsgId: MMSG-15968]
t=721710ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=721712ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=721712ms: Connected socket from 10.144.0.138:17731 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=721720ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=11)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=721720ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=11)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:dd610a57-e018-430c-919c-e1b6b902b4
getBalances_PSM.c(37):     74</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=721754ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=11)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:15:53 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=721755ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=11)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=721755ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0453 Wasted Time: 0.0020).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 11.	[MsgId: MMSG-15965]
Starting iteration 12.	[MsgId: MMSG-15968]
t=769759ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=769761ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=769761ms: Connected socket from 10.144.0.138:20545 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=769769ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=12)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=769769ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=12)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:38d17390-e792-442f-8a8c-28d8053939
getBalances_PSM.c(37):     35</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=769793ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=12)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:16:41 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=769794ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=12)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=769794ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0356 Wasted Time: 0.0019).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 12.	[MsgId: MMSG-15965]
Starting iteration 13.	[MsgId: MMSG-15968]
t=817808ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=817810ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=817810ms: Connected socket from 10.144.0.138:23394 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=817818ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=13)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=817819ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=13)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:752b9f76-f09c-4ec5-93d1-774624f1ff
getBalances_PSM.c(37):     1c</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=817848ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=13)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:17:28 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=817848ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=13)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=817848ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0417 Wasted Time: 0.0021).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Ending iteration 13.	[MsgId: MMSG-15965]
Starting iteration 14.	[MsgId: MMSG-15968]
t=865856ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]
Starting action getBalances_PSM.	[MsgId: MMSG-15919]
getBalances_PSM.c(31): web_add_header("Authorization") started  	[MsgId: MMSG-26355]
getBalances_PSM.c(31): Warning -26593: The header being added may cause unpredictable results when applied to all ensuing URLs. It is added anyway  	[MsgId: MWAR-26593]
getBalances_PSM.c(31): "Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(31): web_add_header("Authorization") highest severity level was "warning"  	[MsgId: MMSG-26391]
getBalances_PSM.c(33): Notify: Transaction "get Balances PSM" started.	[MsgId: MMSG-16999]
getBalances_PSM.c(37): Web service call "GetBalances_101" started	[MsgId: MMSG-108962]
getBalances_PSM.c(37): "SOAPAction: """ header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.2032)" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): "Content-Type: text/xml; charset=utf-8" header registered for adding to requests from the immediately following Action function  	[MsgId: MMSG-26506]
getBalances_PSM.c(37): t=865859ms: Connecting to host 10.144.0.53:443  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=865859ms: Connected socket from 10.144.0.138:26242 to 10.144.0.53:443 in 0 ms  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): t=865867ms: 381-byte request headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=14)
getBalances_PSM.c(37):     POST /apc/webservices/customeraccount HTTP/1.1\r\n
getBalances_PSM.c(37):     Authorization: Basic UFNNX0FQUDpWb2RhMTIzNA==\r\n
getBalances_PSM.c(37):     Content-Type: text/xml; charset=utf-8\r\n
getBalances_PSM.c(37):     Cache-Control: no-cache\r\n
getBalances_PSM.c(37):     SOAPAction: ""\r\n
getBalances_PSM.c(37):     User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol 1.1.4322.20
getBalances_PSM.c(37):     32)\r\n
getBalances_PSM.c(37):     Accept-Encoding: gzip, deflate\r\n
getBalances_PSM.c(37):     Accept: */*\r\n
getBalances_PSM.c(37):     Connection: Keep-Alive\r\n
getBalances_PSM.c(37):     Host: 10.144.0.53\r\n
getBalances_PSM.c(37):     Content-Length: 845\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=865867ms: 845-byte request body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=14)
getBalances_PSM.c(37):     <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.or
getBalances_PSM.c(37):     g/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://
getBalances_PSM.c(37):     www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"><s
getBalances_PSM.c(37):     oap:Header><wsa:Action></wsa:Action><wsa:MessageID>uuid:287d6293-29fb-4a6e-b5d7-4b77e96cac
getBalances_PSM.c(37):     b8</wsa:MessageID><wsa:ReplyTo><wsa:Address>http://schemas.xmlsoap.org/ws/2004/03/addressi
getBalances_PSM.c(37):     ng/role/anonymous</wsa:Address></wsa:ReplyTo><wsa:To>https://10.144.0.53/apc/webservices/c
getBalances_PSM.c(37):     ustomeraccount</wsa:To></soap:Header><soap:Body><getBalances xmlns="http://www.al.com/apc/
getBalances_PSM.c(37):     generated/services/customeraccount"><serviceProviderID xmlns="">VODAFONE</serviceProviderI
getBalances_PSM.c(37):     D><msisdn xmlns="">0492001956</msisdn><counterListFlag xmlns="">0</counterListFlag></getBa
getBalances_PSM.c(37):     lances></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=865899ms: 258-byte response headers for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=14)
getBalances_PSM.c(37):     HTTP/1.1 200 OK\r\n
getBalances_PSM.c(37):     Server: Apache-Coyote/1.1\r\n
getBalances_PSM.c(37):     X-Powered-By: Servlet 2.4; JBoss-4.3.0.GA_CP04 (build: SVNTag=JBPAPP_4_3_0_GA_CP04 date=20
getBalances_PSM.c(37):     0902200048)/JBossWeb-2.0\r\n
getBalances_PSM.c(37):     Content-Type: text/xml;charset=UTF-8\r\n
getBalances_PSM.c(37):     Content-Length: 354\r\n
getBalances_PSM.c(37):     Date: Tue, 02 Mar 2010 04:18:17 GMT\r\n
getBalances_PSM.c(37):     \r\n
getBalances_PSM.c(37): t=865899ms: 354-byte response body for "https://10.144.0.53/apc/webservices/customeraccount" (RelFrameId=1, Internal ID=14)
getBalances_PSM.c(37):     <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:getB
getBalances_PSM.c(37):     alancesResponse xmlns:ns2="http://www.al.com/apc/generated/services/customeraccount"><bund
getBalances_PSM.c(37):     leList/><accountLocation></accountLocation><resCode>3001</resCode><resMessage>ICC Service 
getBalances_PSM.c(37):     is not available.</resMessage></ns2:getBalancesResponse></soap:Body></soap:Envelope>
getBalances_PSM.c(37): t=865899ms: Request done "https://10.144.0.53/apc/webservices/customeraccount"  	[MsgId: MMSG-26000]
getBalances_PSM.c(37): Web service call "GetBalances_101" was successful	[MsgId: MMSG-108950]
getBalances_PSM.c(55): Notify: Transaction "get Balances PSM" ended with "Pass" status (Duration: 0.0439 Wasted Time: 0.0027).	[MsgId: MMSG-16871]
getBalances_PSM.c(57): lr_think_time: 48.00 seconds.	[MsgId: MMSG-15948]
Ending action getBalances_PSM.	[MsgId: MMSG-15918]
Action was aborted.	[MsgId: MMSG-10694]
Ending Vuser...	[MsgId: MMSG-15966]
Starting action vuser_end.	[MsgId: MMSG-15919]
Ending action vuser_end.	[MsgId: MMSG-15918]
Vuser Terminated.	[MsgId: MMSG-15963]
t=913905ms: Closed connection to 10.144.0.53:443 after completing 1 request  	[MsgId: MMSG-26000]

[/CODE][/CODE]

Something like this ?

$
$
$ perl -lne 'BEGIN{undef $/} s/^.*?:\s+|\n//mg;
             while (/<msisdn xmlns="">(\d+)<.*?resCode>(\d+)<.*?resMessage>(.*?)</msg) {print "$1|$2|$3"}' data_1.txt
0492001956|3000|Request timed out
0492001956|3000|Request timed out
0492001956|3000|Request timed out
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
0492001956|3001|ICC Service is not available.
$
$

tyler_durden

Hi Tyler,
Thanks a lot for your Perl script. This is what i wanted.

Thanks and Regrads,
Sushma