Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Ticket #157 (closed enhancement: fixed)

Opened 3 years ago

Last modified 3 years ago

QName as a value

Reported by: nahi Assigned to: nahi
Priority: low Milestone: 1.5.6
Component: soap4r Version: 1.5
Keywords: Cc:

Description

such as <elename xmlns:n1="urn:valuenamespace">n1:value</elename>

Change History

09/25/05 22:40:06 changed by nahi

  • status changed from new to closed.
  • resolution set to fixed.

(In [1636]) allow QName as a value.

include SOAP include XSD ele = SOAPElement.new(QName.new("urn:foo", "elename"),

QName.new("urn:bar", "value"))

puts Processor.marshal(SOAPEnvelope.new(nil, SOAPBody.new(ele))) #=> <?xml version="1.0" encoding="utf-8" ?> <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"

xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<env:Body>

<n1:elename xmlns:n1="urn:foo"

xmlns:n2="urn:bar">n2:value</n1:elename>

</env:Body>

</env:Envelope>

closes #157.

10/22/05 00:56:15 changed by nahi

  • type changed from defect to enhancement.