X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fhttp%2FxmlRServer%2Fmain.cpp;fp=example%2Fhttp%2FxmlRServer%2Fmain.cpp;h=5790ce66dc05355212d0d9c240ecaaba628c2cbf;hp=f9f4307dd1dc40f211b2a23ac1f801f98805395e;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/example/http/xmlRServer/main.cpp b/example/http/xmlRServer/main.cpp index f9f4307..5790ce6 100644 --- a/example/http/xmlRServer/main.cpp +++ b/example/http/xmlRServer/main.cpp @@ -47,7 +47,7 @@ public: ~MyHandler () { } - static const char* className () throw () { return "http_rserver::ReceiverFactory"; } + static const char* className () { return "http_rserver::ReceiverFactory"; } private: struct Attribute { enum _v { ValueOne, ValueTwo, Operator, Result, Time, Max }; }; @@ -57,9 +57,9 @@ private: xml::Node* a_xmlResponse; xml::Attribute* a_xmlAttributes [Attribute::Max]; - void initialize () throw (RuntimeException); - void evRequest (ClientSocket&, const http::Request& request) throw (RuntimeException); - void evResponse (ClientSocket&, const http::Response&) throw (RuntimeException) {;} + void initialize () noexcept(false); + void evRequest (ClientSocket&, const http::Request& request) noexcept(false); + void evResponse (ClientSocket&, const http::Response&) noexcept(false) {;} }; class WIMS20ArithmeticServer : public comm::Application { @@ -71,9 +71,9 @@ private: ReceiverFactoryImpl a_receiverFactory; comm::ServerSocket* a_serverSocket; - void initialize () throw (RuntimeException); - void run () throw (RuntimeException); - xml::Node* asXML (xml::Node* app) const throw (); + void initialize () noexcept(false); + void run () noexcept(false); + xml::Node* asXML (xml::Node* app) const ; }; using namespace std; @@ -121,7 +121,7 @@ WIMS20ArithmeticServer::WIMS20ArithmeticServer () : } void WIMS20ArithmeticServer::initialize () - throw (RuntimeException) + noexcept(false) { CommandLine& cl (CommandLine::instantiate ()); @@ -138,7 +138,7 @@ void WIMS20ArithmeticServer::initialize () } void WIMS20ArithmeticServer::run () - throw (RuntimeException) + noexcept(false) { CommandLine& cl (CommandLine::instantiate ()); @@ -160,7 +160,7 @@ void WIMS20ArithmeticServer::run () } xml::Node* WIMS20ArithmeticServer::asXML (xml::Node* app) const - throw () + { xml::Node* node = app::Application::asXML (app); @@ -171,7 +171,7 @@ xml::Node* WIMS20ArithmeticServer::asXML (xml::Node* app) const } void MyHandler::initialize () - throw (RuntimeException) + noexcept(false) { a_communicator = app::functions::component (ANNA_FILE_LOCATION); @@ -191,7 +191,7 @@ void MyHandler::initialize () * Recibe una peticion */ void MyHandler::evRequest (ClientSocket& clientSocket, const http::Request& httpRequest) - throw (RuntimeException) + noexcept(false) { LOGMETHOD (TraceMethod tm ("MyReceiver", "apply", ANNA_FILE_LOCATION));