16.5. Jak napisać serwer SOAP?

Podziękowania dla Kevina Marshalla

Problem

Chcemy umieścić na serwerze usługę sieciową SOAP w postaci samodzielnego serwera (tzn. niezależnego od aplikacji Rails).

Rozwiązanie

Utworzenie własnego serwera SOAP wymaga wykonania trzech prostych czynności:

  1. Utworzenia subklasy klasy SOAP::StandaloneServer. W konstruktorze klasy należy zarejestrować metody, które mają być udostępnione, oraz argumenty, które metody te powinny pobierać. W pokazanym przykładzie udostępniamy metodę sayhelloto, która pobiera jeden parametr — username:

    require 'soap/rpc/standaloneServer'
    
    class MyServer < SOAP::RPC::StandaloneServer
      def initialize(*args)
        super
        add_method(self, 'sayhelloto', 'username')
      end
    end
  2. Zdefiniowanie metod ...

Get Ruby. Receptury now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.