added xml ns prefixes to request serialization to match RFC examples
This commit is contained in:
parent
8462a872cd
commit
890dc0f5d6
|
@ -47,9 +47,10 @@ impl HostAddr {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct Host {
|
||||
/// The <hostName> tag
|
||||
#[serde(rename = "host:name", alias = "name")]
|
||||
pub name: StringValue,
|
||||
/// The <hostAddr> tags
|
||||
#[serde(rename = "addr")]
|
||||
#[serde(rename = "host:addr", alias = "addr")]
|
||||
pub addresses: Option<Vec<HostAddr>>,
|
||||
}
|
||||
|
||||
|
@ -57,10 +58,10 @@ pub struct Host {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostAttr {
|
||||
/// The <hostName> tag
|
||||
#[serde(rename = "hostName")]
|
||||
#[serde(rename = "domain:hostName", alias = "hostName")]
|
||||
pub name: StringValue,
|
||||
/// The <hostAddr> tags
|
||||
#[serde(rename = "hostAddr")]
|
||||
#[serde(rename = "domain:hostAddr", alias = "hostAddr")]
|
||||
pub addresses: Option<Vec<HostAddr>>,
|
||||
}
|
||||
|
||||
|
@ -77,7 +78,7 @@ pub enum HostList {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostAttrList {
|
||||
/// The list of <hostAttr> tags
|
||||
#[serde(rename = "hostAttr")]
|
||||
#[serde(rename = "domain:hostAttr", alias = "hostAttr")]
|
||||
pub hosts: Vec<HostAttr>,
|
||||
}
|
||||
|
||||
|
@ -85,7 +86,7 @@ pub struct HostAttrList {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostObjList {
|
||||
/// The list of <hostObj> tags
|
||||
#[serde(rename = "hostObj")]
|
||||
#[serde(rename = "domain:hostObj", alias = "hostObj")]
|
||||
pub hosts: Vec<StringValue>,
|
||||
}
|
||||
|
||||
|
@ -148,17 +149,19 @@ pub struct Phone {
|
|||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||
pub struct Address {
|
||||
/// The <street> tags under <addr>
|
||||
#[serde(rename = "contact:street", alias = "street")]
|
||||
pub street: Vec<StringValue>,
|
||||
/// The <city> tag under <addr>
|
||||
#[serde(rename = "contact:city", alias = "city")]
|
||||
pub city: StringValue,
|
||||
/// The <sp> tag under <addr>
|
||||
#[serde(rename = "sp")]
|
||||
#[serde(rename = "contact:sp", alias = "sp")]
|
||||
pub province: StringValue,
|
||||
/// The <pc> tag under <addr>
|
||||
#[serde(rename = "pc")]
|
||||
#[serde(rename = "contact:pc", alias = "pc")]
|
||||
pub postal_code: StringValue,
|
||||
/// The <cc> tag under <addr>
|
||||
#[serde(rename = "cc")]
|
||||
#[serde(rename = "contact:cc", alias = "cc")]
|
||||
pub country_code: StringValue,
|
||||
}
|
||||
|
||||
|
@ -169,20 +172,29 @@ pub struct PostalInfo {
|
|||
#[serde(rename = "type")]
|
||||
pub info_type: String,
|
||||
/// The <name> tag under <postalInfo>
|
||||
#[serde(rename = "contact:name", alias = "name")]
|
||||
pub name: StringValue,
|
||||
/// The <org> tag under <postalInfo>
|
||||
#[serde(rename = "org")]
|
||||
#[serde(rename = "contact:org", alias = "org")]
|
||||
pub organization: StringValue,
|
||||
/// The <addr> tag under <postalInfo>
|
||||
#[serde(rename = "addr")]
|
||||
#[serde(rename = "contact:addr", alias = "addr")]
|
||||
pub address: Address,
|
||||
}
|
||||
|
||||
/// The <authInfo> tag for domain and contact transactions
|
||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||
pub struct AuthInfo {
|
||||
pub struct DomainAuthInfo {
|
||||
/// The <pw> tag under <authInfo>
|
||||
#[serde(rename = "pw")]
|
||||
#[serde(rename = "domain:pw", alias = "pw")]
|
||||
pub password: StringValue,
|
||||
}
|
||||
|
||||
/// The <authInfo> tag for domain and contact transactions
|
||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||
pub struct ContactAuthInfo {
|
||||
/// The <pw> tag under <authInfo>
|
||||
#[serde(rename = "contact:pw", alias = "pw")]
|
||||
pub password: StringValue,
|
||||
}
|
||||
|
||||
|
@ -201,10 +213,19 @@ impl Phone {
|
|||
}
|
||||
}
|
||||
|
||||
impl AuthInfo {
|
||||
/// Creates an AuthInfo instance with the given password
|
||||
pub fn new(password: &str) -> AuthInfo {
|
||||
AuthInfo {
|
||||
impl DomainAuthInfo {
|
||||
/// Creates a DomainAuthInfo instance with the given password
|
||||
pub fn new(password: &str) -> DomainAuthInfo {
|
||||
DomainAuthInfo {
|
||||
password: password.to_string_value(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl ContactAuthInfo {
|
||||
/// Creates a ContactAuthInfo instance with the given password
|
||||
pub fn new(password: &str) -> ContactAuthInfo {
|
||||
ContactAuthInfo {
|
||||
password: password.to_string_value(),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -61,9 +61,10 @@ pub type EppContactCheck = EppObject<Command<ContactCheck>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct ContactList {
|
||||
/// The XML namespace for the contact <check>
|
||||
#[serde(rename = "xmlns:contact", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The list of contact ids to check for availability
|
||||
#[serde(rename = "id")]
|
||||
#[serde(rename = "contact:id", alias = "id")]
|
||||
pub contact_ids: Vec<StringValue>,
|
||||
}
|
||||
|
||||
|
@ -72,7 +73,7 @@ pub struct ContactList {
|
|||
/// The <command> type for contact check command
|
||||
pub struct ContactCheck {
|
||||
/// The <check> tag for the contact check command
|
||||
#[serde(rename = "check")]
|
||||
#[serde(rename = "contact:check", alias = "check")]
|
||||
list: ContactList,
|
||||
}
|
||||
|
||||
|
|
|
@ -78,21 +78,26 @@ pub type EppContactCreate = EppObject<Command<ContactCreate>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct Contact {
|
||||
/// XML namespace for contact commands
|
||||
#[serde(rename = "xmlns:contact")]
|
||||
xmlns: String,
|
||||
/// Contact <id> tag
|
||||
#[serde(rename = "contact:id")]
|
||||
id: StringValue,
|
||||
/// Contact <postalInfo> tag
|
||||
#[serde(rename = "postalInfo")]
|
||||
#[serde(rename = "contact:postalInfo")]
|
||||
postal_info: data::PostalInfo,
|
||||
/// Contact <voice> tag
|
||||
#[serde(rename = "contact:voice")]
|
||||
voice: data::Phone,
|
||||
/// Contact <fax> tag,
|
||||
#[serde(rename = "contact:fax")]
|
||||
fax: Option<data::Phone>,
|
||||
/// Contact <email> tag
|
||||
#[serde(rename = "contact:email")]
|
||||
email: StringValue,
|
||||
/// Contact <authInfo> tag
|
||||
#[serde(rename = "authInfo")]
|
||||
auth_info: data::AuthInfo,
|
||||
#[serde(rename = "contact:authInfo")]
|
||||
auth_info: data::ContactAuthInfo,
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, ElementName)]
|
||||
|
@ -100,7 +105,7 @@ pub struct Contact {
|
|||
/// Type for EPP XML <create> command for contacts
|
||||
pub struct ContactCreate {
|
||||
/// Data for <create> command for contact
|
||||
#[serde(rename = "create")]
|
||||
#[serde(rename = "contact:create")]
|
||||
pub contact: Contact,
|
||||
}
|
||||
|
||||
|
@ -122,7 +127,7 @@ impl EppContactCreate {
|
|||
voice,
|
||||
fax: None,
|
||||
email: email.to_string_value(),
|
||||
auth_info: data::AuthInfo::new(auth_password),
|
||||
auth_info: data::ContactAuthInfo::new(auth_password),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -62,8 +62,10 @@ pub type EppContactDelete = EppObject<Command<ContactDelete>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct ContactDeleteData {
|
||||
/// XML namespace for the <delete> command for contacts
|
||||
#[serde(rename = "xmlns:contact", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The id of the contact to be deleted
|
||||
#[serde(rename = "contact:id", alias = "id")]
|
||||
id: StringValue,
|
||||
}
|
||||
|
||||
|
@ -71,7 +73,7 @@ pub struct ContactDeleteData {
|
|||
#[element_name(name = "delete")]
|
||||
/// The <delete> type for the contact delete EPP command
|
||||
pub struct ContactDelete {
|
||||
#[serde(rename = "delete")]
|
||||
#[serde(rename = "contact:delete", alias = "delete")]
|
||||
/// The data for the <delete> tag for a contact delete command
|
||||
contact: ContactDeleteData,
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use epp_client_macros::*;
|
||||
|
||||
use crate::epp::object::data::AuthInfo;
|
||||
use crate::epp::object::data::ContactAuthInfo;
|
||||
use crate::epp::object::{ElementName, EppObject, StringValue, StringValueTrait};
|
||||
use crate::epp::request::Command;
|
||||
use crate::epp::xml::EPP_CONTACT_XMLNS;
|
||||
|
@ -64,12 +64,14 @@ pub type EppContactInfo = EppObject<Command<ContactInfo>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct ContactInfoData {
|
||||
/// XML namespace for contact commands
|
||||
#[serde(rename = "xmlns:contact", alias = "contact")]
|
||||
xmlns: String,
|
||||
/// The contact id for the info command
|
||||
#[serde(rename = "contact:id", alias = "id")]
|
||||
id: StringValue,
|
||||
/// The <authInfo> data
|
||||
#[serde(rename = "authInfo")]
|
||||
auth_info: AuthInfo,
|
||||
#[serde(rename = "contact:authInfo", alias = "authInfo")]
|
||||
auth_info: ContactAuthInfo,
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, ElementName)]
|
||||
|
@ -77,7 +79,7 @@ pub struct ContactInfoData {
|
|||
/// Type for EPP XML <info> command for contacts
|
||||
pub struct ContactInfo {
|
||||
/// Data for <info> command for contact
|
||||
#[serde(rename = "info")]
|
||||
#[serde(rename = "contact:info", alias = "info")]
|
||||
info: ContactInfoData,
|
||||
}
|
||||
|
||||
|
@ -88,7 +90,7 @@ impl EppContactInfo {
|
|||
info: ContactInfoData {
|
||||
xmlns: EPP_CONTACT_XMLNS.to_string(),
|
||||
id: id.to_string_value(),
|
||||
auth_info: AuthInfo::new(auth_password),
|
||||
auth_info: ContactAuthInfo::new(auth_password),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use epp_client_macros::*;
|
||||
|
||||
use crate::epp::object::data::{AuthInfo, ContactStatus, Phone, PostalInfo};
|
||||
use crate::epp::object::data::{ContactAuthInfo, ContactStatus, Phone, PostalInfo};
|
||||
use crate::epp::object::{ElementName, EppObject, StringValue, StringValueTrait};
|
||||
use crate::epp::request::Command;
|
||||
use crate::epp::response::contact::info::EppContactInfoResponse;
|
||||
|
@ -73,31 +73,37 @@ pub type EppContactUpdate = EppObject<Command<ContactUpdate>>;
|
|||
/// Type for elements under the <chg> tag for contact update request
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct ContactChangeInfo {
|
||||
#[serde(rename = "postalInfo")]
|
||||
#[serde(rename = "contact:postalInfo", alias = "postalInfo")]
|
||||
postal_info: Option<PostalInfo>,
|
||||
#[serde(rename = "contact:voice", alias = "voice")]
|
||||
voice: Option<Phone>,
|
||||
#[serde(rename = "contact:fax", alias = "fax")]
|
||||
fax: Option<Phone>,
|
||||
#[serde(rename = "contact:email", alias = "email")]
|
||||
email: Option<StringValue>,
|
||||
#[serde(rename = "authInfo")]
|
||||
auth_info: Option<AuthInfo>,
|
||||
#[serde(rename = "contact:authInfo", alias = "authInfo")]
|
||||
auth_info: Option<ContactAuthInfo>,
|
||||
}
|
||||
|
||||
/// Type for list of elements of the <status> tag for contact update request
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct StatusList {
|
||||
#[serde(rename = "contact:status", alias = "status")]
|
||||
status: Vec<ContactStatus>,
|
||||
}
|
||||
|
||||
/// Type for elements under the contact <update> tag
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct ContactUpdateData {
|
||||
#[serde(rename = "xmlns:contact", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
#[serde(rename = "contact:id", alias = "id")]
|
||||
id: StringValue,
|
||||
#[serde(rename = "add")]
|
||||
#[serde(rename = "contact:add", alias = "add")]
|
||||
add_statuses: Option<StatusList>,
|
||||
#[serde(rename = "rem")]
|
||||
#[serde(rename = "contact:rem", alias = "rem")]
|
||||
remove_statuses: Option<StatusList>,
|
||||
#[serde(rename = "chg")]
|
||||
#[serde(rename = "contact:chg", alias = "chg")]
|
||||
change_info: Option<ContactChangeInfo>,
|
||||
}
|
||||
|
||||
|
@ -106,7 +112,7 @@ pub struct ContactUpdateData {
|
|||
/// Type for EPP XML <update> command for contacts
|
||||
pub struct ContactUpdate {
|
||||
/// The data under the <update> tag for the contact update
|
||||
#[serde(rename = "update")]
|
||||
#[serde(rename = "contact:update", alias = "update")]
|
||||
contact: ContactUpdateData,
|
||||
}
|
||||
|
||||
|
@ -137,7 +143,7 @@ impl EppContactUpdate {
|
|||
email: Some(email.to_string_value()),
|
||||
postal_info: Some(postal_info),
|
||||
voice: Some(voice),
|
||||
auth_info: Some(AuthInfo::new(auth_password)),
|
||||
auth_info: Some(ContactAuthInfo::new(auth_password)),
|
||||
fax: None,
|
||||
});
|
||||
}
|
||||
|
|
|
@ -61,9 +61,10 @@ pub type EppDomainCheck = EppObject<Command<DomainCheck>>;
|
|||
/// Type for <name> elements under the domain <check> tag
|
||||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainList {
|
||||
#[serde(rename = "xmlns:domain", alias = "xmlns")]
|
||||
/// XML namespace for domain commands
|
||||
pub xmlns: String,
|
||||
#[serde(rename = "name")]
|
||||
#[serde(rename = "domain:name", alias = "name")]
|
||||
/// List of domains to be checked for availability
|
||||
pub domains: Vec<StringValue>,
|
||||
}
|
||||
|
@ -73,7 +74,7 @@ pub struct DomainList {
|
|||
/// Type for EPP XML <check> command for domains
|
||||
pub struct DomainCheck {
|
||||
/// The object holding the list of domains to be checked
|
||||
#[serde(rename = "check")]
|
||||
#[serde(rename = "domain:check", alias = "check")]
|
||||
list: DomainList,
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
use epp_client_macros::*;
|
||||
|
||||
use crate::epp::object::data::{
|
||||
AuthInfo, DomainContact, HostAttr, HostAttrList, HostList, HostObjList, Period,
|
||||
DomainAuthInfo, DomainContact, HostAttr, HostAttrList, HostList, HostObjList, Period,
|
||||
};
|
||||
use crate::epp::object::{ElementName, EppObject, StringValue, StringValueTrait};
|
||||
use crate::epp::request::Command;
|
||||
|
@ -82,22 +82,27 @@ pub type EppDomainCreate = EppObject<Command<DomainCreate>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainCreateData {
|
||||
/// XML namespace for domain commands
|
||||
#[serde(rename = "xmlns:domain", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The domain name
|
||||
#[serde(rename = "domain:name", alias = "name")]
|
||||
name: StringValue,
|
||||
/// The period of registration
|
||||
#[serde(rename = "domain:period", alias = "period")]
|
||||
period: Period,
|
||||
/// The list of nameserver hosts
|
||||
/// either of type `HostObjList` or `HostAttrList`
|
||||
#[serde(rename = "domain:ns", alias = "ns")]
|
||||
ns: Option<HostList>,
|
||||
/// The domain registrant
|
||||
#[serde(rename = "domain:registrant", alias = "registrant")]
|
||||
registrant: Option<StringValue>,
|
||||
/// The list of contacts for the domain
|
||||
#[serde(rename = "contact")]
|
||||
#[serde(rename = "domain:contact", alias = "contact")]
|
||||
contacts: Option<Vec<DomainContact>>,
|
||||
/// The auth info for the domain
|
||||
#[serde(rename = "authInfo")]
|
||||
auth_info: AuthInfo,
|
||||
#[serde(rename = "domain:authInfo", alias = "authInfo")]
|
||||
auth_info: DomainAuthInfo,
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, ElementName)]
|
||||
|
@ -107,7 +112,7 @@ pub struct DomainCreate {
|
|||
/// The data for the domain to be created with
|
||||
/// T being the type of nameserver list (`HostObjList` or `HostAttrList`)
|
||||
/// to be supplied
|
||||
#[serde(rename = "create")]
|
||||
#[serde(rename = "domain:create", alias = "create")]
|
||||
domain: DomainCreateData,
|
||||
}
|
||||
|
||||
|
@ -135,7 +140,7 @@ impl EppDomainCreate {
|
|||
period: Period::new(period),
|
||||
ns: Some(HostList::HostObjList(HostObjList { hosts: ns_list })),
|
||||
registrant: Some(registrant_id.to_string_value()),
|
||||
auth_info: AuthInfo::new(auth_password),
|
||||
auth_info: DomainAuthInfo::new(auth_password),
|
||||
contacts: Some(contacts),
|
||||
},
|
||||
};
|
||||
|
@ -160,7 +165,7 @@ impl EppDomainCreate {
|
|||
period: Period::new(period),
|
||||
ns: None,
|
||||
registrant: Some(registrant_id.to_string_value()),
|
||||
auth_info: AuthInfo::new(auth_password),
|
||||
auth_info: DomainAuthInfo::new(auth_password),
|
||||
contacts: Some(contacts),
|
||||
},
|
||||
};
|
||||
|
@ -182,7 +187,7 @@ impl EppDomainCreate {
|
|||
period: Period::new(period),
|
||||
ns: None,
|
||||
registrant: None,
|
||||
auth_info: AuthInfo::new(auth_password),
|
||||
auth_info: DomainAuthInfo::new(auth_password),
|
||||
contacts: None,
|
||||
},
|
||||
};
|
||||
|
@ -208,7 +213,7 @@ impl EppDomainCreate {
|
|||
period: Period::new(period),
|
||||
ns: Some(HostList::HostAttrList(HostAttrList { hosts: ns })),
|
||||
registrant: Some(registrant_id.to_string_value()),
|
||||
auth_info: AuthInfo::new(auth_password),
|
||||
auth_info: DomainAuthInfo::new(auth_password),
|
||||
contacts: Some(contacts),
|
||||
},
|
||||
};
|
||||
|
|
|
@ -59,8 +59,10 @@ pub type EppDomainDelete = EppObject<Command<DomainDelete>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainDeleteData {
|
||||
/// XML namespace for domain commands
|
||||
#[serde(rename = "xmlns:domain", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The domain to be deleted
|
||||
#[serde(rename = "domain:name", alias = "name")]
|
||||
name: StringValue,
|
||||
}
|
||||
|
||||
|
@ -69,7 +71,7 @@ pub struct DomainDeleteData {
|
|||
/// Type for EPP XML <delete> command for domains
|
||||
pub struct DomainDelete {
|
||||
/// The data under the <delete> tag for domain deletion
|
||||
#[serde(rename = "delete")]
|
||||
#[serde(rename = "domain:delete", alias = "delete")]
|
||||
domain: DomainDeleteData,
|
||||
}
|
||||
|
||||
|
|
|
@ -69,9 +69,10 @@ pub struct Domain {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainInfoData {
|
||||
/// XML namespace for domain commands
|
||||
#[serde(rename = "xmlns:domain", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The data for the domain to be queried
|
||||
#[serde(rename = "name")]
|
||||
#[serde(rename = "domain:name", alias = "name")]
|
||||
domain: Domain,
|
||||
}
|
||||
|
||||
|
@ -80,7 +81,7 @@ pub struct DomainInfoData {
|
|||
/// Type for EPP XML <info> command for domains
|
||||
pub struct DomainInfo {
|
||||
/// The data under the <info> tag for domain info
|
||||
#[serde(rename = "info")]
|
||||
#[serde(rename = "domain:info", alias = "info")]
|
||||
info: DomainInfoData,
|
||||
}
|
||||
|
||||
|
|
|
@ -66,13 +66,16 @@ pub type EppDomainRenew = EppObject<Command<DomainRenew>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainRenewData {
|
||||
/// XML namespace for domain commands
|
||||
#[serde(rename = "xmlns:domain", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The name of the domain to be renewed
|
||||
#[serde(rename = "domain:name", alias = "name")]
|
||||
name: StringValue,
|
||||
/// The current expiry date of the domain in 'Y-m-d' format
|
||||
#[serde(rename = "curExpDate")]
|
||||
#[serde(rename = "domain:curExpDate", alias = "curExpDate")]
|
||||
current_expiry_date: StringValue,
|
||||
/// The period of renewal
|
||||
#[serde(rename = "domain:period", alias = "period")]
|
||||
period: Period,
|
||||
}
|
||||
|
||||
|
@ -81,7 +84,7 @@ pub struct DomainRenewData {
|
|||
/// Type for EPP XML <renew> command for domains
|
||||
pub struct DomainRenew {
|
||||
/// The data under the <renew> tag for the domain renewal
|
||||
#[serde(rename = "renew")]
|
||||
#[serde(rename = "domain:renew", alias = "renew")]
|
||||
domain: DomainRenewData,
|
||||
}
|
||||
|
||||
|
|
|
@ -87,24 +87,25 @@ pub type EppDomainRgpRestoreReport =
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct RgpRestoreReportData {
|
||||
/// The pre-delete registration date
|
||||
#[serde(rename = "preData")]
|
||||
#[serde(rename = "rgp:preData", alias = "preData")]
|
||||
pre_data: StringValue,
|
||||
/// The post-delete registration date
|
||||
#[serde(rename = "postData")]
|
||||
#[serde(rename = "rgp:postData", alias = "postData")]
|
||||
post_data: StringValue,
|
||||
/// The domain deletion date
|
||||
#[serde(rename = "delTime")]
|
||||
#[serde(rename = "rgp:delTime", alias = "delTime")]
|
||||
deleted_at: StringValue,
|
||||
/// The domain restore request date
|
||||
#[serde(rename = "resTime")]
|
||||
#[serde(rename = "rgp:resTime", alias = "resTime")]
|
||||
restored_at: StringValue,
|
||||
/// The reason for domain restoration
|
||||
#[serde(rename = "resReason")]
|
||||
#[serde(rename = "rgp:resReason", alias = "resReason")]
|
||||
restore_reason: StringValue,
|
||||
/// The registrar's statements on the domain restoration
|
||||
#[serde(rename = "statement")]
|
||||
#[serde(rename = "rgp:statement", alias = "statement")]
|
||||
statements: Vec<StringValue>,
|
||||
/// Other remarks for domain restoration
|
||||
#[serde(rename = "rgp:other", alias = "other")]
|
||||
other: StringValue,
|
||||
}
|
||||
|
||||
|
@ -114,16 +115,19 @@ pub struct RgpRestoreReportSection {
|
|||
/// The value of the op attribute for the <restore> tag
|
||||
op: String,
|
||||
/// Data for the <report> tag
|
||||
#[serde(rename = "rgp:report", alias = "report")]
|
||||
report: RgpRestoreReportData,
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, ElementName)]
|
||||
#[element_name(name = "update")]
|
||||
#[element_name(name = "rgp:update")]
|
||||
/// Type for EPP XML <check> command for domains
|
||||
pub struct RgpRestoreReport {
|
||||
/// XML namespace for the RGP restore extension
|
||||
#[serde(rename = "xmlns:rgp", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The object holding the list of domains to be checked
|
||||
#[serde(rename = "rgp:restore", alias = "restore")]
|
||||
restore: RgpRestoreReportSection,
|
||||
}
|
||||
|
||||
|
|
|
@ -68,12 +68,14 @@ pub struct RgpRestoreRequestData {
|
|||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, ElementName)]
|
||||
#[element_name(name = "update")]
|
||||
#[element_name(name = "rgp:update")]
|
||||
/// Type for EPP XML <check> command for domains
|
||||
pub struct RgpRestoreRequest {
|
||||
/// XML namespace for the RGP restore extension
|
||||
#[serde(rename = "xmlns:rgp", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The object holding the list of domains to be checked
|
||||
#[serde(rename = "rgp:restore", alias = "restore")]
|
||||
restore: RgpRestoreRequestData,
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use epp_client_macros::*;
|
||||
|
||||
use crate::epp::object::data::{AuthInfo, Period};
|
||||
use crate::epp::object::data::{DomainAuthInfo, Period};
|
||||
use crate::epp::object::{ElementName, EppObject, StringValue, StringValueTrait};
|
||||
use crate::epp::request::Command;
|
||||
use crate::epp::xml::EPP_DOMAIN_XMLNS;
|
||||
|
@ -262,16 +262,19 @@ pub type EppDomainTransferQuery = EppObject<Command<DomainTransfer>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainTransferData {
|
||||
/// XML namespace for domain commands
|
||||
#[serde(rename = "xmlns:domain")]
|
||||
xmlns: String,
|
||||
/// The name of the domain under transfer
|
||||
#[serde(rename = "domain:name")]
|
||||
name: StringValue,
|
||||
/// The period of renewal upon a successful transfer
|
||||
/// Only applicable in case of a transfer request
|
||||
#[serde(rename = "domain:period")]
|
||||
period: Option<Period>,
|
||||
/// The authInfo for the domain under transfer
|
||||
/// Only applicable to domain transfer and domain transfer query requests
|
||||
#[serde(rename = "authInfo")]
|
||||
auth_info: Option<AuthInfo>,
|
||||
#[serde(rename = "domain:authInfo")]
|
||||
auth_info: Option<DomainAuthInfo>,
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, ElementName)]
|
||||
|
@ -283,7 +286,7 @@ pub struct DomainTransfer {
|
|||
#[serde(rename = "op")]
|
||||
operation: String,
|
||||
/// The data under the <transfer> tag in the transfer request
|
||||
#[serde(rename = "transfer")]
|
||||
#[serde(rename = "domain:transfer")]
|
||||
domain: DomainTransferData,
|
||||
}
|
||||
|
||||
|
@ -302,7 +305,7 @@ impl EppDomainTransferRequest {
|
|||
xmlns: EPP_DOMAIN_XMLNS.to_string(),
|
||||
name: name.to_string_value(),
|
||||
period: Some(Period::new(years)),
|
||||
auth_info: Some(AuthInfo::new(auth_password)),
|
||||
auth_info: Some(DomainAuthInfo::new(auth_password)),
|
||||
},
|
||||
},
|
||||
client_tr_id,
|
||||
|
@ -379,7 +382,7 @@ impl EppDomainTransferQuery {
|
|||
xmlns: EPP_DOMAIN_XMLNS.to_string(),
|
||||
name: name.to_string_value(),
|
||||
period: None,
|
||||
auth_info: Some(AuthInfo::new(auth_password)),
|
||||
auth_info: Some(DomainAuthInfo::new(auth_password)),
|
||||
},
|
||||
},
|
||||
client_tr_id,
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use epp_client_macros::*;
|
||||
|
||||
use crate::epp::object::data::{AuthInfo, DomainContact, DomainStatus, HostList};
|
||||
use crate::epp::object::data::{DomainAuthInfo, DomainContact, DomainStatus, HostList};
|
||||
use crate::epp::object::{ElementName, EppObject, StringValue, StringValueTrait};
|
||||
use crate::epp::request::Command;
|
||||
use crate::epp::xml::EPP_DOMAIN_XMLNS;
|
||||
|
@ -86,10 +86,11 @@ pub type EppDomainUpdate = EppObject<Command<DomainUpdate>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainChangeInfo {
|
||||
/// The new registrant contact for the domain
|
||||
#[serde(rename = "domain:registrant", alias = "update")]
|
||||
pub registrant: Option<StringValue>,
|
||||
/// The new auth info for the domain
|
||||
#[serde(rename = "authInfo")]
|
||||
pub auth_info: Option<AuthInfo>,
|
||||
#[serde(rename = "domain:authInfo", alias = "authInfo")]
|
||||
pub auth_info: Option<DomainAuthInfo>,
|
||||
}
|
||||
|
||||
/// Type for elements under the <add> and <rem> tags for domain update
|
||||
|
@ -97,13 +98,13 @@ pub struct DomainChangeInfo {
|
|||
pub struct DomainAddRemove {
|
||||
/// The list of nameservers to add or remove
|
||||
/// Type T can be either a `HostObjList` or `HostAttrList`
|
||||
#[serde(rename = "ns")]
|
||||
#[serde(rename = "domain:ns", alias = "ns")]
|
||||
pub ns: Option<HostList>,
|
||||
/// The list of contacts to add to or remove from the domain
|
||||
#[serde(rename = "contact")]
|
||||
#[serde(rename = "domain:contact", alias = "contact")]
|
||||
pub contacts: Option<Vec<DomainContact>>,
|
||||
/// The list of statuses to add to or remove from the domain
|
||||
#[serde(rename = "status")]
|
||||
#[serde(rename = "domain:status", alias = "status")]
|
||||
pub statuses: Option<Vec<DomainStatus>>,
|
||||
}
|
||||
|
||||
|
@ -111,18 +112,21 @@ pub struct DomainAddRemove {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct DomainUpdateData {
|
||||
/// XML namespace for domain commands
|
||||
#[serde(rename = "xmlns:domain", alias = "xmlns")]
|
||||
pub xmlns: String,
|
||||
/// The name of the domain to update
|
||||
#[serde(rename = "domain:name", alias = "name")]
|
||||
pub name: StringValue,
|
||||
/// `DomainAddRemove` Object containing the list of elements to be added
|
||||
/// to the domain
|
||||
#[serde(rename = "domain:add", alias = "add")]
|
||||
pub add: Option<DomainAddRemove>,
|
||||
/// `DomainAddRemove` Object containing the list of elements to be removed
|
||||
/// from the domain
|
||||
#[serde(rename = "rem")]
|
||||
#[serde(rename = "domain:rem", alias = "rem")]
|
||||
pub remove: Option<DomainAddRemove>,
|
||||
/// The data under the <chg> tag for domain update
|
||||
#[serde(rename = "chg")]
|
||||
#[serde(rename = "domain:chg", alias = "chg")]
|
||||
pub change_info: Option<DomainChangeInfo>,
|
||||
}
|
||||
|
||||
|
@ -130,7 +134,7 @@ pub struct DomainUpdateData {
|
|||
#[element_name(name = "update")]
|
||||
/// Type for EPP XML <update> command for domains
|
||||
pub struct DomainUpdate {
|
||||
#[serde(rename = "update")]
|
||||
#[serde(rename = "domain:update", alias = "update")]
|
||||
pub domain: DomainUpdateData,
|
||||
}
|
||||
|
||||
|
|
|
@ -62,9 +62,10 @@ pub type EppHostCheck = EppObject<Command<HostCheck>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostList {
|
||||
/// XML namespace for host commands
|
||||
#[serde(rename = "xmlns:host", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// List of hosts to be checked for availability
|
||||
#[serde(rename = "name")]
|
||||
#[serde(rename = "host:name", alias = "name")]
|
||||
pub hosts: Vec<StringValue>,
|
||||
}
|
||||
|
||||
|
@ -73,7 +74,7 @@ pub struct HostList {
|
|||
/// Type for EPP XML <check> command for hosts
|
||||
pub struct HostCheck {
|
||||
/// The instance holding the list of hosts to be checked
|
||||
#[serde(rename = "check")]
|
||||
#[serde(rename = "host:check", alias = "check")]
|
||||
list: HostList,
|
||||
}
|
||||
|
||||
|
|
|
@ -67,11 +67,13 @@ pub type EppHostCreate = EppObject<Command<HostCreate>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostCreateData {
|
||||
/// XML namespace for host commands
|
||||
#[serde(rename = "xmlns:host", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The name of the host to be created
|
||||
#[serde(rename = "host:name", alias = "name")]
|
||||
pub name: StringValue,
|
||||
/// The list of IP addresses for the host
|
||||
#[serde(rename = "addr")]
|
||||
#[serde(rename = "host:addr", alias = "addr")]
|
||||
pub addresses: Option<Vec<HostAddr>>,
|
||||
}
|
||||
|
||||
|
@ -80,7 +82,7 @@ pub struct HostCreateData {
|
|||
/// Type for EPP XML <create> command for hosts
|
||||
pub struct HostCreate {
|
||||
/// The instance holding the data for the host to be created
|
||||
#[serde(rename = "create")]
|
||||
#[serde(rename = "host:create", alias = "create")]
|
||||
host: HostCreateData,
|
||||
}
|
||||
|
||||
|
|
|
@ -59,8 +59,10 @@ pub type EppHostDelete = EppObject<Command<HostDelete>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostDeleteData {
|
||||
/// XML namespace for host commands
|
||||
#[serde(rename = "xmlns:host", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The host to be deleted
|
||||
#[serde(rename = "host:name", alias = "name")]
|
||||
name: StringValue,
|
||||
}
|
||||
|
||||
|
@ -69,7 +71,7 @@ pub struct HostDeleteData {
|
|||
/// Type for EPP XML <delete> command for hosts
|
||||
pub struct HostDelete {
|
||||
/// The instance holding the data for the host to be deleted
|
||||
#[serde(rename = "delete")]
|
||||
#[serde(rename = "host:delete", alias = "delete")]
|
||||
host: HostDeleteData,
|
||||
}
|
||||
|
||||
|
|
|
@ -59,8 +59,10 @@ pub type EppHostInfo = EppObject<Command<HostInfo>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostInfoData {
|
||||
/// XML namespace for host commands
|
||||
#[serde(rename = "xmlns:host", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The name of the host to be queried
|
||||
#[serde(rename = "host:name", alias = "name")]
|
||||
name: StringValue,
|
||||
}
|
||||
|
||||
|
@ -69,7 +71,7 @@ pub struct HostInfoData {
|
|||
/// Type for EPP XML <info> command for hosts
|
||||
pub struct HostInfo {
|
||||
/// The instance holding the data for the host query
|
||||
#[serde(rename = "info")]
|
||||
#[serde(rename = "host:info", alias = "info")]
|
||||
info: HostInfoData,
|
||||
}
|
||||
|
||||
|
|
|
@ -83,6 +83,7 @@ pub type EppHostUpdate = EppObject<Command<HostUpdate>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostChangeInfo {
|
||||
/// The new name for the host
|
||||
#[serde(rename = "host:name", alias = "name")]
|
||||
pub name: StringValue,
|
||||
}
|
||||
|
||||
|
@ -90,10 +91,10 @@ pub struct HostChangeInfo {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostAddRemove {
|
||||
/// The IP addresses to be added to or removed from the host
|
||||
#[serde(rename = "addr")]
|
||||
#[serde(rename = "host:addr", alias = "addr")]
|
||||
pub addresses: Option<Vec<HostAddr>>,
|
||||
/// The statuses to be added to or removed from the host
|
||||
#[serde(rename = "status")]
|
||||
#[serde(rename = "host:status", alias = "status")]
|
||||
pub statuses: Option<Vec<HostStatus>>,
|
||||
}
|
||||
|
||||
|
@ -101,16 +102,19 @@ pub struct HostAddRemove {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct HostUpdateData {
|
||||
/// XML namespace for host commands
|
||||
#[serde(rename = "xmlns:host", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The name of the host
|
||||
#[serde(rename = "host:name", alias = "name")]
|
||||
name: StringValue,
|
||||
/// The IP addresses and statuses to be added to the host
|
||||
#[serde(rename = "host:add", alias = "add")]
|
||||
add: Option<HostAddRemove>,
|
||||
/// The IP addresses and statuses to be removed from the host
|
||||
#[serde(rename = "rem")]
|
||||
#[serde(rename = "host:rem", alias = "rem")]
|
||||
remove: Option<HostAddRemove>,
|
||||
/// The host details that need to be updated
|
||||
#[serde(rename = "chg")]
|
||||
#[serde(rename = "host:chg", alias = "chg")]
|
||||
change_info: Option<HostChangeInfo>,
|
||||
}
|
||||
|
||||
|
@ -119,7 +123,7 @@ pub struct HostUpdateData {
|
|||
/// Type for EPP XML <update> command for hosts
|
||||
pub struct HostUpdate {
|
||||
/// The instance holding the data for the host to be updated
|
||||
#[serde(rename = "update")]
|
||||
#[serde(rename = "host:update", alias = "update")]
|
||||
host: HostUpdateData,
|
||||
}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
use crate::epp::object::data::{AuthInfo, ContactStatus, Phone, PostalInfo};
|
||||
use crate::epp::object::data::{ContactAuthInfo, ContactStatus, Phone, PostalInfo};
|
||||
use crate::epp::object::{EppObject, StringValue};
|
||||
use crate::epp::response::CommandResponse;
|
||||
|
||||
|
@ -51,7 +51,7 @@ pub struct ContactInfoData {
|
|||
pub transferred_at: Option<StringValue>,
|
||||
/// The contact auth info
|
||||
#[serde(rename = "authInfo")]
|
||||
pub auth_info: Option<AuthInfo>,
|
||||
pub auth_info: Option<ContactAuthInfo>,
|
||||
}
|
||||
|
||||
/// Type that represents the <resData> tag for contact info response
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
use crate::epp::object::data::{AuthInfo, DomainContact, DomainStatus, HostAttr};
|
||||
use crate::epp::object::data::{DomainAuthInfo, DomainContact, DomainStatus, HostAttr};
|
||||
use crate::epp::object::{EppObject, StringValue};
|
||||
use crate::epp::response::domain::rgp::request::RgpRequestResult;
|
||||
use crate::epp::response::CommandResponseWithExtension;
|
||||
|
@ -69,7 +69,7 @@ pub struct DomainInfoData {
|
|||
pub transferred_at: Option<StringValue>,
|
||||
/// The domain auth info
|
||||
#[serde(rename = "authInfo")]
|
||||
pub auth_info: Option<AuthInfo>,
|
||||
pub auth_info: Option<DomainAuthInfo>,
|
||||
}
|
||||
|
||||
/// Type that represents the <resData> tag for domain info response
|
||||
|
|
|
@ -11,27 +11,28 @@ pub type EppMessagePollResponse = EppObject<CommandResponse<MessagePollResult>>;
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct MessageDomainTransferData {
|
||||
/// XML namespace for message response data
|
||||
#[serde(rename = "xmlns:obj")]
|
||||
#[serde(rename = "xmlns:obj", alias = "xmlns")]
|
||||
xmlns: String,
|
||||
/// The name of the domain under transfer
|
||||
#[serde(rename = "obj:name", alias = "name")]
|
||||
pub name: StringValue,
|
||||
/// The domain transfer status
|
||||
#[serde(rename = "trStatus")]
|
||||
#[serde(rename = "obj:trStatus", alias = "trStatus")]
|
||||
pub transfer_status: StringValue,
|
||||
/// The epp user who requested the transfer
|
||||
#[serde(rename = "reID")]
|
||||
#[serde(rename = "obj:reID", alias = "reID")]
|
||||
pub requester_id: StringValue,
|
||||
/// The date of the transfer request
|
||||
#[serde(rename = "reDate")]
|
||||
#[serde(rename = "obj:reDate", alias = "reDate")]
|
||||
pub requested_at: StringValue,
|
||||
/// The epp user who should acknowledge the transfer request
|
||||
#[serde(rename = "acID")]
|
||||
#[serde(rename = "obj:acID", alias = "acID")]
|
||||
pub ack_id: StringValue,
|
||||
/// The date by which the transfer request should be acknowledged
|
||||
#[serde(rename = "acDate")]
|
||||
#[serde(rename = "obj:acDate", alias = "acDate")]
|
||||
pub ack_by: StringValue,
|
||||
/// The domain expiry date
|
||||
#[serde(rename = "exDate")]
|
||||
#[serde(rename = "obj:exDate", alias = "exDate")]
|
||||
pub expiring_at: StringValue,
|
||||
}
|
||||
|
||||
|
@ -39,6 +40,6 @@ pub struct MessageDomainTransferData {
|
|||
#[derive(Serialize, Deserialize, Debug)]
|
||||
pub struct MessagePollResult {
|
||||
/// Data under the <trnData> tag
|
||||
#[serde(rename = "trnData")]
|
||||
#[serde(rename = "obj:trnData", alias = "trnData")]
|
||||
pub message_data: MessageDomainTransferData,
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ mod request {
|
|||
use super::super::get_xml;
|
||||
use super::super::CLTRID;
|
||||
use crate::epp::object::data::{
|
||||
Address, AuthInfo, ContactStatus, DomainContact, DomainStatus, HostAddr, HostAttr,
|
||||
Address, ContactStatus, DomainAuthInfo, DomainContact, DomainStatus, HostAddr, HostAttr,
|
||||
HostStatus, Phone, PostalInfo,
|
||||
};
|
||||
use crate::epp::object::StringValueTrait;
|
||||
|
@ -291,7 +291,7 @@ mod request {
|
|||
|
||||
let change_info = DomainChangeInfo {
|
||||
registrant: None,
|
||||
auth_info: Some(AuthInfo::new("epP5uthd#v")),
|
||||
auth_info: Some(DomainAuthInfo::new("epP5uthd#v")),
|
||||
};
|
||||
|
||||
object.add(add);
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<check>
|
||||
<check xmlns="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<id>eppdev-contact-1</id>
|
||||
<id>eppdev-contact-2</id>
|
||||
</check>
|
||||
</check>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<check>
|
||||
<contact:check xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-1</contact:id>
|
||||
<contact:id>eppdev-contact-2</contact:id>
|
||||
</contact:check>
|
||||
</check>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,29 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<create>
|
||||
<create xmlns="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<id>eppdev-contact-3</id>
|
||||
<postalInfo type="int">
|
||||
<name>John Doe</name>
|
||||
<org>Acme Widgets</org>
|
||||
<addr>
|
||||
<street>58</street>
|
||||
<street>Orchid Road</street>
|
||||
<city>Paris</city>
|
||||
<sp>Paris</sp>
|
||||
<pc>392374</pc>
|
||||
<cc>FR</cc>
|
||||
</addr>
|
||||
</postalInfo>
|
||||
<voice x="123">+33.47237942</voice>
|
||||
<fax x="677">+33.86698799</fax>
|
||||
<email>contact@eppdev.net</email>
|
||||
<authInfo>
|
||||
<pw>eppdev-387323</pw>
|
||||
</authInfo>
|
||||
</create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<create>
|
||||
<contact:create xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-3</contact:id>
|
||||
<contact:postalInfo type="int">
|
||||
<contact:name>John Doe</contact:name>
|
||||
<contact:org>Acme Widgets</contact:org>
|
||||
<contact:addr>
|
||||
<contact:street>58</contact:street>
|
||||
<contact:street>Orchid Road</contact:street>
|
||||
<contact:city>Paris</contact:city>
|
||||
<contact:sp>Paris</contact:sp>
|
||||
<contact:pc>392374</contact:pc>
|
||||
<contact:cc>FR</contact:cc>
|
||||
</contact:addr>
|
||||
</contact:postalInfo>
|
||||
<contact:voice x="123">+33.47237942</contact:voice>
|
||||
<contact:fax x="677">+33.86698799</contact:fax>
|
||||
<contact:email>contact@eppdev.net</contact:email>
|
||||
<contact:authInfo>
|
||||
<contact:pw>eppdev-387323</contact:pw>
|
||||
</contact:authInfo>
|
||||
</contact:create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<delete>
|
||||
<delete xmlns="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<id>eppdev-contact-3</id>
|
||||
</delete>
|
||||
</delete>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<delete>
|
||||
<contact:delete xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-3</contact:id>
|
||||
</contact:delete>
|
||||
</delete>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,14 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<info>
|
||||
<info xmlns="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<id>eppdev-contact-3</id>
|
||||
<authInfo>
|
||||
<pw>eppdev-387323</pw>
|
||||
</authInfo>
|
||||
</info>
|
||||
</info>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<info>
|
||||
<contact:info xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-3</contact:id>
|
||||
<contact:authInfo>
|
||||
<contact:pw>eppdev-387323</contact:pw>
|
||||
</contact:authInfo>
|
||||
</contact:info>
|
||||
</info>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,36 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<update>
|
||||
<update xmlns="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<id>eppdev-contact-3</id>
|
||||
<add>
|
||||
<status s="clientTransferProhibited"/>
|
||||
</add>
|
||||
<rem>
|
||||
<status s="clientDeleteProhibited"/>
|
||||
</rem>
|
||||
<chg>
|
||||
<postalInfo type="loc">
|
||||
<name>John Doe</name>
|
||||
<org>Acme Widgets</org>
|
||||
<addr>
|
||||
<street>58</street>
|
||||
<street>Orchid Road</street>
|
||||
<city>Paris</city>
|
||||
<sp>Paris</sp>
|
||||
<pc>392374</pc>
|
||||
<cc>FR</cc>
|
||||
</addr>
|
||||
</postalInfo>
|
||||
<voice>+33.47237942</voice>
|
||||
<email>newemail@eppdev.net</email>
|
||||
<authInfo>
|
||||
<pw>eppdev-387323</pw>
|
||||
</authInfo>
|
||||
</chg>
|
||||
</update>
|
||||
</update>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<update>
|
||||
<contact:update xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-3</contact:id>
|
||||
<contact:add>
|
||||
<contact:status s="clientTransferProhibited"/>
|
||||
</contact:add>
|
||||
<contact:rem>
|
||||
<contact:status s="clientDeleteProhibited"/>
|
||||
</contact:rem>
|
||||
<contact:chg>
|
||||
<contact:postalInfo type="loc">
|
||||
<contact:name>John Doe</contact:name>
|
||||
<contact:org>Acme Widgets</contact:org>
|
||||
<contact:addr>
|
||||
<contact:street>58</contact:street>
|
||||
<contact:street>Orchid Road</contact:street>
|
||||
<contact:city>Paris</contact:city>
|
||||
<contact:sp>Paris</contact:sp>
|
||||
<contact:pc>392374</contact:pc>
|
||||
<contact:cc>FR</contact:cc>
|
||||
</contact:addr>
|
||||
</contact:postalInfo>
|
||||
<contact:voice>+33.47237942</contact:voice>
|
||||
<contact:email>newemail@eppdev.net</contact:email>
|
||||
<contact:authInfo>
|
||||
<contact:pw>eppdev-387323</contact:pw>
|
||||
</contact:authInfo>
|
||||
</contact:chg>
|
||||
</contact:update>
|
||||
</update>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<check>
|
||||
<check xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev.com</name>
|
||||
<name>eppdev.net</name>
|
||||
</check>
|
||||
</check>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<check>
|
||||
<domain:check xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev.com</domain:name>
|
||||
<domain:name>eppdev.net</domain:name>
|
||||
</domain:check>
|
||||
</check>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,19 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<create>
|
||||
<create xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev-1.com</name>
|
||||
<period unit="y">1</period>
|
||||
<registrant>eppdev-contact-3</registrant>
|
||||
<contact type="admin">eppdev-contact-3</contact>
|
||||
<contact type="tech">eppdev-contact-3</contact>
|
||||
<contact type="billing">eppdev-contact-3</contact>
|
||||
<authInfo>
|
||||
<pw>epP4uthd#v</pw>
|
||||
</authInfo>
|
||||
</create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<create>
|
||||
<domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-1.com</domain:name>
|
||||
<domain:period unit="y">1</domain:period>
|
||||
<domain:registrant>eppdev-contact-3</domain:registrant>
|
||||
<domain:contact type="admin">eppdev-contact-3</domain:contact>
|
||||
<domain:contact type="tech">eppdev-contact-3</domain:contact>
|
||||
<domain:contact type="billing">eppdev-contact-3</domain:contact>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP4uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,29 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<create>
|
||||
<create xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev-2.com</name>
|
||||
<period unit="y">1</period>
|
||||
<ns>
|
||||
<hostAttr>
|
||||
<hostName>ns1.eppdev-1.com</hostName>
|
||||
</hostAttr>
|
||||
<hostAttr>
|
||||
<hostName>ns2.eppdev-1.com</hostName>
|
||||
<hostAddr ip="v4">177.232.12.58</hostAddr>
|
||||
<hostAddr ip="v6">2404:6800:4001:801::200e</hostAddr>
|
||||
</hostAttr>
|
||||
</ns>
|
||||
<registrant>eppdev-contact-3</registrant>
|
||||
<contact type="admin">eppdev-contact-3</contact>
|
||||
<contact type="tech">eppdev-contact-3</contact>
|
||||
<contact type="billing">eppdev-contact-3</contact>
|
||||
<authInfo>
|
||||
<pw>epP4uthd#v</pw>
|
||||
</authInfo>
|
||||
</create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<create>
|
||||
<domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-2.com</domain:name>
|
||||
<domain:period unit="y">1</domain:period>
|
||||
<domain:ns>
|
||||
<domain:hostAttr>
|
||||
<domain:hostName>ns1.eppdev-1.com</domain:hostName>
|
||||
</domain:hostAttr>
|
||||
<domain:hostAttr>
|
||||
<domain:hostName>ns2.eppdev-1.com</domain:hostName>
|
||||
<domain:hostAddr ip="v4">177.232.12.58</domain:hostAddr>
|
||||
<domain:hostAddr ip="v6">2404:6800:4001:801::200e</domain:hostAddr>
|
||||
</domain:hostAttr>
|
||||
</domain:ns>
|
||||
<domain:registrant>eppdev-contact-3</domain:registrant>
|
||||
<domain:contact type="admin">eppdev-contact-3</domain:contact>
|
||||
<domain:contact type="tech">eppdev-contact-3</domain:contact>
|
||||
<domain:contact type="billing">eppdev-contact-3</domain:contact>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP4uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,23 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<create>
|
||||
<create xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev-1.com</name>
|
||||
<period unit="y">1</period>
|
||||
<ns>
|
||||
<hostObj>ns1.test.com</hostObj>
|
||||
<hostObj>ns2.test.com</hostObj>
|
||||
</ns>
|
||||
<registrant>eppdev-contact-3</registrant>
|
||||
<contact type="admin">eppdev-contact-3</contact>
|
||||
<contact type="tech">eppdev-contact-3</contact>
|
||||
<contact type="billing">eppdev-contact-3</contact>
|
||||
<authInfo>
|
||||
<pw>epP4uthd#v</pw>
|
||||
</authInfo>
|
||||
</create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<create>
|
||||
<domain:create xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-1.com</domain:name>
|
||||
<domain:period unit="y">1</domain:period>
|
||||
<domain:ns>
|
||||
<domain:hostObj>ns1.test.com</domain:hostObj>
|
||||
<domain:hostObj>ns2.test.com</domain:hostObj>
|
||||
</domain:ns>
|
||||
<domain:registrant>eppdev-contact-3</domain:registrant>
|
||||
<domain:contact type="admin">eppdev-contact-3</domain:contact>
|
||||
<domain:contact type="tech">eppdev-contact-3</domain:contact>
|
||||
<domain:contact type="billing">eppdev-contact-3</domain:contact>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP4uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<delete>
|
||||
<delete xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev.com</name>
|
||||
</delete>
|
||||
</delete>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<delete>
|
||||
<domain:delete xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev.com</domain:name>
|
||||
</domain:delete>
|
||||
</delete>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<info>
|
||||
<info xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name hosts="all">eppdev.com</name>
|
||||
</info>
|
||||
</info>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<info>
|
||||
<domain:info xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name hosts="all">eppdev.com</domain:name>
|
||||
</domain:info>
|
||||
</info>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,13 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<renew>
|
||||
<renew xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev.com</name>
|
||||
<curExpDate>2022-07-23</curExpDate>
|
||||
<period unit="y">1</period>
|
||||
</renew>
|
||||
</renew>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<renew>
|
||||
<domain:renew xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev.com</domain:name>
|
||||
<domain:curExpDate>2022-07-23</domain:curExpDate>
|
||||
<domain:period unit="y">1</domain:period>
|
||||
</domain:renew>
|
||||
</renew>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,28 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<update>
|
||||
<update xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev.com</name>
|
||||
<chg/>
|
||||
</update>
|
||||
</update>
|
||||
<extension>
|
||||
<update xmlns="urn:ietf:params:xml:ns:rgp-1.0">
|
||||
<restore op="report">
|
||||
<report>
|
||||
<preData>Pre-delete registration data goes here. Both XML and free text are allowed.</preData>
|
||||
<postData>Post-restore registration data goes here. Both XML and free text are allowed.</postData>
|
||||
<delTime>2021-07-10T22:00:00Z</delTime>
|
||||
<resTime>2021-07-20T22:00:00Z</resTime>
|
||||
<resReason>Registrant error.</resReason>
|
||||
<statement>This registrar has not restored the Registered Name in order to assume the rights to use or sell the Registered Name for itself or for any third party.</statement>
|
||||
<statement>The information in this report is true to best of this registrar's knowledge, and this registrar acknowledges that intentionally supplying false information in this report shall constitute an incurable material breach of the Registry-Registrar Agreement.</statement>
|
||||
<other>Supporting information goes here.</other>
|
||||
</report>
|
||||
</restore>
|
||||
</update>
|
||||
</extension>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<update>
|
||||
<domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev.com</domain:name>
|
||||
<domain:chg/>
|
||||
</domain:update>
|
||||
</update>
|
||||
<extension>
|
||||
<rgp:update xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0">
|
||||
<rgp:restore op="report">
|
||||
<rgp:report>
|
||||
<rgp:preData>Pre-delete registration data goes here. Both XML and free text are allowed.</rgp:preData>
|
||||
<rgp:postData>Post-restore registration data goes here. Both XML and free text are allowed.</rgp:postData>
|
||||
<rgp:delTime>2021-07-10T22:00:00Z</rgp:delTime>
|
||||
<rgp:resTime>2021-07-20T22:00:00Z</rgp:resTime>
|
||||
<rgp:resReason>Registrant error.</rgp:resReason>
|
||||
<rgp:statement>This registrar has not restored the Registered Name in order to assume the rights to use or sell the Registered Name for itself or for any third party.</rgp:statement>
|
||||
<rgp:statement>The information in this report is true to best of this registrar's knowledge, and this registrar acknowledges that intentionally supplying false information in this report shall constitute an incurable material breach of the Registry-Registrar Agreement.</rgp:statement>
|
||||
<rgp:other>Supporting information goes here.</rgp:other>
|
||||
</rgp:report>
|
||||
</rgp:restore>
|
||||
</rgp:update>
|
||||
</extension>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,17 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<update>
|
||||
<update xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev.com</name>
|
||||
<chg/>
|
||||
</update>
|
||||
</update>
|
||||
<extension>
|
||||
<update xmlns="urn:ietf:params:xml:ns:rgp-1.0">
|
||||
<restore op="request"/>
|
||||
</update>
|
||||
</extension>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<update>
|
||||
<domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev.com</domain:name>
|
||||
<domain:chg/>
|
||||
</domain:update>
|
||||
</update>
|
||||
<extension>
|
||||
<rgp:update xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0">
|
||||
<rgp:restore op="request"/>
|
||||
</rgp:update>
|
||||
</extension>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<transfer op="approve">
|
||||
<transfer xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>testing.com</name>
|
||||
</transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<transfer op="approve">
|
||||
<domain:transfer xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>testing.com</domain:name>
|
||||
</domain:transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<transfer op="cancel">
|
||||
<transfer xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>testing.com</name>
|
||||
</transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<transfer op="cancel">
|
||||
<domain:transfer xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>testing.com</domain:name>
|
||||
</domain:transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,14 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<transfer op="query">
|
||||
<transfer xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>testing.com</name>
|
||||
<authInfo>
|
||||
<pw>epP4uthd#v</pw>
|
||||
</authInfo>
|
||||
</transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<transfer op="query">
|
||||
<domain:transfer xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>testing.com</domain:name>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP4uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<transfer op="reject">
|
||||
<transfer xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>testing.com</name>
|
||||
</transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<transfer op="reject">
|
||||
<domain:transfer xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>testing.com</domain:name>
|
||||
</domain:transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,15 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<transfer op="request">
|
||||
<transfer xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>testing.com</name>
|
||||
<period unit="y">1</period>
|
||||
<authInfo>
|
||||
<pw>epP4uthd#v</pw>
|
||||
</authInfo>
|
||||
</transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<transfer op="request">
|
||||
<domain:transfer xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>testing.com</domain:name>
|
||||
<domain:period unit="y">1</domain:period>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP4uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:transfer>
|
||||
</transfer>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,22 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<update>
|
||||
<update xmlns="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<name>eppdev.com</name>
|
||||
<add>
|
||||
<status s="clientDeleteProhibited"/>
|
||||
</add>
|
||||
<rem>
|
||||
<contact type="billing">eppdev-contact-2</contact>
|
||||
</rem>
|
||||
<chg>
|
||||
<authInfo>
|
||||
<pw>epP5uthd#v</pw>
|
||||
</authInfo>
|
||||
</chg>
|
||||
</update>
|
||||
</update>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<update>
|
||||
<domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev.com</domain:name>
|
||||
<domain:add>
|
||||
<domain:status s="clientDeleteProhibited"/>
|
||||
</domain:add>
|
||||
<domain:rem>
|
||||
<domain:contact type="billing">eppdev-contact-2</domain:contact>
|
||||
</domain:rem>
|
||||
<domain:chg>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP5uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:chg>
|
||||
</domain:update>
|
||||
</update>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<check>
|
||||
<check xmlns="urn:ietf:params:xml:ns:host-1.0">
|
||||
<name>ns1.eppdev-1.com</name>
|
||||
<name>host1.eppdev-1.com</name>
|
||||
</check>
|
||||
</check>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<check>
|
||||
<host:check xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>ns1.eppdev-1.com</host:name>
|
||||
<host:name>host1.eppdev-1.com</host:name>
|
||||
</host:check>
|
||||
</check>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,13 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<create>
|
||||
<create xmlns="urn:ietf:params:xml:ns:host-1.0">
|
||||
<name>host1.eppdev-1.com</name>
|
||||
<addr ip="v4">29.245.122.14</addr>
|
||||
<addr ip="v6">2404:6800:4001:801::200e</addr>
|
||||
</create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<create>
|
||||
<host:create xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>host1.eppdev-1.com</host:name>
|
||||
<host:addr ip="v4">29.245.122.14</host:addr>
|
||||
<host:addr ip="v6">2404:6800:4001:801::200e</host:addr>
|
||||
</host:create>
|
||||
</create>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<delete>
|
||||
<delete xmlns="urn:ietf:params:xml:ns:host-1.0">
|
||||
<name>ns1.eppdev-1.com</name>
|
||||
</delete>
|
||||
</delete>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<delete>
|
||||
<host:delete xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>ns1.eppdev-1.com</host:name>
|
||||
</host:delete>
|
||||
</delete>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,11 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<info>
|
||||
<info xmlns="urn:ietf:params:xml:ns:host-1.0">
|
||||
<name>ns1.eppdev-1.com</name>
|
||||
</info>
|
||||
</info>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<info>
|
||||
<host:info xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>ns1.eppdev-1.com</host:name>
|
||||
</host:info>
|
||||
</info>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,20 +1,20 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<update>
|
||||
<update xmlns="urn:ietf:params:xml:ns:host-1.0">
|
||||
<name>host1.eppdev-1.com</name>
|
||||
<add>
|
||||
<addr ip="v6">2404:6800:4001:801::200e</addr>
|
||||
</add>
|
||||
<rem>
|
||||
<status s="clientDeleteProhibited"/>
|
||||
</rem>
|
||||
<chg>
|
||||
<name>host2.eppdev-1.com</name>
|
||||
</chg>
|
||||
</update>
|
||||
</update>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<update>
|
||||
<host:update xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>host1.eppdev-1.com</host:name>
|
||||
<host:add>
|
||||
<host:addr ip="v6">2404:6800:4001:801::200e</host:addr>
|
||||
</host:add>
|
||||
<host:rem>
|
||||
<host:status s="clientDeleteProhibited"/>
|
||||
</host:rem>
|
||||
<host:chg>
|
||||
<host:name>host2.eppdev-1.com</host:name>
|
||||
</host:chg>
|
||||
</host:update>
|
||||
</update>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,22 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<login>
|
||||
<clID>username</clID>
|
||||
<pw>password</pw>
|
||||
<options>
|
||||
<version>1.0</version>
|
||||
<lang>en</lang>
|
||||
</options>
|
||||
<svcs>
|
||||
<objURI>urn:ietf:params:xml:ns:host-1.0</objURI>
|
||||
<objURI>urn:ietf:params:xml:ns:contact-1.0</objURI>
|
||||
<objURI>urn:ietf:params:xml:ns:domain-1.0</objURI>
|
||||
<svcExtension>
|
||||
<extURI>http://schema.ispapi.net/epp/xml/keyvalue-1.0</extURI>
|
||||
</svcExtension>
|
||||
</svcs>
|
||||
</login>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<login>
|
||||
<clID>username</clID>
|
||||
<pw>password</pw>
|
||||
<options>
|
||||
<version>1.0</version>
|
||||
<lang>en</lang>
|
||||
</options>
|
||||
<svcs>
|
||||
<objURI>urn:ietf:params:xml:ns:host-1.0</objURI>
|
||||
<objURI>urn:ietf:params:xml:ns:contact-1.0</objURI>
|
||||
<objURI>urn:ietf:params:xml:ns:domain-1.0</objURI>
|
||||
<svcExtension>
|
||||
<extURI>http://schema.ispapi.net/epp/xml/keyvalue-1.0</extURI>
|
||||
</svcExtension>
|
||||
</svcs>
|
||||
</login>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<logout/>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<logout/>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<poll op="ack" msgID="12345"/>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<poll op="ack" msgID="12345"/>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<command>
|
||||
<poll op="req"/>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
<command>
|
||||
<poll op="req"/>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
</command>
|
||||
</epp>
|
|
@ -1,22 +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>
|
||||
<contact:chkData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:cd>
|
||||
<contact:id avail="0">eppdev-contact-1</contact:id>
|
||||
</contact:cd>
|
||||
<contact:cd>
|
||||
<contact:id avail="1">eppdev-contact-2</contact:id>
|
||||
</contact:cd>
|
||||
</contact:chkData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<contact:chkData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:cd>
|
||||
<contact:id avail="0">eppdev-contact-1</contact:id>
|
||||
</contact:cd>
|
||||
<contact:cd>
|
||||
<contact:id avail="1">eppdev-contact-2</contact:id>
|
||||
</contact:cd>
|
||||
</contact:chkData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,18 +1,18 @@
|
|||
<?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>
|
||||
<contact:creData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-4</contact:id>
|
||||
<contact:crDate>2021-07-25T16:05:32.0Z</contact:crDate>
|
||||
</contact:creData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<contact:creData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-4</contact:id>
|
||||
<contact:crDate>2021-07-25T16:05:32.0Z</contact:crDate>
|
||||
</contact:creData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,18 +1,18 @@
|
|||
<?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>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,42 +1,42 @@
|
|||
<?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>
|
||||
<contact:infData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-3</contact:id>
|
||||
<contact:roid>UNDEF-ROID</contact:roid>
|
||||
<contact:status s="ok"/>
|
||||
<contact:postalInfo type="loc">
|
||||
<contact:name>John Doe</contact:name>
|
||||
<contact:org>Acme Widgets</contact:org>
|
||||
<contact:addr>
|
||||
<contact:street>58</contact:street>
|
||||
<contact:street>Orchid Road</contact:street>
|
||||
<contact:city>Paris</contact:city>
|
||||
<contact:sp>Paris</contact:sp>
|
||||
<contact:pc>392374</contact:pc>
|
||||
<contact:cc>FR</contact:cc>
|
||||
</contact:addr>
|
||||
</contact:postalInfo>
|
||||
<contact:voice x="123">+33.47237942</contact:voice>
|
||||
<contact:fax x="243">+33.86698799</contact:fax>
|
||||
<contact:email>contact@eppdev.net</contact:email>
|
||||
<contact:clID>eppdev</contact:clID>
|
||||
<contact:crID>SYSTEM</contact:crID>
|
||||
<contact:crDate>2021-07-23T13:09:09.0Z</contact:crDate>
|
||||
<contact:upID>SYSTEM</contact:upID>
|
||||
<contact:upDate>2021-07-23T13:09:09.0Z</contact:upDate>
|
||||
<contact:authInfo>
|
||||
<contact:pw>eppdev-387323</contact:pw>
|
||||
</contact:authInfo>
|
||||
</contact:infData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<contact:infData xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
|
||||
<contact:id>eppdev-contact-3</contact:id>
|
||||
<contact:roid>UNDEF-ROID</contact:roid>
|
||||
<contact:status s="ok"/>
|
||||
<contact:postalInfo type="loc">
|
||||
<contact:name>John Doe</contact:name>
|
||||
<contact:org>Acme Widgets</contact:org>
|
||||
<contact:addr>
|
||||
<contact:street>58</contact:street>
|
||||
<contact:street>Orchid Road</contact:street>
|
||||
<contact:city>Paris</contact:city>
|
||||
<contact:sp>Paris</contact:sp>
|
||||
<contact:pc>392374</contact:pc>
|
||||
<contact:cc>FR</contact:cc>
|
||||
</contact:addr>
|
||||
</contact:postalInfo>
|
||||
<contact:voice x="123">+33.47237942</contact:voice>
|
||||
<contact:fax x="243">+33.86698799</contact:fax>
|
||||
<contact:email>contact@eppdev.net</contact:email>
|
||||
<contact:clID>eppdev</contact:clID>
|
||||
<contact:crID>SYSTEM</contact:crID>
|
||||
<contact:crDate>2021-07-23T13:09:09.0Z</contact:crDate>
|
||||
<contact:upID>SYSTEM</contact:upID>
|
||||
<contact:upDate>2021-07-23T13:09:09.0Z</contact:upDate>
|
||||
<contact:authInfo>
|
||||
<contact:pw>eppdev-387323</contact:pw>
|
||||
</contact:authInfo>
|
||||
</contact:infData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,18 +1,18 @@
|
|||
<?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>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,22 +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>
|
||||
<domain:chkData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:cd>
|
||||
<domain:name avail="1">eppdev.com</domain:name>
|
||||
</domain:cd>
|
||||
<domain:cd>
|
||||
<domain:name avail="0">eppdev.net</domain:name>
|
||||
</domain:cd>
|
||||
</domain:chkData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:chkData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:cd>
|
||||
<domain:name avail="1">eppdev.com</domain:name>
|
||||
</domain:cd>
|
||||
<domain:cd>
|
||||
<domain:name avail="0">eppdev.net</domain:name>
|
||||
</domain:cd>
|
||||
</domain:chkData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,25 +1,25 @@
|
|||
<?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>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:creData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-2.com</domain:name>
|
||||
<domain:crDate>2021-07-25T18:11:35.0Z</domain:crDate>
|
||||
<domain:exDate>2022-07-25T18:11:34.0Z</domain:exDate>
|
||||
</domain:creData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:creData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-2.com</domain:name>
|
||||
<domain:crDate>2021-07-25T18:11:35.0Z</domain:crDate>
|
||||
<domain:exDate>2022-07-25T18:11:34.0Z</domain:exDate>
|
||||
</domain:creData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,18 +1,18 @@
|
|||
<?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>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,39 +1,39 @@
|
|||
<?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>
|
||||
<domain:infData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-1.com</domain:name>
|
||||
<domain:roid>125899511_DOMAIN_COM-VRSN</domain:roid>
|
||||
<domain:status s="ok"/>
|
||||
<domain:status s="clientTransferProhibited"/>
|
||||
<domain:registrant>eppdev-contact-2</domain:registrant>
|
||||
<domain:contact type="admin">eppdev-contact-2</domain:contact>
|
||||
<domain:contact type="tech">eppdev-contact-2</domain:contact>
|
||||
<domain:contact type="billing">eppdev-contact-2</domain:contact>
|
||||
<domain:ns>
|
||||
<domain:hostObj>ns1.eppdev-1.com</domain:hostObj>
|
||||
<domain:hostObj>ns2.eppdev-1.com</domain:hostObj>
|
||||
</domain:ns>
|
||||
<domain:host>ns1.eppdev-1.com</domain:host>
|
||||
<domain:host>ns2.eppdev-1.com</domain:host>
|
||||
<domain:clID>eppdev</domain:clID>
|
||||
<domain:crID>SYSTEM</domain:crID>
|
||||
<domain:crDate>2021-07-23T15:31:20.0Z</domain:crDate>
|
||||
<domain:upID>SYSTEM</domain:upID>
|
||||
<domain:upDate>2021-07-23T15:31:21.0Z</domain:upDate>
|
||||
<domain:exDate>2023-07-23T15:31:20.0Z</domain:exDate>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP4uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:infData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:infData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-1.com</domain:name>
|
||||
<domain:roid>125899511_DOMAIN_COM-VRSN</domain:roid>
|
||||
<domain:status s="ok"/>
|
||||
<domain:status s="clientTransferProhibited"/>
|
||||
<domain:registrant>eppdev-contact-2</domain:registrant>
|
||||
<domain:contact type="admin">eppdev-contact-2</domain:contact>
|
||||
<domain:contact type="tech">eppdev-contact-2</domain:contact>
|
||||
<domain:contact type="billing">eppdev-contact-2</domain:contact>
|
||||
<domain:ns>
|
||||
<domain:hostObj>ns1.eppdev-1.com</domain:hostObj>
|
||||
<domain:hostObj>ns2.eppdev-1.com</domain:hostObj>
|
||||
</domain:ns>
|
||||
<domain:host>ns1.eppdev-1.com</domain:host>
|
||||
<domain:host>ns2.eppdev-1.com</domain:host>
|
||||
<domain:clID>eppdev</domain:clID>
|
||||
<domain:crID>SYSTEM</domain:crID>
|
||||
<domain:crDate>2021-07-23T15:31:20.0Z</domain:crDate>
|
||||
<domain:upID>SYSTEM</domain:upID>
|
||||
<domain:upDate>2021-07-23T15:31:21.0Z</domain:upDate>
|
||||
<domain:exDate>2023-07-23T15:31:20.0Z</domain:exDate>
|
||||
<domain:authInfo>
|
||||
<domain:pw>epP4uthd#v</domain:pw>
|
||||
</domain:authInfo>
|
||||
</domain:infData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,24 +1,24 @@
|
|||
<?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>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:renData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-1.com</domain:name>
|
||||
<domain:exDate>2024-07-23T15:31:20.0Z</domain:exDate>
|
||||
</domain:renData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:renData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-1.com</domain:name>
|
||||
<domain:exDate>2024-07-23T15:31:20.0Z</domain:exDate>
|
||||
</domain:renData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,17 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg lang="en">Command completed successfully</msg>
|
||||
</result>
|
||||
<extension>
|
||||
<rgp:upData xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0">
|
||||
<rgp:rgpStatus s="pendingRestore"/>
|
||||
</rgp:upData>
|
||||
</extension>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg lang="en">Command completed successfully</msg>
|
||||
</result>
|
||||
<extension>
|
||||
<rgp:upData xmlns:rgp="urn:ietf:params:xml:ns:rgp-1.0">
|
||||
<rgp:rgpStatus s="pendingRestore"/>
|
||||
</rgp:upData>
|
||||
</extension>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?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>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?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>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,23 +1,23 @@
|
|||
<?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>
|
||||
<domain:trnData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-transfer.com</domain:name>
|
||||
<domain:trStatus>pending</domain:trStatus>
|
||||
<domain:reID>eppdev</domain:reID>
|
||||
<domain:reDate>2021-07-23T15:31:21.0Z</domain:reDate>
|
||||
<domain:acID>ClientY</domain:acID>
|
||||
<domain:acDate>2021-07-28T15:31:21.0Z</domain:acDate>
|
||||
<domain:exDate>2022-07-02T14:53:19.0Z</domain:exDate>
|
||||
</domain:trnData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:trnData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-transfer.com</domain:name>
|
||||
<domain:trStatus>pending</domain:trStatus>
|
||||
<domain:reID>eppdev</domain:reID>
|
||||
<domain:reDate>2021-07-23T15:31:21.0Z</domain:reDate>
|
||||
<domain:acID>ClientY</domain:acID>
|
||||
<domain:acDate>2021-07-28T15:31:21.0Z</domain:acDate>
|
||||
<domain:exDate>2022-07-02T14:53:19.0Z</domain:exDate>
|
||||
</domain:trnData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?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>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,23 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<response>
|
||||
<result code="1001">
|
||||
<msg>Command completed successfully; action pending</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:trnData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-transfer.com</domain:name>
|
||||
<domain:trStatus>pending</domain:trStatus>
|
||||
<domain:reID>eppdev</domain:reID>
|
||||
<domain:reDate>2021-07-23T15:31:21.0Z</domain:reDate>
|
||||
<domain:acID>ClientY</domain:acID>
|
||||
<domain:acDate>2021-07-28T15:31:21.0Z</domain:acDate>
|
||||
<domain:exDate>2022-07-02T14:53:19.0Z</domain:exDate>
|
||||
</domain:trnData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1001">
|
||||
<msg>Command completed successfully; action pending</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<domain:trnData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">
|
||||
<domain:name>eppdev-transfer.com</domain:name>
|
||||
<domain:trStatus>pending</domain:trStatus>
|
||||
<domain:reID>eppdev</domain:reID>
|
||||
<domain:reDate>2021-07-23T15:31:21.0Z</domain:reDate>
|
||||
<domain:acID>ClientY</domain:acID>
|
||||
<domain:acDate>2021-07-28T15:31:21.0Z</domain:acDate>
|
||||
<domain:exDate>2022-07-02T14:53:19.0Z</domain:exDate>
|
||||
</domain:trnData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,18 +1,18 @@
|
|||
<?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>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>200 Command completed successfully</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,18 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<response>
|
||||
<result code="2303">
|
||||
<msg>Object does not exist</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>545 Object not found</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="2303">
|
||||
<msg>Object does not exist</msg>
|
||||
<extValue>
|
||||
<value xmlns:epp="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<epp:undef/>
|
||||
</value>
|
||||
<reason>545 Object not found</reason>
|
||||
</extValue>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,22 +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>
|
||||
<host:chkData xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:cd>
|
||||
<host:name avail="1">host1.eppdev-1.com</host:name>
|
||||
</host:cd>
|
||||
<host:cd>
|
||||
<host:name avail="0">ns1.testing.com</host:name>
|
||||
</host:cd>
|
||||
</host:chkData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<host:chkData xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:cd>
|
||||
<host:name avail="1">host1.eppdev-1.com</host:name>
|
||||
</host:cd>
|
||||
<host:cd>
|
||||
<host:name avail="0">ns1.testing.com</host:name>
|
||||
</host:cd>
|
||||
</host:chkData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,18 +1,18 @@
|
|||
<?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>
|
||||
<host:creData xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>host2.eppdev-1.com</host:name>
|
||||
<host:crDate>2021-07-26T05:28:55.0Z</host:crDate>
|
||||
</host:creData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<host:creData xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>host2.eppdev-1.com</host:name>
|
||||
<host:crDate>2021-07-26T05:28:55.0Z</host:crDate>
|
||||
</host:creData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?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>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,26 +1,26 @@
|
|||
<?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>
|
||||
<host:infData xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>host2.eppdev-1.com</host:name>
|
||||
<host:roid>UNDEF-ROID</host:roid>
|
||||
<host:status s="ok"/>
|
||||
<host:addr ip="v4">29.245.122.14</host:addr>
|
||||
<host:addr ip="v6">2404:6800:4001:0801:0000:0000:0000:200e</host:addr>
|
||||
<host:clID>eppdev</host:clID>
|
||||
<host:crID>creator</host:crID>
|
||||
<host:crDate>2021-07-26T05:28:55.0Z</host:crDate>
|
||||
<host:upID>creator</host:upID>
|
||||
<host:upDate>2021-07-26T05:28:55.0Z</host:upDate>
|
||||
</host:infData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<resData>
|
||||
<host:infData xmlns:host="urn:ietf:params:xml:ns:host-1.0">
|
||||
<host:name>host2.eppdev-1.com</host:name>
|
||||
<host:roid>UNDEF-ROID</host:roid>
|
||||
<host:status s="ok"/>
|
||||
<host:addr ip="v4">29.245.122.14</host:addr>
|
||||
<host:addr ip="v6">2404:6800:4001:0801:0000:0000:0000:200e</host:addr>
|
||||
<host:clID>eppdev</host:clID>
|
||||
<host:crID>creator</host:crID>
|
||||
<host:crDate>2021-07-26T05:28:55.0Z</host:crDate>
|
||||
<host:upID>creator</host:upID>
|
||||
<host:upDate>2021-07-26T05:28:55.0Z</host:upDate>
|
||||
</host:infData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?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>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?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>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,12 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<response>
|
||||
<result code="1500">
|
||||
<msg>Command completed successfully; ending session</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1500">
|
||||
<msg>Command completed successfully; ending session</msg>
|
||||
</result>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,13 +1,13 @@
|
|||
<?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>
|
||||
<msgQ count="4" id="12345"/>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1000">
|
||||
<msg>Command completed successfully</msg>
|
||||
</result>
|
||||
<msgQ count="4" id="12345"/>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
|
@ -1,27 +1,27 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
|
||||
<response>
|
||||
<result code="1301">
|
||||
<msg>Command completed successfully; ack to dequeue</msg>
|
||||
</result>
|
||||
<msgQ count="5" id="12345">
|
||||
<qDate>2021-07-23T19:12:43.0Z</qDate>
|
||||
<msg>Transfer requested.</msg>
|
||||
</msgQ>
|
||||
<resData>
|
||||
<obj:trnData xmlns:obj="urn:ietf:params:xml:ns:obj-1.0">
|
||||
<obj:name>eppdev-transfer.com</obj:name>
|
||||
<obj:trStatus>pending</obj:trStatus>
|
||||
<obj:reID>eppdev</obj:reID>
|
||||
<obj:reDate>2021-07-23T15:31:21.0Z</obj:reDate>
|
||||
<obj:acID>ClientY</obj:acID>
|
||||
<obj:acDate>2021-07-28T15:31:21.0Z</obj:acDate>
|
||||
<obj:exDate>2022-07-02T14:53:19.0Z</obj:exDate>
|
||||
</obj:trnData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
<response>
|
||||
<result code="1301">
|
||||
<msg>Command completed successfully; ack to dequeue</msg>
|
||||
</result>
|
||||
<msgQ count="5" id="12345">
|
||||
<qDate>2021-07-23T19:12:43.0Z</qDate>
|
||||
<msg>Transfer requested.</msg>
|
||||
</msgQ>
|
||||
<resData>
|
||||
<obj:trnData xmlns:obj="urn:ietf:params:xml:ns:obj-1.0">
|
||||
<obj:name>eppdev-transfer.com</obj:name>
|
||||
<obj:trStatus>pending</obj:trStatus>
|
||||
<obj:reID>eppdev</obj:reID>
|
||||
<obj:reDate>2021-07-23T15:31:21.0Z</obj:reDate>
|
||||
<obj:acID>ClientY</obj:acID>
|
||||
<obj:acDate>2021-07-28T15:31:21.0Z</obj:acDate>
|
||||
<obj:exDate>2022-07-02T14:53:19.0Z</obj:exDate>
|
||||
</obj:trnData>
|
||||
</resData>
|
||||
<trID>
|
||||
<clTRID>cltrid:1626454866</clTRID>
|
||||
<svTRID>RO-6879-1627224678242975</svTRID>
|
||||
</trID>
|
||||
</response>
|
||||
</epp>
|
Loading…
Reference in New Issue