Skip to content

Commit

Permalink
rr pairs 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ahkal01 committed Dec 9, 2014
1 parent e5681d1 commit d5c3a23
Show file tree
Hide file tree
Showing 8 changed files with 80 additions and 0 deletions.
1 change: 1 addition & 0 deletions get1-req.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GET /vapi/alain/rest/customer/Clark
19 changes: 19 additions & 0 deletions get1-rsp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
HTTP/1.1 200
Content-Type: text/xml; charset=UTF-8
Connection: close
Date: Wed, 29 Jan 2014 23:57:55 GMT
Cache-Control: private, max-age=0
Expires: -1

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customer>
<name>Clark</name>
<address>Slough</address>
<trade>12-15-2013</trade>
<settle>12-19-2013</settle>
<contact>
<user>Clark</user>
<phone>44175324135</phone>
<email>[email protected]</email>
</contact>
</customer>
1 change: 1 addition & 0 deletions get2-req.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GET /vapi/alain/rest/customer/Smith
19 changes: 19 additions & 0 deletions get2-rsp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
HTTP/1.1 200
Content-Type: text/xml; charset=UTF-8
Connection: close
Date: Wed, 29 Jan 2014 23:57:55 GMT
Cache-Control: private, max-age=0
Expires: -1

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customer>
<name>Smith</name>
<address>Windsor</address>
<trade>12-10-2013</trade>
<settle>12-14-2013</settle>
<contact>
<user>Smith</user>
<phone>44175324134</phone>
<email>[email protected]</email>
</contact>
</customer>
1 change: 1 addition & 0 deletions get3-req.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GET /vapi/alain/rest/customer?name=Clark&address=Slough
19 changes: 19 additions & 0 deletions get3-rsp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
HTTP/1.1 200
Content-Type: text/xml; charset=UTF-8
Connection: close
Date: Wed, 29 Jan 2014 23:57:55 GMT
Cache-Control: private, max-age=0
Expires: -1

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customer>
<name>Clark</name>
<address>Slough</address>
<trade>12-15-2013</trade>
<settle>12-19-2013</settle>
<contact>
<user>Clark</user>
<phone>44175324135</phone>
<email>[email protected]</email>
</contact>
</customer>
1 change: 1 addition & 0 deletions get4-req.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GET /vapi/alain/rest/customer?name=Smith&address=Windsor
19 changes: 19 additions & 0 deletions get4-rsp.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
HTTP/1.1 200
Content-Type: text/xml; charset=UTF-8
Connection: close
Date: Wed, 29 Jan 2014 23:57:55 GMT
Cache-Control: private, max-age=0
Expires: -1

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customer>
<name>Smith</name>
<address>Windsor</address>
<trade>12-10-2013</trade>
<settle>12-14-2013</settle>
<contact>
<user>Smith</user>
<phone>44175324134</phone>
<email>[email protected]</email>
</contact>
</customer>

0 comments on commit d5c3a23

Please sign in to comment.