method

parse_soapaction

ruby latest stable - Class: SOAP::RPC::SOAPlet

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

parse_soapaction(soapaction)
private

No documentation available.

# File lib/soap/rpc/soaplet.rb, line 130
  def parse_soapaction(soapaction)
    if !soapaction.nil? and !soapaction.empty?
      if /^"(.+)"$/ =~ soapaction
        return $1
      end
    end
    nil
  end