 dcc996c006
			
		
	
	dcc996c006
	
	
	
		
			
			Create a maven project structure. One mock webservice should be included. Both Json and XML payload accepted. Configuration of this webservice (response body, response headers, http status code) should be fully configured in a configuration file. Invoication details (headers, payload) should be logged. Closes #T124
		
			
				
	
	
		
			20 lines
		
	
	
		
			622 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			622 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en" xmlns:th="http://thymeleaf.org">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <title>Login</title>
 | |
| </head>
 | |
| <body>
 | |
| <div><br>Please move to the next step with your own client UUID: </div>
 | |
| <form action="#" th:action="@{/home}" method="get">
 | |
|     <br><label >Please provide your client UUID:</label><br/>
 | |
|     <input type="text" name="clientUUID" value="436c4774-038f-4540-9c18-2691ca9b53d4" />
 | |
|     <input type="submit" value="Proceed"/>
 | |
| </form>
 | |
| 
 | |
| <div><br>You can also register new UUID. *some logic to register UUID*:
 | |
| <br><a th:text="${clientUUID}">clientUUID should be here</a>
 | |
| </div>
 | |
| 
 | |
| </body>
 | |
| </html> |