comparison Platforms/Generic/WebServiceGetCommand.cpp @ 123:ed0003f6102c wasm

dynamic loading of rt-struct renderers
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 07 Oct 2017 13:11:12 +0200
parents 2eca030792aa
children e2fe9352f240
comparison
equal deleted inserted replaced
122:e3433dabfb8d 123:ed0003f6102c
38 38
39 39
40 void WebServiceGetCommand::Execute() 40 void WebServiceGetCommand::Execute()
41 { 41 {
42 Orthanc::HttpClient client(parameters_, uri_); 42 Orthanc::HttpClient client(parameters_, uri_);
43 client.SetTimeout(60);
43 client.SetMethod(Orthanc::HttpMethod_Get); 44 client.SetMethod(Orthanc::HttpMethod_Get);
44 success_ = client.Apply(answer_); 45 success_ = client.Apply(answer_);
45 } 46 }
46 47
47 48