Replace hello filenames to ping

This commit is contained in:
flyingscorpio@clevo 2023-01-12 13:34:46 +01:00
parent efde577b7a
commit e6506221f3
3 changed files with 2 additions and 2 deletions

View file

@ -58,13 +58,13 @@ impl<'a> Mouth<'a> {
/// Send SOAP WSDL file to a client.
pub fn send_soap_wsdl(&mut self) {
println!("Sending SOAP WSDL");
self.send_file(Status::OK, "soap/hello.wsdl");
self.send_file(Status::OK, "soap/ping.wsdl");
}
/// Send response data in SOAP XML to a client.
pub fn send_soap_xml(&mut self) {
println!("Sending SOAP response");
self.send_file(Status::OK, "soap/hello_response.xml");
self.send_file(Status::OK, "soap/pong.xml");
}
/// Send OK response to a client.