- From: Philippe Le Hegaret via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 09 Jul 2007 20:33:19 +0000
- To: public-ws-addressing-eds@w3.org
Update of /sources/public/2004/ws/addressing/testsuite/logs In directory hutz:/tmp/cvs-serv18419/logs Added Files: .htaccess Makefile Overview.html add-testcase.xslt example-ws-i.xml example.xml example.xsl fix-message-number.xslt ibm-ibm.xml logs.xsl raw-log-testcases.xml raw-log.xml tidy-output.txt Log Message: Moved from cvs.w3.org --- NEW FILE: add-testcase.xslt --- <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:log="http://www.w3.org/2002/ws/addressing/logs/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> <xsl:template match="* | comment()"> <xsl:copy> <xsl:apply-templates select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> <xsl:template match="log:message[@type='request']"> <xsl:copy> <xsl:call-template name="testcase-attribute"/> <xsl:apply-templates select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> <xsl:template match="log:message[@type='response']"> <xsl:copy> <xsl:for-each select="preceding-sibling::log:message[1][@type='request']"> <xsl:call-template name="testcase-attribute"/> </xsl:for-each> <xsl:apply-templates select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> <xsl:template name="testcase-attribute"> <xsl:variable name="testname" select="translate(.//*[local-name()='Body'],'TESFAUL','tesfaul')"/> <xsl:attribute name="testcase"><xsl:choose><xsl:when test="starts-with($testname,'fault-')"><xsl:value-of select="substring-after($testname,'fault-')"/></xsl:when><xsl:when test="starts-with($testname,'fault')"><xsl:value-of select="substring-after($testname,'fault')"/></xsl:when><xsl:otherwise><xsl:value-of select="$testname"/></xsl:otherwise></xsl:choose></xsl:attribute> </xsl:template> <xsl:template match="@*"> <xsl:copy-of select="."/> </xsl:template> </xsl:stylesheet> --- NEW FILE: tidy-output.txt --- line 2 column 1 - Warning: <html> proprietary attribute "xmlns:l" line 2 column 1 - Warning: <html> proprietary attribute "xmlns:tc" Info: Doctype given is "-//W3C//DTD HTML 4.01 Transitional//EN" Info: Document content looks like HTML Proprietary 2 warnings, 0 errors were found! To learn more about HTML Tidy see http://tidy.sourceforge.net Please send bug reports to html-tidy@w3.org HTML and CSS specifications are available from http://www.w3.org/ Lobby your company to join W3C, see http://www.w3.org/Consortium --- NEW FILE: fix-message-number.xslt --- <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:log="http://www.w3.org/2002/ws/addressing/logs/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> <xsl:template match="* | comment()"> <xsl:copy> <xsl:apply-templates select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> <xsl:template match="log:message"> <xsl:copy> <xsl:apply-templates select="@*"/> <xsl:attribute name="message"><xsl:value-of select="count(preceding-sibling::log:message[@testcase=current()/@testcase])+1"/></xsl:attribute> <xsl:apply-templates/> </xsl:copy> </xsl:template> <xsl:template match="@*"> <xsl:copy-of select="."/> </xsl:template> </xsl:stylesheet> --- NEW FILE: example.xml --- <?xml version="1.0" encoding="utf-8"?> <log xmlns="http://www.w3.org/2002/ws/addressing/logs/" xmlns:s="http://www.w3.org/2002/ws/addr/testsuite/testcases/"> <message testcase="test1100" message="1" context="13"> <content href="../documents/notify/soap11/message0.xml"> <!-- $Id: example.xml,v 1.1 2007/07/09 20:33:17 plehegar Exp $ --> <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsa="http://www.w3.org/2005/08/addressing"> <env:Header> <wsa:To>http://example.org/node/A</wsa:To> <wsa:Action>http://example.org/action/notify</wsa:Action> </env:Header> <env:Body> <m:notify xmlns:m="http://example.org/notify">Message</m:notify> </env:Body> </env:Envelope> </content> </message> <message testcase="test1200" message="1" context="14"> <content href="../documents/notify/soap12/message0.xml"> <!-- $Id: example.xml,v 1.1 2007/07/09 20:33:17 plehegar Exp $ --> [...1698 lines suppressed...] </env:Body> </env:Envelope> </content> </message> <message testcase="test1270" message="2" context="67"> <content href="../documents/echo/soap12/reply1.xml"> <!-- $Id: example.xml,v 1.1 2007/07/09 20:33:17 plehegar Exp $ --> <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:wsa="http://www.w3.org/2005/08/addressing"> <env:Header> <wsa:Action>http://example.org/action/echoOut</wsa:Action> <wsa:MessageID>urn:uuid:192B04AC-60BD-44E4-971A-113D3DB170D3</wsa:MessageID> <wsa:RelatesTo>urn:uuid:6175992B-1EC9-42AA-9C18-C0C9F2E6B9DD</wsa:RelatesTo> </env:Header> <env:Body> <m:echoOut xmlns:m="http://example.org/echo">Echo This Text</m:echoOut> </env:Body> </env:Envelope> </content> </message> </log> --- NEW FILE: .htaccess --- <Files ~ "\.html"> ForceType 'text/html; charset=utf-8' </Files> --- NEW FILE: example-ws-i.xml --- <?xml version="1.0" encoding="UTF-8"?> <l:log xmlns:l="http://www.w3.org/2002/ws/addressing/logs/"> <l:message xmlns:wsi-log303="http://www.ws-i.org/testing/2003/03/log/" xmlns:wsi-log407="http://www.ws-i.org/testing/2004/07/log/" testcase="test1100" timestamp="2006-01-17T22:26:20.234" conversation="1" wsi-log303:ID="1" type="request" message="1"> <l:content><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soapenv:Header><wsa:To>http://192.168.1.69:8001/wsaiop/services/wsaTestSoap11Endpoint</wsa:To><wsa:Action>http://example.org/action/notify</wsa:Action><wsa:MessageID>uuid:DA79C79B-0108-4000-E000-1700C0A80145</wsa:MessageID></soapenv:Header><soapenv:Body><m:notify xmlns:m="http://example.org/notify">test1100</m:notify></soapenv:Body></soapenv:Envelope></l:content> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">192.168.1.69:3436</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">POST /wsaiop/services/wsaTestSoap11Endpoint HTTP/1.1 Host: 192.168.1.69:8001 Accept: application/soap+xml,multipart/related,text/* User-Agent: IBM WebServices/1.0 Cache-Control: no-cache Pragma: no-cache SOAPAction: "http://example.org/action/notify" Connection: Keep-Alive Content-Type: text/xml; charset=utf-8 Content-Length: 783 Date: Tue, 17 Jan 2006 22:26:19 GMT </httpHeaders> [...1199 lines suppressed...] Connection: Keep-Alive Content-Type: application/soap+xml; charset=utf-8;action=""; Content-Length: 896 Date: Tue, 17 Jan 2006 22:26:27 GMT </httpHeaders> </l:message> <l:message xmlns:wsi-log303="http://www.ws-i.org/testing/2003/03/log/" xmlns:wsi-log407="http://www.ws-i.org/testing/2004/07/log/" testcase="test1250" timestamp="2006-01-17T22:26:27.969" conversation="2" wsi-log303:ID="64" type="response" message="4"> <l:content/> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">127.0.0.1:3438</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">HTTP/1.1 200 OK Content-Length: 0 Content-Language: en-GB Server: WebSphere Application Server/7.0 Date: Tue, 17 Jan 2006 22:26:27 GMT </httpHeaders> </l:message> </l:log> --- NEW FILE: Makefile --- # -*- makefile -*- XSLTPROC=xsltproc TIDY=tidy all: Overview.html example.xml example-ws-i.xml Overview.html: ../report/logs.xml logs.xsl Makefile ../address.xml @echo "Generating $@";\ $(XSLTPROC) --stringparam file :w.xml logs.xsl ../report/logs.xml > $@ @echo "Running tidy on $@";\ sed -e 's/<l:a /<a /g' -e 's/<\/l:a>/<\/a>/g' < $@ > $@.old; \ $(TIDY) -utf8 $@.old > $@ 2>./tidy-output.txt;\ rm $@.old example.xml: ../testcases/testcases.xml example.xsl ../documents/*/* ../documents/*/*/* @echo "Generating $@";\ $(XSLTPROC) --stringparam file :w.xml example.xsl ../testcases/testcases.xml > $@ example-ws-i.xml: ws-i/log.xml ws-i/ws-i.xsl ws-i/ws-i-sort.xsl add-testcase.xslt Makefile $(XSLTPROC) --stringparam file :w.xml ws-i/ws-i.xsl ws-i/log.xml > raw-log.xml $(XSLTPROC) --stringparam file :w.xml ws-i/ws-i-sort.xsl raw-log.xml > raw-log-sorted.xml $(XSLTPROC) --stringparam file :w.xml add-testcase.xslt raw-log-sorted.xml > raw-log-testcases.xml $(XSLTPROC) --stringparam file :w.xml fix-message-number.xslt raw-log-testcases.xml > $@ clean: rm -f *~* raw-log.xml html2ps.dbg ./valid-html.txt ./valid-xml.txt ./checkspell.txt ./valid-links.txt ./valid-pubrules.html ./valid-ns.html ./tidy-output.txt .PHONY: clean all --- NEW FILE: logs.xsl --- <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:l="http://www.w3.org/2002/ws/addr/testsuite/logs/" xmlns:tc="http://www.w3.org/2002/ws/addr/testsuite/testcases/" version="1.0"> <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" indent="no"/> <xsl:template match="/"> <html> <head> <title>Web Services Addressing 1.0 - Captured Log Files</title> <link href="http://www.w3.org/StyleSheets/public" rel="stylesheet" type="text/css"/> <link href="../../../../StyleSheets/public" rel="stylesheet" type="text/css"/> <link rel="stylesheet" type="text/css" href="../../../wsa-style.css"/> <link rel="stylesheet" type="text/css" href="../../public-style.css"/> <link href="../testsuite.css" rel="stylesheet" type="text/css" /> </head> <body> <h1>Web Services Addressing 1.0 - Captured Log Files</h1> <ul> <xsl:for-each select="l:logs/l:log"> <li> <a name="{@xml:id}"></a> <a href="{@file}"><xsl:value-of select="@file"/></a> - <xsl:copy-of select="l:title/node()"/> </li> </xsl:for-each> </ul> <hr/> <p> Generated from <a href="../report/logs.xml">logs.xml</a> using <a href="logs.xsl">logs.xsl</a>.<br/> $Date: 2007/07/09 20:33:17 $ </p> <xsl:copy-of select="document('../address.xml')/suffix/*"/> </body> </html> </xsl:template> </xsl:stylesheet> --- NEW FILE: Overview.html --- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns:l="http://www.w3.org/2002/ws/addr/testsuite/logs/" xmlns:tc="http://www.w3.org/2002/ws/addr/testsuite/testcases/"> <head> <meta name="generator" content= "HTML Tidy for Mac OS X (vers 12 April 2005), see www.w3.org"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Web Services Addressing 1.0 - Captured Log Files</title> <link href="http://www.w3.org/StyleSheets/public" rel="stylesheet" type="text/css"> <link href="../../../../StyleSheets/public" rel="stylesheet" type= "text/css"> <link rel="stylesheet" type="text/css" href= "../../../wsa-style.css"> <link rel="stylesheet" type="text/css" href= "../../public-style.css"> <link href="../testsuite.css" rel="stylesheet" type="text/css"> </head> <body> <h1>Web Services Addressing 1.0 - Captured Log Files</h1> <ul> <li><a name="IBM-IBM-Axis"></a><a href= "../report/IBM-IBM-Axis.xml">../report/IBM-IBM-Axis.xml</a> - IBM capture from IBM to Axis.</li> <li><a name="IBM-IBM-IBM"></a><a href= "../report/IBM-IBM-IBM.xml">../report/IBM-IBM-IBM.xml</a> - IBM capture from IBM to IBM.</li> <li><a name="IBM-IBM-JBoss"></a><a href= "../report/IBM-IBM-JBoss.xml">../report/IBM-IBM-JBoss.xml</a> - IBM capture from IBM to JBoss.</li> <li><a name="IBM-IBM-Microsoft"></a><a href= "../report/IBM-IBM-Microsoft.xml">../report/IBM-IBM-Microsoft.xml</a> - IBM capture from IBM to Microsoft.</li> <li><a name="IBM-IBM-Sun"></a><a href= "../report/IBM-IBM-Sun.xml">../report/IBM-IBM-Sun.xml</a> - IBM capture from IBM to Sun.</li> <li><a name="WSO2-IBM-WSO2"></a><a href= "../report/WSO2-IBM-WSO2.xml">../report/WSO2-IBM-WSO2.xml</a> - WSO2 capture from IBM to WSO2.</li> <li><a name="JBoss-JBoss-Axis"></a><a href= "../report/JBoss-JBoss-Axis.xml">../report/JBoss-JBoss-Axis.xml</a> - JBoss capture from JBoss to Axis.</li> <li><a name="JBoss-JBoss-IBM"></a><a href= "../report/JBoss-JBoss-IBM.xml">../report/JBoss-JBoss-IBM.xml</a> - JBoss capture from JBoss to IBM.</li> <li><a name="JBoss-JBoss-JBoss"></a><a href= "../report/JBoss-JBoss-JBoss.xml">../report/JBoss-JBoss-JBoss.xml</a> - JBoss capture from JBoss to JBoss.</li> <li><a name="JBoss-JBoss-Microsoft"></a><a href= "../report/JBoss-JBoss-Microsoft.xml">../report/JBoss-JBoss-Microsoft.xml</a> - JBoss capture from JBoss to Microsoft.</li> <li><a name="JBoss-JBoss-Sun"></a><a href= "../report/JBoss-JBoss-Sun.xml">../report/JBoss-JBoss-Sun.xml</a> - JBoss capture from JBoss to Sun.</li> <li><a name="JBoss-JBoss-WSO2"></a><a href= "../report/JBoss-JBoss-WSO2.xml">../report/JBoss-JBoss-WSO2.xml</a> - JBoss capture from JBoss to WSO2.</li> <li><a name="Microsoft-Microsoft-Axis"></a><a href= "../report/Microsoft-Microsoft-Axis.xml">../report/Microsoft-Microsoft-Axis.xml</a> - Microsoft capture from Microsoft to Axis.</li> <li><a name="Microsoft-Microsoft-IBM"></a><a href= "../report/Microsoft-Microsoft-IBM.xml">../report/Microsoft-Microsoft-IBM.xml</a> - Microsoft capture from Microsoft to IBM.</li> <li><a name="Microsoft-Microsoft-JBoss"></a><a href= "../report/Microsoft-Microsoft-JBoss.xml">../report/Microsoft-Microsoft-JBoss.xml</a> - Microsoft capture from Microsoft to JBoss.</li> <li><a name="Microsoft-Microsoft-Microsoft"></a><a href= "../report/Microsoft-Microsoft-Microsoft.xml">../report/Microsoft-Microsoft-Microsoft.xml</a> - Microsoft capture from Microsoft to Microsoft.</li> <li><a name="Microsoft-Microsoft-Sun"></a><a href= "../report/Microsoft-Microsoft-Sun.xml">../report/Microsoft-Microsoft-Sun.xml</a> - Microsoft capture from Microsoft to Sun.</li> <li><a name="Microsoft-Microsoft-WSO2"></a><a href= "../report/Microsoft-Microsoft-WSO2.xml">../report/Microsoft-Microsoft-WSO2.xml</a> - Microsoft capture from Microsoft to WSO2.</li> <li><a name="IBM-Sun-Axis"></a><a href= "../report/IBM-Sun-Axis.xml">../report/IBM-Sun-Axis.xml</a> - IBM capture from Sun to Axis.</li> <li><a name="IBM-Sun-IBM"></a><a href= "../report/IBM-Sun-IBM.xml">../report/IBM-Sun-IBM.xml</a> - IBM capture from Sun to IBM.</li> <li><a name="IBM-Sun-JBoss"></a><a href= "../report/IBM-Sun-JBoss.xml">../report/IBM-Sun-JBoss.xml</a> - IBM capture from Sun to JBoss.</li> <li><a name="IBM-Sun-Microsoft"></a><a href= "../report/IBM-Sun-Microsoft.xml">../report/IBM-Sun-Microsoft.xml</a> - IBM capture from Sun to Microsoft.</li> <li><a name="Sun-Sun-Sun"></a><a href= "../report/Sun-Sun-Sun.xml">../report/Sun-Sun-Sun.xml</a> - Sun capture from Sun to Sun.</li> <li><a name="WSO2-Sun-WSO2"></a><a href= "../report/WSO2-Sun-WSO2.xml">../report/WSO2-Sun-WSO2.xml</a> - WSO2 capture from Sun to WSO2.</li> <li><a name="WSO2-WSO2-Axis"></a><a href= "../report/WSO2-WSO2-Axis.xml">../report/WSO2-WSO2-Axis.xml</a> - WSO2 capture from WSO2 to Axis.</li> <li><a name="WSO2-WSO2-IBM"></a><a href= "../report/WSO2-WSO2-IBM.xml">../report/WSO2-WSO2-IBM.xml</a> - WSO2 capture from WSO2 to IBM.</li> <li><a name="WSO2-WSO2-JBoss"></a><a href= "../report/WSO2-WSO2-JBoss.xml">../report/WSO2-WSO2-JBoss.xml</a> - WSO2 capture from WSO2 to JBoss.</li> <li><a name="WSO2-WSO2-Microsoft"></a><a href= "../report/WSO2-WSO2-Microsoft.xml">../report/WSO2-WSO2-Microsoft.xml</a> - WSO2 capture from WSO2 to Microsoft.</li> <li><a name="WSO2-WSO2-Sun"></a><a href= "../report/WSO2-WSO2-Sun.xml">../report/WSO2-WSO2-Sun.xml</a> - WSO2 capture from WSO2 to Sun.</li> <li><a name="WSO2-WSO2-WSO2"></a><a href= "../report/WSO2-WSO2-WSO2.xml">../report/WSO2-WSO2-WSO2.xml</a> - WSO2 capture from WSO2 to WSO2.</li> <li><a name="example"></a><a href="example.xml">example.xml</a> - log file generated from <a xmlns= "http://www.w3.org/2002/ws/addr/testsuite/logs/" href= "../testcases/">testcases</a> and example <a xmlns= "http://www.w3.org/2002/ws/addr/testsuite/logs/" href= "../documents/">documents</a>.</li> <li><a name="example-ws-i"></a><a href= "example-ws-i.xml">example-ws-i.xml</a> - log file generated from an example WS-I Monitor log file using a <a xmlns= "http://www.w3.org/2002/ws/addr/testsuite/logs/" href= "ws-i/ws-i.xsl">stylesheet</a></li> </ul> <hr> <p>Generated from <a href="../report/logs.xml">logs.xml</a> using <a href="logs.xsl">logs.xsl</a>.<br> $Date: 2007/07/09 20:33:17 $</p> <address><a href="../">Web Services Addressing Test Suite</a><br> <br> <a href="mailto:paul.downey@bt.com">Paul Downey</a>, <a href= "mailto:david.illsley@uk.ibm.com.com">David Illsley</a>, <a href= "mailto:jmarsh@microsoft.com">Jonathan Marsh</a>, Editors<br> <a href="mailto:bob.freund@hitachisoftware.com">Bob Freund</a>, Chair<br> <br> <a href="/People/Hugo/">Hugo Haas</a>, <a href= "/People/LeHegaret/">Philippe Le Hégaret</a>, W3C Team contacts<br></address> <p class="copyright"><a rel="Copyright" href= "/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2006 <a href="/"><acronym title= "World Wide Web Consortium">W3C</acronym></a> <sup>®</sup> ( <a href="http://www.csail.mit.edu/"><acronym title= "Massachusetts Institute of Technology">MIT</acronym></a> , <a href="http://www.ercim.org/"><acronym title= "European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a> ,<a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href= "/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href= "/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>, <a rel="Copyright" href= "/Consortium/Legal/copyright-documents">document use</a> and <a rel="Copyright" href= "/Consortium/Legal/copyright-software">software licensing</a> rules apply. Your interactions with this site are in accordance with our <a href="/Consortium/Legal/privacy-statement#Public">public</a> and<a href="/Consortium/Legal/privacy-statement#Members">Member</a> privacy statements.</p> </body> </html> --- NEW FILE: ibm-ibm.xml --- <?xml version="1.0" encoding="UTF-8"?> <log xmlns="http://www.w3.org/2002/ws/addressing/logs/" xmlns:wsi-log="http://www.ws-i.org/testing/2003/03/log/"> <message testcase="test1100" timestamp="2006-01-17T22:26:20.234" conversation="1" wsi-log:ID="1" wsi-log:type="request" message="1"> <content><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soapenv:Header><wsa:To>http://192.168.1.69:8001/wsaiop/services/wsaTestSoap11Endpoint</wsa:To><wsa:Action>http://example.org/action/notify</wsa:Action><wsa:MessageID>uuid:DA79C79B-0108-4000-E000-1700C0A80145</wsa:MessageID></soapenv:Header><soapenv:Body><m:notify xmlns:m="http://example.org/notify">test1100</m:notify></soapenv:Body></soapenv:Envelope></content> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">192.168.1.69:3436</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">POST /wsaiop/services/wsaTestSoap11Endpoint HTTP/1.1 Host: 192.168.1.69:8001 Accept: application/soap+xml,multipart/related,text/* User-Agent: IBM WebServices/1.0 Cache-Control: no-cache Pragma: no-cache SOAPAction: "http://example.org/action/notify" Connection: Keep-Alive Content-Type: text/xml; charset=utf-8 Content-Length: 783 Date: Tue, 17 Jan 2006 22:26:19 GMT </httpHeaders> [...1199 lines suppressed...] Connection: Keep-Alive Content-Type: application/soap+xml; charset=utf-8;action=""; Content-Length: 896 Date: Tue, 17 Jan 2006 22:26:27 GMT </httpHeaders> </message> <message testcase="test1100" timestamp="2006-01-17T22:26:27.969" conversation="2" wsi-log:ID="64" wsi-log:type="response" message="2"> <content/> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">127.0.0.1:3438</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">HTTP/1.1 200 OK Content-Length: 0 Content-Language: en-GB Server: WebSphere Application Server/7.0 Date: Tue, 17 Jan 2006 22:26:27 GMT </httpHeaders> </message> </log> --- NEW FILE: example.xsl --- <?xml version="1.0"?> <!-- Generate example log file format from testcases $Header: /sources/public/2004/ws/addressing/testsuite/logs/example.xsl,v 1.1 2007/07/09 20:33:17 plehegar Exp $ --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s="http://www.w3.org/2002/ws/addr/testsuite/testcases/" version="1.0"> <xsl:output method="xml" encoding="utf-8" indent="yes"/> <xsl:template match="/"> <log xmlns="http://www.w3.org/2002/ws/addressing/logs/"> <xsl:for-each select="s:testcases/s:testcase"> <xsl:variable name="context"> <xsl:number count="*" format="1"/> </xsl:variable> <xsl:for-each select="s:message-exchange/s:message"> <xsl:variable name="number"> <xsl:number count="*" format="1"/> </xsl:variable> <xsl:choose> <xsl:when test="@name"> <message testcase="{../../@xml:id}" message="{$number}" context="{$context}"> <xsl:variable name="file">../documents/<xsl:value-of select="./@document"/></xsl:variable> <!-- http://www.xml.com/pub/a/2003/08/20/embedded.html --> <content href="{$file}" ><xsl:copy-of select="document($file)"/></content> </message> </xsl:when> </xsl:choose> </xsl:for-each> </xsl:for-each> </log> </xsl:template> </xsl:stylesheet> --- NEW FILE: raw-log.xml --- <?xml version="1.0"?> <l:log xmlns:l="http://www.w3.org/2002/ws/addressing/logs/" xmlns:wsi-log303="http://www.ws-i.org/testing/2003/03/log/" xmlns:wsi-log407="http://www.ws-i.org/testing/2004/07/log/"> <l:message timestamp="2006-01-17T22:26:20.234" conversation="1" wsi-log303:ID="1" type="request"> <l:content><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soapenv:Header><wsa:To xmlns:wsa="http://www.w3.org/2005/08/addressing">http://192.168.1.69:8001/wsaiop/services/wsaTestSoap11Endpoint</wsa:To><wsa:Action xmlns:wsa="http://www.w3.org/2005/08/addressing">http://example.org/action/notify</wsa:Action><wsa:MessageID xmlns:wsa="http://www.w3.org/2005/08/addressing">uuid:DA79C79B-0108-4000-E000-1700C0A80145</wsa:MessageID></soapenv:Header><soapenv:Body><m:notify xmlns:m="http://example.org/notify">test1100</m:notify></soapenv:Body></soapenv:Envelope></l:content> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">192.168.1.69:3436</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">POST /wsaiop/services/wsaTestSoap11Endpoint HTTP/1.1
 Host: 192.168.1.69:8001
 Accept: application/soap+xml,multipart/related,text/*
 User-Agent: IBM WebServices/1.0
 Cache-Control: no-cache
 Pragma: no-cache
 SOAPAction: "http://example.org/action/notify"
 Connection: Keep-Alive
 Content-Type: text/xml; charset=utf-8
 Content-Length: 783
 Date: Tue, 17 Jan 2006 22:26:19 GMT
 
 </httpHeaders> [...1199 lines suppressed...] Connection: Keep-Alive
 Content-Type: application/soap+xml; charset=utf-8;action="";
 Content-Length: 896
 Date: Tue, 17 Jan 2006 22:26:27 GMT
 
 </httpHeaders> </l:message> <l:message timestamp="2006-01-17T22:26:27.969" conversation="2" wsi-log303:ID="64" type="response"> <l:content></l:content> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">127.0.0.1:3438</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">HTTP/1.1 200 OK
 Content-Length: 0
 Content-Language: en-GB
 Server: WebSphere Application Server/7.0
 Date: Tue, 17 Jan 2006 22:26:27 GMT
 
 </httpHeaders> </l:message> </l:log> --- NEW FILE: raw-log-testcases.xml --- <?xml version="1.0" encoding="UTF-8"?> <l:log xmlns:l="http://www.w3.org/2002/ws/addressing/logs/"> <l:message xmlns:wsi-log303="http://www.ws-i.org/testing/2003/03/log/" xmlns:wsi-log407="http://www.ws-i.org/testing/2004/07/log/" testcase="test1100" timestamp="2006-01-17T22:26:20.234" conversation="1" wsi-log303:ID="1" type="request"> <l:content><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsa="http://www.w3.org/2005/08/addressing"><soapenv:Header><wsa:To>http://192.168.1.69:8001/wsaiop/services/wsaTestSoap11Endpoint</wsa:To><wsa:Action>http://example.org/action/notify</wsa:Action><wsa:MessageID>uuid:DA79C79B-0108-4000-E000-1700C0A80145</wsa:MessageID></soapenv:Header><soapenv:Body><m:notify xmlns:m="http://example.org/notify">test1100</m:notify></soapenv:Body></soapenv:Envelope></l:content> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">192.168.1.69:3436</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">POST /wsaiop/services/wsaTestSoap11Endpoint HTTP/1.1 Host: 192.168.1.69:8001 Accept: application/soap+xml,multipart/related,text/* User-Agent: IBM WebServices/1.0 Cache-Control: no-cache Pragma: no-cache SOAPAction: "http://example.org/action/notify" Connection: Keep-Alive Content-Type: text/xml; charset=utf-8 Content-Length: 783 Date: Tue, 17 Jan 2006 22:26:19 GMT </httpHeaders> [...1199 lines suppressed...] Connection: Keep-Alive Content-Type: application/soap+xml; charset=utf-8;action=""; Content-Length: 896 Date: Tue, 17 Jan 2006 22:26:27 GMT </httpHeaders> </l:message> <l:message xmlns:wsi-log303="http://www.ws-i.org/testing/2003/03/log/" xmlns:wsi-log407="http://www.ws-i.org/testing/2004/07/log/" testcase="test1250" timestamp="2006-01-17T22:26:27.969" conversation="2" wsi-log303:ID="64" type="response"> <l:content/> <senderHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">localhost:9080</senderHostAndPort> <receiverHostAndPort xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">127.0.0.1:3438</receiverHostAndPort> <httpHeaders xmlns:wsi-monConfig="http://www.ws-i.org/testing/2003/03/monitorConfig/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.ws-i.org/testing/2003/03/log/">HTTP/1.1 200 OK Content-Length: 0 Content-Language: en-GB Server: WebSphere Application Server/7.0 Date: Tue, 17 Jan 2006 22:26:27 GMT </httpHeaders> </l:message> </l:log>
Received on Monday, 9 July 2007 20:33:33 UTC