-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from DK-Hostmaster/3.2-candidate
4.0 candidate
- Loading branch information
Showing
11 changed files
with
216 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,3 +67,7 @@ xsd | |
XYZ | ||
delDate | ||
autoRenew | ||
VeriSign | ||
verisign | ||
authorizations | ||
xmlsoft |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<schema | ||
targetNamespace="http://www.verisign.com/epp/balance-1.0" | ||
xmlns:balance="http://www.verisign.com/epp/balance-1.0" | ||
xmlns="http://www.w3.org/2001/XMLSchema" | ||
elementFormDefault="qualified"> | ||
|
||
<annotation> | ||
<documentation> | ||
Extensible Provisioning Protocol v1.0 | ||
Verisign mapping for getting account balance and | ||
other financial information. | ||
</documentation> | ||
</annotation> | ||
|
||
<!-- | ||
Child elements found in EPP commands. | ||
--> | ||
<!-- Empty balance:info command element --> | ||
<element name="info"/> | ||
|
||
<!-- | ||
Child response elements. | ||
--> | ||
<element name="infData" type="balance:infDataType"/> | ||
|
||
<!--Child elements of the balance:infData element --> | ||
<complexType name="infDataType"> | ||
<sequence> | ||
<element name="creditLimit" | ||
type="balance:currencyValueType"/> | ||
<element name="balance" | ||
type="balance:currencyValueType"/> | ||
<element name="availableCredit" | ||
type="balance:currencyValueType"/> | ||
<element name="creditThreshold" | ||
type="balance:thresholdType"/> | ||
</sequence> | ||
</complexType> | ||
|
||
<complexType name="thresholdType"> | ||
<choice> | ||
<element name="fixed" | ||
type="balance:currencyValueType"/> | ||
<element name="percent" | ||
type="integer"/> | ||
</choice> | ||
</complexType> | ||
|
||
<simpleType name="currencyValueType"> | ||
<restriction base="decimal"> | ||
<fractionDigits value="2"/> | ||
</restriction> | ||
</simpleType> | ||
|
||
<!-- End of schema.--> | ||
</schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> | ||
<command> | ||
<info> | ||
<balance:info xmlns:balance="http://www.verisign.com/epp/balance-1.0"/> | ||
</info> | ||
<clTRID>ABC-12345</clTRID> | ||
</command> | ||
</epp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> | ||
<response> | ||
<result code="1000"> | ||
<msg>Command completed successfully</msg> | ||
</result> | ||
<resData> | ||
<balance:infData xmlns:balance="http://www.verisign.com/epp/balance-1.0"> | ||
<balance:creditLimit>0</balance:creditLimit> | ||
<balance:balance>2000.00</balance:balance> | ||
<balance:availableCredit>2000.00</balance:availableCredit> | ||
<balance:creditThreshold> | ||
<balance:fixed>0</balance:fixed> | ||
</balance:creditThreshold> | ||
</balance:infData> | ||
</resData> | ||
<trID> | ||
<clTRID>ABC-12345</clTRID> | ||
<svTRID>54322-XYZ</svTRID> | ||
</trID> | ||
</response> | ||
</epp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd"> | ||
<command> | ||
<create> | ||
<domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd"> | ||
<domain:name>dk-hostmaster-test-906.dk</domain:name> | ||
<domain:period unit="y">1</domain:period> | ||
<domain:ns> | ||
<domain:hostObj>ns1.dk-hostmaster.dk</domain:hostObj> | ||
<domain:hostObj>ns2.dk-hostmaster.dk</domain:hostObj> | ||
</domain:ns> | ||
<domain:registrant>DKHM1-DK</domain:registrant> | ||
<domain:authInfo> | ||
<domain:pw /> | ||
</domain:authInfo> | ||
</domain:create> | ||
</create> | ||
<extension> | ||
<dkhm:orderconfirmationToken xmlns:dkhm="urn:dkhm:params:xml:ns:dkhm-3.2">testtoken</dkhm:orderconfirmationToken> | ||
</extension> | ||
<clTRID>92724843f12a3e958588679551aa988d</clTRID> | ||
</command> | ||
</epp> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd"> | ||
<command> | ||
<create> | ||
<domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xsi:schemaLocation="urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd"> | ||
<domain:name>dk-hostmaster-test-906.dk</domain:name> | ||
<domain:period unit="y">1</domain:period> | ||
<domain:ns> | ||
<domain:hostObj>ns1.dk-hostmaster.dk</domain:hostObj> | ||
<domain:hostObj>ns2.dk-hostmaster.dk</domain:hostObj> | ||
</domain:ns> | ||
<domain:registrant>DKHM1-DK</domain:registrant> | ||
<domain:authInfo> | ||
<domain:pw /> | ||
</domain:authInfo> | ||
</domain:create> | ||
</create> | ||
<extension> | ||
<dkhm:orderconfirmationToken xmlns:dkhm="urn:dkhm:params:xml:ns:dkhm-4.0">testtoken</dkhm:orderconfirmationToken> | ||
</extension> | ||
<clTRID>92724843f12a3e958588679551aa988d</clTRID> | ||
</command> | ||
</epp> |
Oops, something went wrong.