Client Transaction ID specs

This commit is contained in:
Martin Lensment 2014-06-27 14:15:15 +03:00
parent 69be898d68
commit 920e54cd28
7 changed files with 14 additions and 5 deletions

View file

@ -5,4 +5,8 @@ xml.epp('xmlns' => 'urn:ietf:params:xml:ns:epp-1.0', 'xmlns:xsi' => 'http://www.
xml.msg('Command completed successfully')
end
end
xml.trID do
xml.clTRID params[:clTRID]
end
end

View file

@ -7,7 +7,7 @@ xml.epp('xmlns' => 'urn:ietf:params:xml:ns:epp-1.0', 'xmlns:xsi' => 'http://www.
end
xml.trID do
xml.svTRID 'svTrid'
xml.clTRID 'wgyn001#10-02-08at13:58:06'
#xml.svTRID 'svTrid'
xml.clTRID params[:clTRID]
end
end

View file

@ -7,6 +7,6 @@ xml.epp('xmlns' => 'urn:ietf:params:xml:ns:epp-1.0', 'xmlns:xsi' => 'http://www.
end
xml.trID do
xml.clTRID 'sample1trid'
xml.clTRID params[:clTRID]
end
end

View file

@ -7,6 +7,6 @@ xml.epp('xmlns' => 'urn:ietf:params:xml:ns:epp-1.0', 'xmlns:xsi' => 'http://www.
end
xml.trID do
xml.clTRID 'sample1trid'
xml.clTRID params[:clTRID]
end
end