2 changed files with 135 additions and 135 deletions
@ -1,75 +1,75 @@ |
|||||
<!doctype html> |
<!doctype html> |
||||
|
|
||||
<html> |
<html> |
||||
<head> |
<head> |
||||
<meta charset="UTF-8"> |
<meta charset="UTF-8"> |
||||
<title>SOAPUI test page</title> |
<title>SOAPUI test page</title> |
||||
<script type='text/javascript' src='https://code.jquery.com/jquery-3.1.1.js'></script> |
<script type='text/javascript' src='https://code.jquery.com/jquery-3.1.1.js'></script> |
||||
<script type='text/javascript' src='jquery.soap/jquery.soap.js'></script> |
<script type='text/javascript' src='jquery.soap/jquery.soap.js'></script> |
||||
<script type='text/javascript' src='vkBeautify/vkbeautify.js'></script> |
<script type='text/javascript' src='vkBeautify/vkbeautify.js'></script> |
||||
<script type='text/javascript' src='soapui.js'></script> |
<script type='text/javascript' src='soapui.js'></script> |
||||
<script type='text/javascript'> |
<script type='text/javascript'> |
||||
$(document).ready(function() { |
$(document).ready(function() { |
||||
$(".soapui").each(function (i, e) { |
$(".soapui").each(function (i, e) { |
||||
$.soapui(e, { |
$.soapui(e, { |
||||
url: 'http://api.acme.test/ws', |
url: 'http://api.acme.test/ws', |
||||
HTTPHeaders: { "user-key": "<your user-key here>" }, |
HTTPHeaders: { "user-key": "<your user-key here>" }, |
||||
enableLogging: true, |
enableLogging: true, |
||||
appendMethodToURL: false |
appendMethodToURL: false |
||||
}); |
}); |
||||
}); |
}); |
||||
}); |
}); |
||||
</script> |
</script> |
||||
<style> |
<style> |
||||
.soapui span { |
.soapui span { |
||||
font-weight: bold; |
font-weight: bold; |
||||
} |
} |
||||
|
|
||||
.soapui textarea { |
.soapui textarea { |
||||
width: 80%; |
width: 80%; |
||||
display: block; |
display: block; |
||||
height: 200px; |
height: 200px; |
||||
} |
} |
||||
|
|
||||
.soapui input[type=text] { |
.soapui input[type=text] { |
||||
width: 80%; |
width: 80%; |
||||
display: block; |
display: block; |
||||
} |
} |
||||
|
|
||||
.soapui .hidden { |
.soapui .hidden { |
||||
display: none; |
display: none; |
||||
} |
} |
||||
</style> |
</style> |
||||
</head> |
</head> |
||||
<body> |
<body> |
||||
<h1>Get information about Spain</h1> |
<h1>Get information about Spain</h1> |
||||
<div class="soapui"> |
<div class="soapui"> |
||||
<soap-action></soap-action> |
<soap-action></soap-action> |
||||
<soap-body><!-- |
<soap-body><!-- |
||||
<gs:getCountryRequest xmlns:gs="http://spring.io/guides/gs-producing-web-service"> |
<gs:getCountryRequest xmlns:gs="http://spring.io/guides/gs-producing-web-service"> |
||||
<gs:name>Spain</gs:name> |
<gs:name>Spain</gs:name> |
||||
</gs:getCountryRequest> |
</gs:getCountryRequest> |
||||
--></soap-body> |
--></soap-body> |
||||
</div> |
</div> |
||||
|
|
||||
<h1>Get information about Poland</h1> |
<h1>Get information about Poland</h1> |
||||
<div class="soapui"> |
<div class="soapui"> |
||||
<soap-action></soap-action> |
<soap-action></soap-action> |
||||
<soap-body><!-- |
<soap-body><!-- |
||||
<gs:getCountryRequest xmlns:gs="http://spring.io/guides/gs-producing-web-service"> |
<gs:getCountryRequest xmlns:gs="http://spring.io/guides/gs-producing-web-service"> |
||||
<gs:name>Poland</gs:name> |
<gs:name>Poland</gs:name> |
||||
</gs:getCountryRequest> |
</gs:getCountryRequest> |
||||
--></soap-body> |
--></soap-body> |
||||
</div> |
</div> |
||||
|
|
||||
<h1>Get information about funny country</h1> |
<h1>Get information about funny country</h1> |
||||
<div class="soapui"> |
<div class="soapui"> |
||||
<soap-action></soap-action> |
<soap-action></soap-action> |
||||
<soap-body><!-- |
<soap-body><!-- |
||||
<gs:getCountryRequest xmlns:gs="http://spring.io/guides/gs-producing-web-service"> |
<gs:getCountryRequest xmlns:gs="http://spring.io/guides/gs-producing-web-service"> |
||||
<gs:name>The Moon</gs:name> |
<gs:name>The Moon</gs:name> |
||||
</gs:getCountryRequest> |
</gs:getCountryRequest> |
||||
--></soap-body> |
--></soap-body> |
||||
</div> |
</div> |
||||
</body> |
</body> |
||||
</html> |
</html> |
||||
|
|||||
Loading…
Reference in new issue