diff --git a/ACTK1_0/Makefile b/ACTK1_0/Makefile index 43828ee..b7d5a67 100644 --- a/ACTK1_0/Makefile +++ b/ACTK1_0/Makefile @@ -117,7 +117,7 @@ $(BUILD_OBJ_DIR)/%: $(BUILD_OBJ_DIR)/%.o # ARTKOBJS=build/XMLGregorianCalendar.o build/XMLParser.o build/XMLWriter.o build/ACSession.o build/DomainAddRem.o \ build/EnumDomainInfoResponse.o build/log.o build/PostalInfoType.o build/SessionManagerPropertiesImpl.o \ -build/RegistrantObjectType.o build/LPExtension.o build/LPChkCmdExtension.o \ +build/RegistrantObjectType.o build/LPExtension.o build/LPChkCmdExtension.o build/LPCrtCmdExtension.o \ build/AddRemType.o build/DomainCheckResponse.o build/EnumDomainUpdateCommand.o build/Properties.o build/SessionPoolImpl.o \ build/boolean.o build/DomainCreateCommand.o build/EnumType.o build/ProtocolExtensionCommand.o build/SSLException.o \ build/CertificateUserMismatchException.o build/DomainCreateResponse.o build/EPPDateFormatter.o build/ReceiveSE.o build/StandardCommandType.o \ diff --git a/ACTK1_0/se/LPE/LPChkCmdExtension.cpp b/ACTK1_0/se/LPE/LPChkCmdExtension.cpp index 5f2cb59..4958122 100644 --- a/ACTK1_0/se/LPE/LPChkCmdExtension.cpp +++ b/ACTK1_0/se/LPE/LPChkCmdExtension.cpp @@ -15,7 +15,7 @@ void LPChkCmdExtension::addToCommand(const Command &command) const XMLWriter* xmlWriter = command.getXmlWriter(); DOMElement* extensionElement = command.getExtensionElement(); DOMElement* launchElement = xmlWriter->appendChild(extensionElement, - "launch:claims", lpExtension().getURI()); + "check", lpExtension().getURI()); DOMElement* exPhaseElement = xmlWriter->appendChild(launchElement, "launch:phase"); XMLHelper::setTextContent(exPhaseElement, lpePhaseName); } diff --git a/AusRegCliever/server/mdAusReg.cpp b/AusRegCliever/server/mdAusReg.cpp index 0312e73..79a3274 100644 --- a/AusRegCliever/server/mdAusReg.cpp +++ b/AusRegCliever/server/mdAusReg.cpp @@ -9,7 +9,7 @@ #include "se/DomainCheckCommand.hpp" #include "se/DomainCheckResponse.hpp" #include "se/LPE/LPChkCmdExtension.hpp" -//#include "se/LPE/LPCrtExtension.hpp" +#include "se/LPE/LPCrtCmdExtension.hpp" #include "se/TransferOp.hpp" #include "se/IntPostalInfo.hpp" #include "se/ContactCreateCommand.hpp" @@ -109,7 +109,7 @@ void ausRegEPPTK::doOTEB() const char *thatAccount="secura2-ote", *thisAccount="secura1-ote"; string op("newInstance"); - const string phase("sunrise"); + const string chkPhase("claims"), crtPhase("sunrise"); Transaction thisTest; scenario(thisConfig->tkScenario,thisConfig->cfg_path); @@ -186,8 +186,8 @@ void ausRegEPPTK::doOTEB() theseLogs->logN(1,"(%d) LPE Check of unicycles.bike",cmd++); DomainCheckCommand oteCommand_2("unicycles.bike"); - LPChkCmdExtension lpe(&phase); - oteCommand_2.appendExtension(lpe); + LPChkCmdExtension chkE(&chkPhase); + oteCommand_2.appendExtension(chkE); DomainCheckResponse oteResponse_2; try { @@ -290,6 +290,8 @@ void ausRegEPPTK::doOTEB() theseLogs->logN(1,"(%d) Sunrise create %s with ICANN SMD test files.",cmd++,name5); DomainCreateCommand oteCommand_5(name5,pw,&RID, &tech, &ns, &admin, &billing); + LPCrtCmdExtension crtE(&crtPhase); + oteCommand_5.appendExtension(crtE); DomainCreateResponse oteResponse_5; thisTest = Transaction(&oteCommand_5, &oteResponse_5); @@ -298,6 +300,7 @@ void ausRegEPPTK::doOTEB() theseLogs->logN(1,"(%d) Create test-validate.claimsgasix (TCN).",cmd++); DomainCreateCommand oteCommand_6("test-validate.claimsgasix",pw,&RID, &tech, &ns, &admin, &billing); + oteCommand_6.appendExtension(crtE); DomainCreateResponse oteResponse_6; thisTest = Transaction(&oteCommand_6, &oteResponse_6);