You can subscribe to this list here.
2002 |
Jan
|
Feb
(1) |
Mar
(74) |
Apr
(4) |
May
(14) |
Jun
|
Jul
(4) |
Aug
(9) |
Sep
|
Oct
(3) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
|
Mar
(186) |
Apr
(26) |
May
(4) |
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(64) |
Oct
|
Nov
|
Dec
(11) |
2004 |
Jan
(8) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(25) |
2005 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
(12) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
(1) |
Mar
(4) |
Apr
|
May
(4) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(6) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Jin K. <don...@us...> - 2010-08-12 19:35:01
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/transport In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv1576/java/src/com/tucows/oxrs/epprtk/rtk/transport Modified Files: EPPTransportTCP.java Log Message: Make UTF-8 compliant. Index: EPPTransportTCP.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/transport/EPPTransportTCP.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPTransportTCP.java 7 Dec 2004 15:53:27 -0000 1.1 --- EPPTransportTCP.java 12 Aug 2010 19:34:47 -0000 1.2 *************** *** 30,36 **** package com.tucows.oxrs.epprtk.rtk.transport; ! import java.io.*; ! import java.net.*; ! import org.openrtk.idl.epprtk.*; /** --- 30,46 ---- package com.tucows.oxrs.epprtk.rtk.transport; ! import java.io.BufferedInputStream; ! import java.io.BufferedOutputStream; ! import java.io.BufferedReader; ! import java.io.IOException; ! import java.io.InterruptedIOException; ! import java.io.StringReader; ! import java.net.Socket; ! import java.net.SocketException; ! import java.net.UnknownHostException; ! ! import org.openrtk.idl.epprtk.epp_Exception; ! import org.openrtk.idl.epprtk.epp_Result; ! import org.openrtk.idl.epprtk.epp_Session; /** *************** *** 249,255 **** String final_xml = buf.toString(); ! int len = final_xml.length(); writeBufferSize(writer_to_server_, len + INT_SZ); ! writer_to_server_.write(final_xml.getBytes(), 0, len); writer_to_server_.flush(); } --- 259,267 ---- String final_xml = buf.toString(); ! byte[] xml_bytes = final_xml.getBytes(); ! int len = xml_bytes.length; ! writeBufferSize(writer_to_server_, len + INT_SZ); ! writer_to_server_.write(xml_bytes, 0, len); writer_to_server_.flush(); } *************** *** 308,312 **** debug(DEBUG_LEVEL_THREE,method_name,"Entered"); - int inbuf_sz = 0; byte[] in_buf = new byte[INT_SZ]; --- 320,323 ---- |
From: Jin K. <don...@us...> - 2009-08-25 20:38:09
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/example In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16294/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/example Modified Files: DomainExample.java Log Message: The following issues are resolved: 1. Sample Java code DomainExample.java does not work because it attempts to pass non-ASCII characters in the request to the EPP server. 2. NullPointerException is thrown if <trademark> contains an XML element with no body. Index: DomainExample.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/example/DomainExample.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DomainExample.java 7 Dec 2004 15:53:26 -0000 1.1 --- DomainExample.java 25 Aug 2009 20:37:53 -0000 1.2 *************** *** 313,316 **** --- 313,317 ---- contact_create_request.setEmail("jd...@co..."); + contact_create_request.setVoice(new epp_ContactPhone("1234", "+1.4166295546")); // Contact Auth Info must be set, just give a fixed value now *************** *** 388,393 **** // create succeeds. Feel free to use other values // in this example. ! name_server_list.add("ns1.valid.org"); ! name_server_list.add("ns2.valid.org"); domain_create_request.m_name_servers = EPPXMLBase.convertListToStringArray(name_server_list); --- 389,394 ---- // create succeeds. Feel free to use other values // in this example. ! name_server_list.add("ns1.valid.info"); ! name_server_list.add("ns2.valid.info"); domain_create_request.m_name_servers = EPPXMLBase.convertListToStringArray(name_server_list); *************** *** 563,568 **** // String array. List name_server_list = (List)new ArrayList(); ! name_server_list.add("ns1.valid.org"); ! name_server_list.add("ns2.valid.org"); add.m_name_servers = EPPXMLBase.convertListToStringArray(name_server_list); // We also want to add the clientTransferProhibited status to the domain. --- 564,569 ---- // String array. List name_server_list = (List)new ArrayList(); ! name_server_list.add("ns1.valid.info"); ! name_server_list.add("ns2.valid.info"); add.m_name_servers = EPPXMLBase.convertListToStringArray(name_server_list); // We also want to add the clientTransferProhibited status to the domain. *************** *** 573,578 **** add.m_status[0] = new epp_DomainStatus(); add.m_status[0].m_type = epp_DomainStatusType.CLIENT_TRANSFER_PROHIBITED; ! add.m_status[0].m_lang = "fr"; ! add.m_status[0].m_value = "Le client n'as pas envoyé de l'argent"; --- 574,579 ---- add.m_status[0] = new epp_DomainStatus(); add.m_status[0].m_type = epp_DomainStatusType.CLIENT_TRANSFER_PROHIBITED; ! add.m_status[0].m_lang = "en"; ! add.m_status[0].m_value = "The client did not send money."; *************** *** 583,588 **** // Now to remove the two old nameservers. name_server_list = (List)new ArrayList(); ! name_server_list.add("ns1.valid.org"); ! name_server_list.add("ns2.valid.org"); remove.m_name_servers = EPPXMLBase.convertListToStringArray(name_server_list); --- 584,589 ---- // Now to remove the two old nameservers. name_server_list = (List)new ArrayList(); ! name_server_list.add("ns1.valid.info"); ! name_server_list.add("ns2.valid.info"); remove.m_name_servers = EPPXMLBase.convertListToStringArray(name_server_list); |
From: Jin K. <don...@us...> - 2009-08-25 20:38:04
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16294/epp-rtk/java Modified Files: README.TXT VERSION.TXT build.xml Log Message: The following issues are resolved: 1. Sample Java code DomainExample.java does not work because it attempts to pass non-ASCII characters in the request to the EPP server. 2. NullPointerException is thrown if <trademark> contains an XML element with no body. Index: README.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/README.TXT,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** README.TXT 20 Mar 2003 22:47:38 -0000 1.7 --- README.TXT 25 Aug 2009 20:37:53 -0000 1.8 *************** *** 24,33 **** To use this package, you will require at least: + knowledge of EPP (Internet-Drafts 02) ! + a Java JRE (tested on v1.3) + a JSSE implementation (default from Sun available at http://java.sun.com/products/jsse) To make changes and compile this package, you will additionally require: ! + a Java SDK (tested on v1.3) + knowledge of XML --- 24,35 ---- To use this package, you will require at least: + knowledge of EPP (Internet-Drafts 02) ! + a Java JRE (tested on v1.4.2) + a JSSE implementation (default from Sun available at http://java.sun.com/products/jsse) + + an SSL certificate recognized from an approved + Certificate Authority (such as Verisign or Thawte) To make changes and compile this package, you will additionally require: ! + a Java SDK (tested on v1.4.2) + knowledge of XML *************** *** 63,89 **** =============== ! To use the API without modifications, include the epp-rtk-java.jar and the ! xerces.jar files in your CLASSPATH. These files are located in the lib ! directory. ! ! You can view the sample source code in the src/com/tucows/oxrs/epp{version}/rtk/example ! directory. In each of the three files, connection, login and logout are ! demonstrated. They also demonstrate typical actions for each of the three ! EPP objects Domain, Host and Contact. So long as the jar files are in the ! CLASSPATH, the samples can be run as follows: ! ! java com.tucows.oxrs.epp{version}.rtk.example.SessionExample epp_host_name epp_host_port client_id password domain_name [registrant_contact_roid] [admin_contact_roid] ! java com.tucows.oxrs.epp{version}.rtk.example.DomainExample epp_host_name epp_host_port client_id password ! java com.tucows.oxrs.epp{version}.rtk.example.HostExample epp_host_name epp_host_port client_id password ! java com.tucows.oxrs.epp{version}.rtk.example.ContactExample epp_host_name epp_host_port client_id password ! ! You will see output which displays the responses from the server. ! The SessionExample is the most realistic in the fact that it deals with a ! mock EPP session and walks you through some typical commands. The other ! three examples show samples of each action for each standard EPP object. ! There exists the scripts run_example.[sh|bat] to simplify the running of the ! examples mentioned above. The syntax for the script is: ./run_example.sh SessionExample|ContactExample|DomainExample|HostExample \ --- 65,77 ---- =============== ! Before using RTK, an SSL certificate recognized from an approved Certificate ! Authority is required. ! The certificate should replace the files in the $RTK_HOME/ssl directory. ! Define the following environment variables: ! export RTK_HOME=<path to epp-rtk> ! To run RTK without modification, use script run_example.[sh|bat] to simplify ! the running of the examples provided in this package. The syntax is: ./run_example.sh SessionExample|ContactExample|DomainExample|HostExample \ *************** *** 105,109 **** 3. Environment =============== ! As stated earlier, the RTK and Xerces-J jar files are required to use the RTK. To meet this requirement, include the jar files from the lib directory in the CLASSPATH. --- 93,97 ---- 3. Environment =============== ! The RTK and Xerces-J jar files are required to use the RTK. To meet this requirement, include the jar files from the lib directory in the CLASSPATH. *************** *** 120,124 **** 4. Building The Source ======================= ! Development was done using the Java SDK 1.3. The EPP RTK Java comes ready-to-use with a bundled jar file. If you --- 108,112 ---- 4. Building The Source ======================= ! Development was done using the Java SDK 1.4.2. The EPP RTK Java comes ready-to-use with a bundled jar file. If you Index: VERSION.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/VERSION.TXT,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** VERSION.TXT 18 May 2007 14:58:41 -0000 1.30 --- VERSION.TXT 25 Aug 2009 20:37:53 -0000 1.31 *************** *** 4,7 **** --- 4,11 ---- EPP RTK Java Versions ====================== + epp-rtk-java-0.9.6 - Aug 10, 2009 + + + Made changes to EPP RTK to fix a bug. + epp-rtk-java-0.9.5 - May 18, 2007 Index: build.xml =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/build.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** build.xml 18 May 2007 14:58:41 -0000 1.22 --- build.xml 25 Aug 2009 20:37:53 -0000 1.23 *************** *** 9,13 **** <property name="optimize" value="true"/> <property name="project.name" value="epp-rtk-java"/> ! <property name="project.version" value="0.9.5"/> <!-- property name="build.compiler" value="jikes"/ --> <!-- property name="build.compiler" value="classic"/ --> --- 9,13 ---- <property name="optimize" value="true"/> <property name="project.name" value="epp-rtk-java"/> ! <property name="project.version" value="0.9.6"/> <!-- property name="build.compiler" value="jikes"/ --> <!-- property name="build.compiler" value="classic"/ --> |
From: <su...@ca...> - 2007-11-28 17:14:23
|
Dear epp-rtk-java-commits, CampusYakYak http://www.campusyakyak.com <http://www.campusyakyak.com/> We bring you the lowest calling rates with no tricks and hidden charges. Visit our website www.campusyakyak.com <http://www.campusyakyak.com/> to check out our service. Calling rates snapshot Country Rates SGD/min Vietnam 0.210 China 0.035 India 0.180 India Mobile 0.150 Malaysia 0.042 Malaysia Mobile 0.082 Indonesia 0.182 Indonesia Mobile 0.260 Jakarta 0.098 UK 0.035 You can even resell to your friends and earn commissions. Check out our website now. To unsubscribe from this mailing list, please reply to this message. Best Regards, CampusYakYak su...@ca... <mailto:su...@ca...> |
From: <enq...@bu...> - 2007-11-28 12:10:46
|
Dear epp-rtk-java-commits, BuyButtonz http://www.buybuttonz.com <http://www.buybuttonz.com/> BuyButtonz is an affordable online business solution that enables you to accept online Credit Card and Internet Banking payments. SSL-secured, it helps you collect payments and keep track of items sold on your blog, website or link in your email. Now yours for free**, sign up for BuyButtonz and give your consumers a whole new hassle-free online shopping experience! ** Get a Buttonz free when you register with Buybuttonz now! Promotion ends 31st December 2007. For sales enquiries or customer support, email us at enq...@bu... <mailto:enq...@bu...> . To unsubscribe from this mailing list, please reply to this message. Best Regards, Buybuttonz |
From: <sa...@12...> - 2007-11-28 01:14:44
|
Dear epp-rtk-java-commits, =20 =20 Are you looking for Online Payment Services? We, ChainFusion has established ourselves as the leading online payment service provider in Singapore. Besides we also have full range of IT solutions to meet your business needs: =C2=BB SSL, 3D Secure and 2FA ready Online Payment Service =C2=BB E-commerce Service =C2=BB Application Development - Web based / Windows based Enterprise Projects =C2=BB Website Design =C2=BB Graphics Design =09 =20 Some of the companies who have used our services include: 1) Singapore Press Holding Ltd 2) Popular Bookstores 3) Yahoo Stores 4) National Healthcare Group 5) Epson Singapore Pte Ltd 6) and many others=20 Business Benefits: 1) 37 days liquidity of fund 2) No need bankers guarantee 3) No collateral holding of fund 4) Competitive merchant rate =09 =20 For more information, please call Nic at +65 62999686 or email sa...@ch... <mailto:sa...@ch...> . You may also visit our official website at http://www.chainfusion.com =09 =09 To unsubscribe from this mailing list, please reply to this message. =09 Best Regards, =09 ChainFusion =09 |
From: <sa...@wu...> - 2007-11-27 22:13:55
|
Dear epp-rtk-java-commits,=09 =09 Are you looking for a money saving international callback service that can earn you money at the same time? Go for WUSIC. With the revolutionary telephony callback technology, you can save up to 75% of your current local and overseas call bills and at the same time enjoy the excellent voice call quality. Try it now! Stop paying high charges on all local (Singapore) out going calls. With WUSIC, all local calls are just 5 cents 24 hours round the clock, and: =C2=BB No more expensive phone bills by local telco's monopoly =C2=BB No more expensive long distance calls =C2=BB No more expensive IDD roaming charges =C2=BB Enjoy the service anywhere in the world =C2=BB Go further, be the Distributor and start earning money. Everyone around you has a mobile phone - UNLIMITED potentials =C2=BB Guaranteed real sensational SAVINGS for your customers =C2=BB Simple training and instant activation for trial usage by = transferring credits between mobile phones globally =C2=BB Online Topup (using Credit Card or Internet Banking)=09 =09 For more information, please visit http://www.wusic.com or call Jo at +65 62999686 or=20 =20 <http://www.wusic.net/ClickToCall/CorpWebClickToCall.aspx?a=3D&b=3DjQLLmw= wut oLNhyBCHjwBSA%3d%3d&c=3DO%2bLYX6%2bznWGUupiKbT88erSBhx66g23jx0MhsPjQmZE%3= d > Click to Call Jo now for FREE or email sa...@wu... <mailto:sa...@wu...> .=09 =09 =09 To unsubscribe from this mailing list, please reply to this message. =09 Best Regards,=09 Wusic=09 |
From: <sa...@12...> - 2007-11-25 05:31:52
|
Dear epp-rtk-java-commits, =20 =20 Get customizable eDistriFusion, gain control of your distribution software. eDistriFusion is design to be: =C2=BB customizable to suit the ever changing business environment, =C2=BB build on a 3-tier software architecture for easy maintenance, =C2=BB and web based to support 24x7 and internationalization = operation. =09 =20 Customizable: eDistriFusion is developed in C# using Microsoft Visual Studio as the development platform, allows source files to be open and customized to suit your business needs. Besides the customizable distribution software, the package also comes with an integrated code generator to generate source code from database design, for more efficient and consistent software customization. =09 =20 3-Tier: eDistriFusion has a 3-Tier architecture, and software modifications are by tier, resulting in a modular and organized software, with no worry about messy and hard to maintain codes. The software is also object oriented by design. =09 =20 Web Based: eDistriFusion is a web based solution, whereby its hosted onto a web server and allows access within or outside office. It is on the Microsoft .net framework and support xml web services for interface with other systems. =09 =20 =09 We found your contact from lists.sourceforge.net. For more information or software demonstration, call Chris at +65 62999686 or email sa...@ch... <mailto:sa...@ch...> =09 =09 =09 To unsubscribe from this mailing list, please reply to this message. =09 Best Regards, =09 ChainFusion =09 |
From: <sa...@on...> - 2007-11-24 09:02:15
|
Dear epp-rtk-java-commits,=09 =09 Are you looking for IT & design freelancers? We, ONGGIE provide full range of affordable quality IT & design services to meet your interest: =C2=BB Application Development =C2=BB Website Design =C2=BB Photo-editing / Wedding Album Design =C2=BB Corporate Stationary Design =C2=BB Graphic Design =C2=BB Multimedia Presentation =C2=BB Application Interface Design =C2=BB Painting=09 =09 We found your contact from lists.sourceforge.net. We believe our service has the capability to expand and strengthen your company's potential by improving the IT workflow and corporate presentation. We have experienced expertise in software development and creative designs to ensure the achievements of your investments. Your IT requirements will be addressed with the utmost concern while our professionals undertake every care to deliver beyond your expectations.=09 =09 For further information, please call: +65 68260618 or visit http://www.onggie.com <http://www.onggie.com/> for a glance of our creative works.=09 =09 =09 To unsubscribe from this mailing list, please reply to this message. =09 Best Regards,=09 ONGGIE=09 sa...@on... <mailto:sa...@on...> =09 |
From: <sa...@on...> - 2007-08-23 02:00:59
|
Dear epp-rtk-java-commits, =20 =20 ONGGIE has an extensive range of affordable quality design and IT services : =09 =20 =20 * Website Design =09 * Application Interface Design =09 * Graphic Design =09 * Photo-editing / Wedding Album Design =09 * Design Consultancy Service =09 * IT Consultancy Service =09 * Application Development =09 * Desktop Publishing =09 * Digital / Offset Printing =09 * Multimedia Presentation * Painting =20 =20 Our goal is to deliver smart cutting-edge design and solution to our customers. We take pride and pleasure in exceeding our = customers=E2=80=99 expectations. In the past few years, ONGGIE has successfully fulfilled our customers=E2=80=99 design and communication needs, from all types of = printed art work to digital media and customized applications.=20 We addressed your IT needs with our utmost priority and commitment.=20 Onggie=E2=80=99s principles are in creative problem solving and = responsiveness to all of our customers, producing exceptionally fine graphics as well as IT solutions within budget and on time.=20 We emphasize on close cooperation with our clients, listening to their needs and goals. We strive to help our customers to bring out the best of their businesses. This approach is both successful and well-received, particularly with small and medium business owners, who invest so much of themselves in their work.=20 For further information, please call: +65 68260618 or visit http://www.onggie.com for a glance of our creative works. To unsubscribe from this mailing list, please reply to this message. Best Regards, ONGGIE |
From: <su...@ca...> - 2007-07-27 07:49:18
|
Dear epp-rtk-java-commits, CampusYakYak http://www.campusyakyak.com <http://www.campusyakyak.com/> We bring you the lowest calling rates with no tricks and hidden charges. Visit our website www.campusyakyak.com <http://www.campusyakyak.com/> to check out our service. Calling rates snapshot Country Rates SGD/min Vietnam 0.210 China 0.035 India 0.180 India Mobile 0.150 Malaysia 0.042 Malaysia Mobile 0.082 Indonesia 0.182 Indonesia Mobile 0.260 Jakarta 0.098 UK 0.035 You can even resell to your friends and earn commissions. Check out our website now. To unsubscribe from this mailing list, please reply to this message. Best Regards, CampusYakYak |
From: <enq...@bu...> - 2007-07-09 02:46:58
|
Dear epp-rtk-java-commits, BuyButtonz http://www.buybuttonz.com <http://www.buybuttonz.com/> BuyButtonz is an affordable online business solution that enables you to accept online Credit Card and Internet Banking payments. SSL-secured, it helps you collect payments and keep track of items sold on your blog, website or link in your email. Now yours for free**, sign up for BuyButtonz and give your consumers a whole new hassle-free online shopping experience! ** Get a Buttonz free when you register with Buybuttonz now! Promotion ends 31st December 2007. For sales enquiries or customer support, email us at enq...@bu.... To unsubscribe from this mailing list, please reply to this message. Best Regards, Buybuttonz |
From: Anna S. <asi...@us...> - 2007-05-22 20:48:22
|
Update of /cvsroot/epp-rtk/epp-rtk/java/ssl In directory sc8-pr-cvs17:/tmp/cvs-serv16615 Removed Files: cert.pem Log Message: Removed --- cert.pem DELETED --- |
From: Anna S. <asi...@us...> - 2007-05-22 15:30:11
|
Update of /cvsroot/epp-rtk/epp-rtk/java/ssl In directory sc8-pr-cvs17:/tmp/cvs-serv16970/java/ssl Modified Files: cert.pem Log Message: New certificate Index: cert.pem =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/ssl/cert.pem,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cert.pem 9 Apr 2003 19:45:46 -0000 1.1 --- cert.pem 22 May 2007 15:29:59 -0000 1.2 *************** *** 1,62 **** - Certificate: - Data: - Version: 3 (0x2) - Serial Number: 0 (0x0) - Signature Algorithm: md5WithRSAEncryption - Issuer: C=CA, ST=Ontario, L=Toronto, O=LibertyRMS CO., OU=lrms, CN=localhost - Validity - Not Before: Aug 21 20:31:12 2002 GMT - Not After : Aug 18 20:31:12 2012 GMT - Subject: C=CA, ST=Ontario, L=Toronto, O=LibertyRMS CO., OU=lrms, CN=localhost - Subject Public Key Info: - Public Key Algorithm: rsaEncryption - RSA Public Key: (1024 bit) - Modulus (1024 bit): - 00:c1:7d:37:67:18:5d:ab:08:fe:62:6a:5d:e2:10: - 6e:38:19:ed:98:60:53:5c:e7:80:60:1c:1c:25:df: - 22:fe:cf:67:00:f1:1b:6c:68:df:be:da:2e:3c:81: - df:60:d9:58:a3:d4:ee:ce:b0:cd:71:00:3b:b3:68: - 5f:7f:4e:47:d5:fd:2e:11:f0:67:f0:68:f1:2e:80: - e9:34:54:0f:49:67:ae:42:9e:29:db:02:92:78:76: - f1:39:d6:b8:ac:3d:7a:87:17:59:cd:c0:20:fb:be: - 1e:3e:0b:4a:6c:43:6f:34:d1:24:a7:62:d6:9d:18: - 99:a0:aa:d9:b1:34:af:24:55 - Exponent: 65537 (0x10001) - X509v3 extensions: - X509v3 Subject Key Identifier: - F3:F1:6D:A7:95:AC:A8:9D:3D:8E:29:6D:0B:15:AC:AA:91:CF:A1:30 - X509v3 Authority Key Identifier: - keyid:F3:F1:6D:A7:95:AC:A8:9D:3D:8E:29:6D:0B:15:AC:AA:91:CF:A1:30 - DirName:/C=CA/ST=Ontario/L=Toronto/O=LibertyRMS CO./OU=lrms/CN=localhost - serial:00 - - X509v3 Basic Constraints: - CA:TRUE - Signature Algorithm: md5WithRSAEncryption - ba:d8:3a:4b:58:a5:47:04:97:b1:e1:47:7a:66:04:97:fb:33: - 9f:ac:f7:f6:31:94:ce:00:9f:96:42:6c:b4:7b:53:50:da:66: - 1b:34:46:fd:48:fc:d0:e6:77:fe:b1:44:08:45:5a:83:ff:47: - 63:2e:bd:da:4f:f8:cf:4f:a1:bd:8f:70:dc:38:71:92:d2:b9: - 09:bf:a1:d2:b7:ca:77:5b:4a:63:3b:44:fb:3d:fe:1c:24:b3: - 1f:a4:f8:dd:66:d1:6e:1a:95:b1:c9:a4:ac:17:d2:86:92:c0: - 6e:f6:cd:7b:fe:aa:bd:a1:5f:29:c6:33:7a:41:52:8e:14:a5: - 0f:09 -----BEGIN CERTIFICATE----- ! MIIDGzCCAoSgAwIBAgIBADANBgkqhkiG9w0BAQQFADBtMQswCQYDVQQGEwJDQTEQ ! MA4GA1UECBMHT250YXJpbzEQMA4GA1UEBxMHVG9yb250bzEXMBUGA1UEChMOTGli ! ZXJ0eVJNUyBDTy4xDTALBgNVBAsTBGxybXMxEjAQBgNVBAMTCWxvY2FsaG9zdDAe ! Fw0wMjA4MjEyMDMxMTJaFw0xMjA4MTgyMDMxMTJaMG0xCzAJBgNVBAYTAkNBMRAw ! DgYDVQQIEwdPbnRhcmlvMRAwDgYDVQQHEwdUb3JvbnRvMRcwFQYDVQQKEw5MaWJl ! cnR5Uk1TIENPLjENMAsGA1UECxMEbHJtczESMBAGA1UEAxMJbG9jYWxob3N0MIGf ! MA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBfTdnGF2rCP5ial3iEG44Ge2YYFNc ! 54BgHBwl3yL+z2cA8RtsaN++2i48gd9g2Vij1O7OsM1xADuzaF9/TkfV/S4R8Gfw ! aPEugOk0VA9JZ65CninbApJ4dvE51risPXqHF1nNwCD7vh4+C0psQ2800SSnYtad ! GJmgqtmxNK8kVQIDAQABo4HKMIHHMB0GA1UdDgQWBBTz8W2nlayonT2OKW0LFayq ! kc+hMDCBlwYDVR0jBIGPMIGMgBTz8W2nlayonT2OKW0LFayqkc+hMKFxpG8wbTEL ! MAkGA1UEBhMCQ0ExEDAOBgNVBAgTB09udGFyaW8xEDAOBgNVBAcTB1Rvcm9udG8x ! FzAVBgNVBAoTDkxpYmVydHlSTVMgQ08uMQ0wCwYDVQQLEwRscm1zMRIwEAYDVQQD ! Ewlsb2NhbGhvc3SCAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQQFAAOBgQC6 ! 2DpLWKVHBJex4Ud6ZgSX+zOfrPf2MZTOAJ+WQmy0e1NQ2mYbNEb9SPzQ5nf+sUQI ! RVqD/0djLr3aT/jPT6G9j3DcOHGS0rkJv6HSt8p3W0pjO0T7Pf4cJLMfpPjdZtFu ! GpWxyaSsF9KGksBu9s17/qq9oV8pxjN6QVKOFKUPCQ== -----END CERTIFICATE----- --- 1,21 ---- -----BEGIN CERTIFICATE----- ! MIIDejCCAuOgAwIBAgIQICaCoBGeC3PvqvDVQstHNTANBgkqhkiG9w0BAQUFADCB ! zjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJ ! Q2FwZSBUb3duMR0wGwYDVQQKExRUaGF3dGUgQ29uc3VsdGluZyBjYzEoMCYGA1UE ! CxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEhMB8GA1UEAxMYVGhh ! d3RlIFByZW1pdW0gU2VydmVyIENBMSgwJgYJKoZIhvcNAQkBFhlwcmVtaXVtLXNl ! cnZlckB0aGF3dGUuY29tMB4XDTA3MDQxNzE2MzYxNloXDTA4MDQxNjE2MzYxNlow ! fzELMAkGA1UEBhMCQ0ExEDAOBgNVBAgTB09udGFyaW8xEDAOBgNVBAcTB1Rvcm9u ! dG8xMTAvBgNVBAoTKExpYmVydHkgUmVnaXN0cnkgTWFuYWdlbWVudCBTZXJ2aWNl ! cyBDby4xGTAXBgNVBAMTEG90ZTEuYWZpbGlhcy5uZXQwgZ8wDQYJKoZIhvcNAQEB ! BQADgY0AMIGJAoGBAOd9LniHxfzh40XAO/fMzXtxRYU8jHZNskdhC4KHBDyRYRKR ! zj0s2GBjU8IvYF2MfP61QLoJyqInypfExZlls8xaV3/zaTCC5RyAfJiG7bofDw9F ! WSoQnzzRKrEI28u7kzrV+5ZzkCZ73bKJpdJR1NZ0hBJ7ggF7YUCBVw43n1N/AgMB ! AAGjgaYwgaMwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMEAGA1UdHwQ5 ! MDcwNaAzoDGGL2h0dHA6Ly9jcmwudGhhd3RlLmNvbS9UaGF3dGVQcmVtaXVtU2Vy ! dmVyQ0EuY3JsMDIGCCsGAQUFBwEBBCYwJDAiBggrBgEFBQcwAYYWaHR0cDovL29j ! c3AudGhhd3RlLmNvbTAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBBQUAA4GBAA64 ! q/5pW8gxHET0X/Tqj3bEFlLrzOnHGZDP3KMYmmchWI4whCOD90+MLdNnlPMmO/nI ! Rw6oACLCW3YiSQFZUCK7KT05Dr5GidqisHTCqSw8E5+fQiD96bm2VrU/EX6JZlDx ! WRsMHPhd/yz8mgbKaezNYPnWbGERHBHBfHn5pio1 -----END CERTIFICATE----- |
From: Anna S. <asi...@us...> - 2007-05-18 14:58:56
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/xml In directory sc8-pr-cvs17:/tmp/cvs-serv12243/java/src/com/tucows/oxrs/epprtk/rtk/xml Modified Files: EPPXMLBase.java Log Message: Fixed bug that allows sending multiple extensions Index: EPPXMLBase.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/xml/EPPXMLBase.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPXMLBase.java 7 Dec 2004 15:53:27 -0000 1.1 --- EPPXMLBase.java 18 May 2007 14:58:41 -0000 1.2 *************** *** 806,809 **** --- 806,810 ---- if ( extensions != null ) { + Element extension_element = doc.createElement("extension"); for ( int count = 0; count < extensions.length; count++ ) { *************** *** 816,820 **** try { - Element extension_element = doc.createElement("extension"); Node extension_node = getExtensionNode(extension_string); if ( extension_node != null ) --- 817,820 ---- *************** *** 830,835 **** extension_element.appendChild( doc.createTextNode(extension_string) ); } - - command.appendChild( extension_element ); } catch ( Exception xcp ) --- 830,833 ---- *************** *** 840,843 **** --- 838,842 ---- } } + command.appendChild( extension_element ); } debug(DEBUG_LEVEL_THREE,method_name,"Leaving"); |
From: Anna S. <asi...@us...> - 2007-05-18 14:58:46
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs17:/tmp/cvs-serv12243/java Modified Files: VERSION.TXT build.xml Log Message: Fixed bug that allows sending multiple extensions Index: VERSION.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/VERSION.TXT,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** VERSION.TXT 24 Dec 2003 17:44:43 -0000 1.29 --- VERSION.TXT 18 May 2007 14:58:41 -0000 1.30 *************** *** 4,7 **** --- 4,11 ---- EPP RTK Java Versions ====================== + epp-rtk-java-0.9.5 - May 18, 2007 + + + Made changes to EPPXMLBase.java to fix a bug + when sending more than one extension epp-rtk-java-0.7.5 - Dec 24, 2003 Index: build.xml =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/build.xml,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** build.xml 18 Oct 2005 19:04:55 -0000 1.21 --- build.xml 18 May 2007 14:58:41 -0000 1.22 *************** *** 9,13 **** <property name="optimize" value="true"/> <property name="project.name" value="epp-rtk-java"/> ! <property name="project.version" value="0.9.3"/> <!-- property name="build.compiler" value="jikes"/ --> <!-- property name="build.compiler" value="classic"/ --> --- 9,13 ---- <property name="optimize" value="true"/> <property name="project.name" value="epp-rtk-java"/> ! <property name="project.version" value="0.9.5"/> <!-- property name="build.compiler" value="jikes"/ --> <!-- property name="build.compiler" value="classic"/ --> |
From: <sa...@ch...> - 2007-03-15 08:01:07
|
Dear epp-rtk-java-commits, =20 =20 Are you looking for Online Payment Services? We, ChainFusion has established ourselves as the leading online payment service provider in Singapore. Besides we also have full range of IT solutions to meet your business needs: =C2=BB SSL, 3D Secure and 2FA ready Online Payment Service =C2=BB E-commerce Service =C2=BB Application Development - Web based / Windows based Enterprise Projects =C2=BB Website Design =C2=BB Graphics Design =09 =20 Some of the companies who have used our services include: 1) Singapore Press Holding Ltd 2) Popular Bookstores 3) Yahoo Stores 4) National Healthcare Group 5) Epson Singapore Pte Ltd 6) and many others=20 Business Benefits: 1) 37 days liquidity of fund 2) No need bankers guarantee 3) No collateral holding of fund 4) Competitive merchant rate =09 =20 For more information, please call Nic at +65 62999686 or email sa...@ch.... You may also visit our official website at http://www.chainfusion.com =09 =09 Best Regards, =09 ChainFusion =09 |
From: <sa...@wu...> - 2007-03-09 09:19:20
|
Dear epp-rtk-java-commits,=09 =09 Are you looking for a money saving international callback service that can earn you money at the same time? Go for WUSIC. With the revolutionary telephony callback technology, you can save up to 75% of your current local and overseas call bills and at the same time enjoy the excellent voice call quality. Try it now! Stop paying high charges on all local (Singapore) out going calls. With WUSIC, all local calls are just 5 cents 24 hours round the clock, and: =C2=BB No more expensive phone bills by local telco's monopoly =C2=BB No more expensive long distance calls =C2=BB No more expensive IDD roaming charges =C2=BB Enjoy the service anywhere in the world =C2=BB Go further, be the Distributor and start earning money. Everyone around you has a mobile phone - UNLIMITED potentials =C2=BB Guaranteed real sensational SAVINGS for your customers =C2=BB Simple training and instant activation for trial usage by = transferring credits between mobile phones globally =C2=BB Online Topup (using Credit Card or Internet Banking)=09 =09 We found your contact from lists.sourceforge.net, we would like to invite you to our weekly seminar to teach you how to Save $ Make $ while you call. The seminar is held on every Thursday from 7pm to 8pm at our office: 289 Beach Road, #05-01, Singapore 199552.=09 =09 For more information, please visit http://www.wusic.com or call Jo at +65 62999686 / [ Click to Call ] <http://www.wusic.net/ClickToCall/WebClickToCall.aspx?inviteID=3DvaB9yWes= K 807R55UZEeEE1os1HjOEsQZZGorttH9Rj8%3d> Jo now for FREE or email sa...@wu....=09 =09 =09 Best Regards,=09 Wusic=09 |
From: <sa...@ch...> - 2007-03-07 09:46:12
|
Dear epp-rtk-java-commits, =20 =20 Get customizable eDistriFusion, gain control of your distribution software. eDistriFusion is design to be: =C2=BB customizable to suit the ever changing business environment, =C2=BB build on a 3-tier software architecture for easy maintenance, =C2=BB and web based to support 24x7 and internationalization = operation. =09 =20 Customizable: eDistriFusion is developed in C# using Microsoft Visual Studio as the development platform, allows source files to be open and customized to suit your business needs. Besides the customizable distribution software, the package also comes with an integrated code generator to generate source code from database design, for more efficient and consistent software customization. =09 =20 3-Tier: eDistriFusion has a 3-Tier architecture, and software modifications are by tier, resulting in a modular and organized software, with no worry about messy and hard to maintain codes. The software is also object oriented by design. =09 =20 Web Based: eDistriFusion is a web based solution, whereby its hosted onto a web server and allows access within or outside office. It is on the Microsoft .net framework and support xml web services for interface with other systems. =09 =20 =09 We found your contact from lists.sourceforge.net. For more information or software demonstration, call Chris at +65 62999686 or email sa...@ch... =09 =09 =09 Best Regards, =09 ChainFusion =09 |
From: James Cranwell-W. <jcr...@gm...> - 2007-03-03 20:35:43
|
Dear all, I am currently working with the Java implementation of the epp-rtk to build an EJB3 web application that allows a registrar to provision E164 numbers to the ENUM registry. This will involve extending the library to include the ENUM validation mappings and commands. This is just a quick note to ask if anybody has already done some work in extending the library to accommodate provisioning with ENUM? Thanks in advance. Great work by the way. James Cranwell-Ward |
From: <sa...@on...> - 2007-02-06 04:53:16
|
Dear epp-rtk-java-commits,=09 =09 Are you looking for IT & design freelancers? We, ONGGIE provide full range of affordable quality IT & design services to meet your interest: =C2=BB Application Development =C2=BB Website Design =C2=BB Photo-editing / Wedding Album Design =C2=BB Corporate Stationary Design =C2=BB Graphic Design =C2=BB Multimedia Presentation =C2=BB Application Interface Design =C2=BB Painting=09 =09 We found your contact from lists.sourceforge.net. We believe our service has the capability to expand and strengthen your company's potential by improving the IT workflow and corporate presentation. We have experienced expertise in software development and creative designs to ensure the achievements of your investments. Your IT requirements will be addressed with the utmost concern while our professionals undertake every care to deliver beyond your expectations.=09 =09 For further information, please call: +65 68260618 or visit http://www.onggie.com <http://www.onggie.com/> for a glance of our creative works.=09 =09 =09 Best Regards,=09 ONGGIE=09 |
From: eric w. <ewa...@us...> - 2006-04-24 21:20:30
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19009/epp0705/rtk/xml Modified Files: EPPContactInfo.java EPPHostInfo.java Log Message: fix for bug 1475771 Index: EPPContactInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml/EPPContactInfo.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EPPContactInfo.java 25 Apr 2003 20:38:05 -0000 1.2 --- EPPContactInfo.java 24 Apr 2006 21:20:25 -0000 1.3 *************** *** 253,257 **** status.m_value = status_value_node.getNodeValue(); } ! status.m_lang = ((Element)a_node).getAttribute("lang"); if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { --- 253,261 ---- status.m_value = status_value_node.getNodeValue(); } ! String lang = ((Element)a_node).getAttribute("lang"); ! if (lang != null && lang.length() > 0) ! { ! status.m_lang = lang; ! } if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { Index: EPPHostInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml/EPPHostInfo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPHostInfo.java 20 Mar 2003 22:42:00 -0000 1.1 --- EPPHostInfo.java 24 Apr 2006 21:20:25 -0000 1.2 *************** *** 236,240 **** status.m_value = status_value_node.getNodeValue(); } ! status.m_lang = ((Element)a_node).getAttribute("lang"); if ( ! host_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { --- 236,244 ---- status.m_value = status_value_node.getNodeValue(); } ! String lang = ((Element)a_node).getAttribute("lang"); ! if (lang != null && lang.length() > 0) ! { ! status.m_lang = lang; ! } if ( ! host_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { |
From: eric w. <ewa...@us...> - 2006-04-24 21:20:30
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0402/rtk/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19009/epp0402/rtk/xml Modified Files: EPPContactInfo.java EPPHostInfo.java Log Message: fix for bug 1475771 Index: EPPContactInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0402/rtk/xml/EPPContactInfo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPContactInfo.java 21 Mar 2003 16:35:36 -0000 1.1 --- EPPContactInfo.java 24 Apr 2006 21:20:25 -0000 1.2 *************** *** 242,246 **** status.m_value = status_value_node.getNodeValue(); } ! status.m_lang = ((Element)a_node).getAttribute("lang"); if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { --- 242,250 ---- status.m_value = status_value_node.getNodeValue(); } ! String lang = ((Element)a_node).getAttribute("lang"); ! if (lang != null && lang.length() > 0) ! { ! status.m_lang = lang; ! } if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { Index: EPPHostInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0402/rtk/xml/EPPHostInfo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPHostInfo.java 21 Mar 2003 16:35:37 -0000 1.1 --- EPPHostInfo.java 24 Apr 2006 21:20:25 -0000 1.2 *************** *** 241,245 **** status.m_value = status_value_node.getNodeValue(); } ! status.m_lang = ((Element)a_node).getAttribute("lang"); if ( ! host_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { --- 241,249 ---- status.m_value = status_value_node.getNodeValue(); } ! String lang = ((Element)a_node).getAttribute("lang"); ! if (lang != null && lang.length() > 0) ! { ! status.m_lang = lang; ! } if ( ! host_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { |
From: eric w. <ewa...@us...> - 2006-04-24 21:20:30
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0604/rtk/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19009/epp0604/rtk/xml Modified Files: EPPContactInfo.java EPPHostInfo.java Log Message: fix for bug 1475771 Index: EPPContactInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0604/rtk/xml/EPPContactInfo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPContactInfo.java 21 Mar 2003 15:52:46 -0000 1.1 --- EPPContactInfo.java 24 Apr 2006 21:20:25 -0000 1.2 *************** *** 266,270 **** status.m_value = status_value_node.getNodeValue(); } ! status.m_lang = ((Element)a_node).getAttribute("lang"); if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { --- 266,274 ---- status.m_value = status_value_node.getNodeValue(); } ! String lang = ((Element)a_node).getAttribute("lang"); ! if (lang != null && lang.length() > 0) ! { ! status.m_lang = lang; ! } if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { Index: EPPHostInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0604/rtk/xml/EPPHostInfo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPHostInfo.java 21 Mar 2003 15:53:13 -0000 1.1 --- EPPHostInfo.java 24 Apr 2006 21:20:25 -0000 1.2 *************** *** 241,244 **** --- 241,249 ---- } status.m_lang = ((Element)a_node).getAttribute("lang"); + String lang = ((Element)a_node).getAttribute("lang"); + if (lang != null && lang.length() > 0) + { + status.m_lang = lang; + } if ( ! host_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { |
From: eric w. <ewa...@us...> - 2006-04-24 21:20:30
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/xml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19009/epprtk/rtk/xml Modified Files: EPPContactInfo.java EPPHostInfo.java Log Message: fix for bug 1475771 Index: EPPContactInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/xml/EPPContactInfo.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EPPContactInfo.java 11 Oct 2005 20:40:04 -0000 1.2 --- EPPContactInfo.java 24 Apr 2006 21:20:25 -0000 1.3 *************** *** 258,262 **** status.m_value = status_value_node.getNodeValue(); } ! status.m_lang = ((Element)a_node).getAttribute("lang"); if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { --- 258,266 ---- status.m_value = status_value_node.getNodeValue(); } ! String lang = ((Element)a_node).getAttribute("lang"); ! if (lang != null && lang.length() > 0) ! { ! status.m_lang = lang; ! } if ( ! contact_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { Index: EPPHostInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epprtk/rtk/xml/EPPHostInfo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPHostInfo.java 7 Dec 2004 15:53:27 -0000 1.1 --- EPPHostInfo.java 24 Apr 2006 21:20:25 -0000 1.2 *************** *** 236,240 **** status.m_value = status_value_node.getNodeValue(); } ! status.m_lang = ((Element)a_node).getAttribute("lang"); if ( ! host_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { --- 236,244 ---- status.m_value = status_value_node.getNodeValue(); } ! String lang = ((Element)a_node).getAttribute("lang"); ! if (lang != null && lang.length() > 0) ! { ! status.m_lang = lang; ! } if ( ! host_status_hash_.containsKey( ((Element)a_node).getAttribute("s") ) ) { |