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


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Extracting particular string in a file and storing matched string in output file
# 8  
Old 03-10-2010
Code:
sed 's/\(<\/.*>\)$//g;s/\(^<.*>\)//g' input

You can use the above code.

Assume that the input file contains the following contents
Code:
<msisdn xmlns="">0492001956</msisdn>
<resCode>3000</resCode>
<resMessage>Request timed out</resMessage>
</ns2:getBalancesResponse>

Now the output will be as follows
Code:
0492001956
3000
Request timed out

# 9  
Old 03-10-2010
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.
# 10  
Old 03-10-2010
Have you tried this???

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

# 11  
Old 03-10-2010
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.

Code:
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.
# 12  
Old 03-10-2010
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
Quote:
getBalances_PSM.c(37):
and differentiating each entry by the number indicated there.

Code:
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
# 13  
Old 03-10-2010
Hi ,
This is my sample input file

Code:
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 r
Code:
equest  	[MsgId: MMSG-26000]

[/CODE]
# 14  
Old 03-10-2010
Something like this ?

Code:
$
$
$ 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
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Finding specific string in file and storing in another file

Text in input file is like this <title> <band height="21" isSplitAllowed="true" > <staticText> <reportElement x="1" y="1" width="313" height="20" key="staticText-1"/> <box></box> <textElement> <font fontName="Arial" pdfFontName="Helvetica-Bold"... (4 Replies)
Discussion started by: aankita30
4 Replies

2. Shell Programming and Scripting

Insert a user input string after matched string in file

i am having file like this #!/bin/bash read -p 'Username: ' uservar match='<color="red" />' text='this is only a test so please be patient <color="red" />' echo "$text" | sed "s/$match/&$uservar\g" so desireble output what i want is if user type MARIA this is only a test so please... (13 Replies)
Discussion started by: tomislav91
13 Replies

3. UNIX for Beginners Questions & Answers

Search a string inside a pattern matched block of a file

How to grep for searching a string within a begin and end pattern of a file. Sent from my Redmi 3S using Tapatalk (8 Replies)
Discussion started by: Baishali
8 Replies

4. Shell Programming and Scripting

Search for Pattern as output between the matched String

Hello, I have a file which has the below contents : VG_name LV_name LV_size in MB LV_option LV_mountpoint owner group y testdg rahul2lv 10 "-A y -L" /home/abc2 ... (6 Replies)
Discussion started by: rahul2662
6 Replies

5. UNIX for Dummies Questions & Answers

Commenting a line matched with a specific string in a file

Hi, I would like to comment a line that matched a string "sreenivas" in a file without opening it. Thanks in advance. Regards, Sreenivas (3 Replies)
Discussion started by: raosr020
3 Replies

6. UNIX for Dummies Questions & Answers

Output text from 1st paragraph in file w/ a specific string through last paragraph of file w/ string

Hi, I'm trying to output all text from the first paragraph in a file that contains a specific string through the last paragraph in that file that contains that string. Previously, I was outputting just each paragraph with that search string with: cat in_file | nawk '{RS=""; FS="\n";... (2 Replies)
Discussion started by: carpenn
2 Replies

7. Shell Programming and Scripting

save every line in log file with matched string

i have been doing this script to match every line in a current log file (access_log) with strings that i list from a path (consist of 100 of user's name ex: meggae ).. and then make a directory of every string from the text file (/path/meggae/) --->if it matched.. then print every line from the... (3 Replies)
Discussion started by: meggae
3 Replies

8. Shell Programming and Scripting

Extracting a string from one file and searching the same string in other files

Hi, Need to extract a string from one file and search the same in other files. Ex: I have file1 of hundred lines with no delimiters not even space. I have 3 more files. I should get 1 to 10 characters say substring from each line of file1 and search that string in rest of the files and get... (1 Reply)
Discussion started by: mohancrr
1 Replies

9. Shell Programming and Scripting

sed, grep, awk, regex -- extracting a matched substring from a file/string

Ok, I'm stumped and can't seem to find relevant info. (I'm not even sure, I might have asked something similar before.): I'm trying to use shell scripting/UNIX commands to extract URLs from a fairly large web page, with a view to ultimately wrapping this in PHP with exec() and including the... (2 Replies)
Discussion started by: ropers
2 Replies
Login or Register to Ask a Question