Likes Likes:  0
Resultaten 1 tot 3 van de 3
Geen
  1. #1
    mijndomein EPP client problemen na SIDN facturatie wijziging
    geregistreerd gebruiker
    25 Berichten
    Ingeschreven
    12/01/12

    Locatie
    Eindhoven

    Post Thanks / Like
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    0 Berichten zijn liked


    Naam: Bob Rigbers
    Bedrijf: Domeinstad
    Functie: Marketing en development
    URL: www.domeinstad.nl
    Registrar SIDN: JA
    KvK nummer: 37101101
    View bob-rigbers's profile on LinkedIn

    Thread Starter

    mijndomein EPP client problemen na SIDN facturatie wijziging

    Ik gebruik sinds EPP mogelijk is hiervoor de Mijndomein EPP client.
    Allereerst een groot compliment aan de mannen en vrouwen van Mijndomein want de client heeft perfect gewerkt tot gisteren.

    "Registreren domein Validation of the transaction failed., Field: , SIDN Code: C0162, SIDN Message: The specified subscription period is invalid. It must contain one of the following values 1;3;12 months or the equivalent in years."

    Helaas ben ik nog niet zon OOP held.
    Wie kan mij helpen de client zo aan te passen dat hij ook met subscription period werkt?


  2. #2
    mijndomein EPP client problemen na SIDN facturatie wijziging
    geregistreerd gebruiker
    25 Berichten
    Ingeschreven
    12/01/12

    Locatie
    Eindhoven

    Post Thanks / Like
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    0 Berichten zijn liked


    Naam: Bob Rigbers
    Bedrijf: Domeinstad
    Functie: Marketing en development
    URL: www.domeinstad.nl
    Registrar SIDN: JA
    KvK nummer: 37101101
    View bob-rigbers's profile on LinkedIn

    Thread Starter
    Dit is de domeininfo class, vermoed dat hier ergens een periode ingevoerd dient te worden:
    PHP Code:
    <?php
    /**
     * The SIDN EPP Domain Info Object
     *
     * This will hold the complete Domain info SIDN can receive and give you
     *
     *
     *
     * @author Ralph de Boom <php5-sidnepp@mijndomein.nl>
     * @author Peter Keizer <php5-sidnepp@mijndomein.nl>
     * @license [url]http://www.gnu.org/licenses/gpl-3.0.txt*GNU*Public*License[/url] v3
     * @copyright [url]http://www.mijndomein.nl/[/url]
     * @version 0.5
     * @link [url]http://php5-sidnepp.svn.sourceforge.net/viewvc/php5-sidnepp/trunk/dev/docs/index.html[/url]
     * @see [url]http://php5-sidnepp.svn.sourceforge.net/viewvc/php5-sidnepp/trunk/dev/docs/php5-sidnepp/SidnDomainInfo.html[/url]
     * @package php5-sidnepp
     */
    class SidnDomainInfo {
        
    /**
         *
         * @var array
         */
        
    private $contacts;


        
    /**
         *
         * @var array
         */
        
    private $nameservers;

        
    /**
         *
         * @var string
         */
        
    private $authorisationCode;
        
    /**
         *
         * @var string
         */
        
    private $currentRegistrar;
        
    /**
         *
         * @param SidnContact $registrant
         * @param string $authorisationCode
         */
        
    public function __construct(SidnContact $registrant null$authorisationCode null)
        {
            if (
    $registrant)
            {
                
    $registrant->setContactType(SidnContact::CONTACT_TYPE_REGISTRANT);
                
    $this->addContact($registrant);
            }
            if (
    $authorisationCode)
            {
                
    $this->setAuthorisationCode($authorisationCode);
            }
        }

        
    /**
         *
         * @param SidnContact $contact
         * @return void
         */
        
    public function addContact(SidnContact $contact)
        {
            if (!
    strlen($contact->getContactType()))
            {
                throw new 
    SidnEppException('No type of contact type set for: '.$contact->getContactHandle().', please set one!');
            }
            
    $this->contacts[] = $contact;
        }

        
    /**
         *
         * @param int $line
         * @return SidnContact
         */
        
    public function getContact($line)
        {
            if (
    $this->contacts[$line])
            {
                return 
    $this->contacts[$line];
            }
            else
            {
                return 
    null;
            }
        }

        
    /**
         *
         * @return int
         */
        
    public function getContactLength()
        {
            return 
    count($this->contacts);
        }

        
    /**
         *
         * @param SidnNameserverInfo $nameserver
         * @return void
         */
        
    public function addNameserver(SidnNameserverInfo $nameserver)
        {
            if (
    count($this->nameservers) < 13)
            {
                
    $this->nameservers[] = $nameserver;
            }
            else
            {
                throw new 
    SidnEppException('Maximum nameservers for domain has been reached.');
            }
        }

        
    /**
         *
         * @return int
         */
        
    public function getNameserverLength()
        {
            return 
    count($this->nameservers);
        }

        
    /**
         *
         * @param int $line
         * @return SidnNameserverInfo
         */
        
    public function getNameserver($line)
        {
            if (
    $this->nameservers[$line])
            {
                return 
    $this->nameservers[$line];
            }
            else
            {
                return 
    null;
            }
        }

        
    /**
         *
         * @param string $authorisationCode
         * @return void
         */
        
    public function setAuthorisationCode($authorisationCode)
        {
            
    $this->authorisationCode $authorisationCode;
        }
        
        
    /**
         *
         * @return string
         */
        
    public function getAuthorisationCode()
        {
            return 
    $this->authorisationCode;
        }
        public function 
    setStatus($status)
        {
            
    $this->status $status;
        }
        public function 
    getStatus()
        {
            return 
    $this->status;
        }
        
    /**
         *
         * @param string $currentRegistrar
         * @return void
         */
        
    public function setCurrentRegistrar($currentRegistrar)
        {
            
    $this->currentRegistrar $currentRegistrar;
        }

        
    /**
         *
         * @return string
         */
        
    public function getCurrentRegistrar()
        {
            return 
    $this->currentRegistrar;
        }
    }



  3. #3
    mijndomein EPP client problemen na SIDN facturatie wijziging
    geregistreerd gebruiker
    25 Berichten
    Ingeschreven
    12/01/12

    Locatie
    Eindhoven

    Post Thanks / Like
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    0 Berichten zijn liked


    Naam: Bob Rigbers
    Bedrijf: Domeinstad
    Functie: Marketing en development
    URL: www.domeinstad.nl
    Registrar SIDN: JA
    KvK nummer: 37101101
    View bob-rigbers's profile on LinkedIn

    Thread Starter
    Met dank aan Ewout van metaregistrar.com is het probleem opgelost.
    De oplossing:
    <domaineriod unit="m">1</domaineriod> in createdomain.xml, ipv y2.

Webhostingtalk.nl

Contact

  • Rokin 113-115
  • 1012 KP, Amsterdam
  • Nederland
  • Contact
© Copyright 2001-2021 Webhostingtalk.nl.
Web Statistics