Class: SOAP::RPC::Proxy::Operation
Instance Attribute Summary collapse
-
#request_style ⇒ Object
readonly
Returns the value of attribute request_style.
-
#request_use ⇒ Object
readonly
Returns the value of attribute request_use.
-
#response_style ⇒ Object
readonly
Returns the value of attribute response_style.
-
#response_use ⇒ Object
readonly
Returns the value of attribute response_use.
-
#soapaction ⇒ Object
readonly
Returns the value of attribute soapaction.
-
#use_default_namespace ⇒ Object
readonly
Returns the value of attribute use_default_namespace.
Instance Method Summary collapse
-
#initialize(soapaction, param_def, opt) ⇒ Operation
constructor
A new instance of Operation.
- #raise_fault(e, mapping_registry, literal_mapping_registry) ⇒ Object
- #request_body(values, mapping_registry, literal_mapping_registry, opt) ⇒ Object
- #request_default_encodingstyle ⇒ Object
- #response_default_encodingstyle ⇒ Object
- #response_obj(body, mapping_registry, literal_mapping_registry, opt) ⇒ Object
Constructor Details
#initialize(soapaction, param_def, opt) ⇒ Operation
Returns a new instance of Operation.
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 |
# File 'lib/soap/rpc/proxy.rb', line 356 def initialize(soapaction, param_def, opt) @soapaction = soapaction @request_style = opt[:request_style] @response_style = opt[:response_style] @request_use = opt[:request_use] @response_use = opt[:response_use] @use_default_namespace = opt[:use_default_namespace] || opt[:elementformdefault] if opt.key?(:elementformdefault) warn("option :elementformdefault is deprecated. use :use_default_namespace instead") end check_style(@request_style) check_style(@response_style) check_use(@request_use) check_use(@response_use) if @request_style == :rpc @rpc_request_qname = opt[:request_qname] if @rpc_request_qname.nil? raise MethodDefinitionError.new("rpc_request_qname must be given") end @rpc_method_factory = RPC::SOAPMethodRequest.new(@rpc_request_qname, param_def, @soapaction) else @doc_request_qnames = [] @doc_request_qualified = [] @doc_response_qnames = [] @doc_response_qualified = [] param_def.each do |inout, paramname, typeinfo, eleinfo| klass_not_used, nsdef, namedef = typeinfo qualified = eleinfo if namedef.nil? raise MethodDefinitionError.new("qname must be given") end case inout when SOAPMethod::IN @doc_request_qnames << XSD::QName.new(nsdef, namedef) @doc_request_qualified << qualified when SOAPMethod::OUT @doc_response_qnames << XSD::QName.new(nsdef, namedef) @doc_response_qualified << qualified else raise MethodDefinitionError.new( "illegal inout definition for document style: #{inout}") end end end end |
Instance Attribute Details
#request_style ⇒ Object (readonly)
Returns the value of attribute request_style.
350 351 352 |
# File 'lib/soap/rpc/proxy.rb', line 350 def request_style @request_style end |
#request_use ⇒ Object (readonly)
Returns the value of attribute request_use.
352 353 354 |
# File 'lib/soap/rpc/proxy.rb', line 352 def request_use @request_use end |
#response_style ⇒ Object (readonly)
Returns the value of attribute response_style.
351 352 353 |
# File 'lib/soap/rpc/proxy.rb', line 351 def response_style @response_style end |
#response_use ⇒ Object (readonly)
Returns the value of attribute response_use.
353 354 355 |
# File 'lib/soap/rpc/proxy.rb', line 353 def response_use @response_use end |
#soapaction ⇒ Object (readonly)
Returns the value of attribute soapaction.
349 350 351 |
# File 'lib/soap/rpc/proxy.rb', line 349 def soapaction @soapaction end |
#use_default_namespace ⇒ Object (readonly)
Returns the value of attribute use_default_namespace.
354 355 356 |
# File 'lib/soap/rpc/proxy.rb', line 354 def use_default_namespace @use_default_namespace end |
Instance Method Details
#raise_fault(e, mapping_registry, literal_mapping_registry) ⇒ Object
429 430 431 432 433 434 435 |
# File 'lib/soap/rpc/proxy.rb', line 429 def raise_fault(e, mapping_registry, literal_mapping_registry) if @response_style == :rpc Mapping.fault2exception(e, mapping_registry) else Mapping.fault2exception(e, literal_mapping_registry) end end |
#request_body(values, mapping_registry, literal_mapping_registry, opt) ⇒ Object
412 413 414 415 416 417 418 |
# File 'lib/soap/rpc/proxy.rb', line 412 def request_body(values, mapping_registry, literal_mapping_registry, opt) if @request_style == :rpc request_rpc(values, mapping_registry, literal_mapping_registry, opt) else request_doc(values, mapping_registry, literal_mapping_registry, opt) end end |
#request_default_encodingstyle ⇒ Object
404 405 406 |
# File 'lib/soap/rpc/proxy.rb', line 404 def request_default_encodingstyle (@request_use == :encoded) ? EncodingNamespace : LiteralNamespace end |
#response_default_encodingstyle ⇒ Object
408 409 410 |
# File 'lib/soap/rpc/proxy.rb', line 408 def response_default_encodingstyle (@response_use == :encoded) ? EncodingNamespace : LiteralNamespace end |
#response_obj(body, mapping_registry, literal_mapping_registry, opt) ⇒ Object
420 421 422 423 424 425 426 427 |
# File 'lib/soap/rpc/proxy.rb', line 420 def response_obj(body, mapping_registry, literal_mapping_registry, opt) if @response_style == :rpc response_rpc(body, mapping_registry, literal_mapping_registry, opt) else unique_result_for_one_element_array( response_doc(body, mapping_registry, literal_mapping_registry, opt)) end end |