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: Daniel M. <tub...@us...> - 2003-07-21 17:14:40
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk In directory sc8-pr-cvs1:/tmp/cvs-serv22978 Modified Files: EPPClient.java Log Message: fixed method_name for getGreeting() -- reported by mark petrovic Index: EPPClient.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/EPPClient.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EPPClient.java 25 Apr 2003 20:39:36 -0000 1.2 --- EPPClient.java 21 Jul 2003 17:14:37 -0000 1.3 *************** *** 697,701 **** public epp_Greeting getGreeting() throws epp_Exception, epp_XMLException { ! String method_name = "connectAndGetGreeting()"; debug(DEBUG_LEVEL_THREE,method_name,"Entered"); --- 697,701 ---- public epp_Greeting getGreeting() throws epp_Exception, epp_XMLException { ! String method_name = "getGreeting()"; debug(DEBUG_LEVEL_THREE,method_name,"Entered"); *************** *** 953,957 **** public epp_PollRsp poll(String client_tr_id, String message_id) throws epp_XMLException, epp_Exception { ! String method_name = "Poll()"; debug(DEBUG_LEVEL_THREE,method_name,"Entered"); --- 953,957 ---- public epp_PollRsp poll(String client_tr_id, String message_id) throws epp_XMLException, epp_Exception { ! String method_name = "poll()"; debug(DEBUG_LEVEL_THREE,method_name,"Entered"); |
From: Daniel M. <tub...@us...> - 2003-06-03 21:08:47
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/example In directory sc8-pr-cvs1:/tmp/cvs-serv1426/com/tucows/oxrs/epp0705/rtk/example Modified Files: PollExample.java Log Message: fixes with null checks and check for empty message queue Index: PollExample.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/example/PollExample.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PollExample.java 31 Mar 2003 20:08:04 -0000 1.1 --- PollExample.java 3 Jun 2003 21:08:35 -0000 1.2 *************** *** 149,196 **** response = poll_response.getRsp(); System.out.println("Poll results: "+response); - System.out.println("Poll ResData type: "+poll_response.getResData().getType()); System.out.println("Poll ResData: "+poll_response.getResData()); ! ! message_id = response.getMessageQueue().getId(); ! response_code = response.getResults()[0].getCode(); ! ! ! if ( response_code != epp_Session.EPP_COMMAND_COMPLETED_SUCCESSFULLY_NO_MESSAGES ) { ! BufferedReader buffed_reader = new BufferedReader(new InputStreamReader(System.in)); ! System.out.print("Do you wish to acknowledge this poll message [y]? "); ! String answer = buffed_reader.readLine(); ! ! while ( ( answer != null ) && ! ( answer.length() != 0 ) && ! ( ! answer.equalsIgnoreCase("y") ) && ! ( ! answer.equalsIgnoreCase("n") ) ) ! { ! answer = buffed_reader.readLine(); ! } ! if ( ! answer.equalsIgnoreCase("n") ) { ! System.out.println("Going to acknowledge poll message id ["+message_id+"]"); ! // *************************** ! // Poll (acknowledge a message) ! // *************************** ! System.out.println("Polling the server..."); ! current_time = new Date(); ! client_trid = "ABC:"+epp_client_id+":"+current_time.getTime(); ! poll_response = epp_client.poll(client_trid, message_id); ! ! response = poll_response.getRsp(); ! System.out.println("Poll results: "+response); ! System.out.println("Poll ResData: "+poll_response.getResData()); ! } else { - System.out.println("Going to reject the transfer"); keep_polling = false; } } ! else { keep_polling = false; --- 149,206 ---- response = poll_response.getRsp(); System.out.println("Poll results: "+response); System.out.println("Poll ResData: "+poll_response.getResData()); ! if ( poll_response.getResData() != null ) { ! System.out.println("Poll ResData type: "+poll_response.getResData().getType()); ! } ! if ( response.getMessageQueue() != null ) ! { ! message_id = response.getMessageQueue().getId(); ! response_code = response.getResults()[0].getCode(); ! ! ! if ( response_code != epp_Session.EPP_COMMAND_COMPLETED_SUCCESSFULLY_NO_MESSAGES ) { ! BufferedReader buffed_reader = new BufferedReader(new InputStreamReader(System.in)); ! System.out.print("Do you wish to acknowledge this poll message [y]? "); ! String answer = buffed_reader.readLine(); ! ! while ( ( answer != null ) && ! ( answer.length() != 0 ) && ! ( ! answer.equalsIgnoreCase("y") ) && ! ( ! answer.equalsIgnoreCase("n") ) ) ! { ! answer = buffed_reader.readLine(); ! } ! ! if ( ! answer.equalsIgnoreCase("n") ) ! { ! System.out.println("Going to acknowledge poll message id ["+message_id+"]"); ! // *************************** ! // Poll (acknowledge a message) ! // *************************** ! System.out.println("Polling the server..."); ! current_time = new Date(); ! client_trid = "ABC:"+epp_client_id+":"+current_time.getTime(); ! poll_response = epp_client.poll(client_trid, message_id); ! ! response = poll_response.getRsp(); ! System.out.println("Poll results: "+response); ! System.out.println("Poll ResData: "+poll_response.getResData()); ! ! } ! else ! { ! System.out.println("Going to reject the transfer"); ! keep_polling = false; ! } } else { keep_polling = false; } } ! else { keep_polling = false; |
From: Daniel M. <tub...@us...> - 2003-06-03 21:01:56
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/transport In directory sc8-pr-cvs1:/tmp/cvs-serv32384/com/tucows/oxrs/epp0705/rtk/transport Modified Files: EPPTransportTCPTLS.java Log Message: error checking fix from Afilias RTK code tree -- isConnected() wouldn't return false if the handshake failed Index: EPPTransportTCPTLS.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/transport/EPPTransportTCPTLS.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** EPPTransportTCPTLS.java 25 Apr 2003 16:32:12 -0000 1.3 --- EPPTransportTCPTLS.java 3 Jun 2003 21:01:53 -0000 1.4 *************** *** 176,181 **** socket_to_server_ = (Socket)ssl_factory.createSocket(epp_host_name_, epp_host_port_); if ( socket_to_server_ == null || ! ((SSLSocket)socket_to_server_).isConnected() ) { throw new EPPTransportException( "Failed to establish secure connection to server. Perhaps a bad certificate? -- use -Djavax.net.debug=all to see errors." ); --- 176,183 ---- socket_to_server_ = (Socket)ssl_factory.createSocket(epp_host_name_, epp_host_port_); + // Force the handshake to happen now so we can check for a good connection + SSLSession la_session = ((SSLSocket)socket_to_server_).getSession(); if ( socket_to_server_ == null || ! la_session.getProtocol().equals("NONE") ) { throw new EPPTransportException( "Failed to establish secure connection to server. Perhaps a bad certificate? -- use -Djavax.net.debug=all to see errors." ); |
From: Daniel M. <tub...@us...> - 2003-05-05 15:10:46
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs1:/tmp/cvs-serv30958 Modified Files: VERSION.TXT Log Message: changed the release date to today Index: VERSION.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/VERSION.TXT,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** VERSION.TXT 5 May 2003 15:09:04 -0000 1.24 --- VERSION.TXT 5 May 2003 15:10:43 -0000 1.25 *************** *** 5,9 **** ====================== ! epp-rtk-java-0.7.2 - April 28, 2003 + Fixed the build scrips to include the bouncy castle jar file --- 5,9 ---- ====================== ! epp-rtk-java-0.7.2 - May 5, 2003 + Fixed the build scrips to include the bouncy castle jar file |
From: Daniel M. <tub...@us...> - 2003-05-05 15:10:25
|
Update of /cvsroot/epp-rtk/epp-rtk/java/doc/0705 In directory sc8-pr-cvs1:/tmp/cvs-serv30724 Modified Files: epp-rtk-user-guide.html Log Message: upped the version number and date Index: epp-rtk-user-guide.html =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/doc/0705/epp-rtk-user-guide.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** epp-rtk-user-guide.html 14 Apr 2003 20:48:54 -0000 1.3 --- epp-rtk-user-guide.html 5 May 2003 15:10:21 -0000 1.4 *************** *** 14,19 **** User Guide</center></font></H1> ! <h3><center>Version 0.7.0</center></h3> ! <h3><center>March 31, 2003</center></h3> <h2><center>Created by: LibertyRMS Inc.</center></h2> --- 14,19 ---- User Guide</center></font></H1> ! <h3><center>Version 0.7.2</center></h3> ! <h3><center>May 5, 2003</center></h3> <h2><center>Created by: LibertyRMS Inc.</center></h2> |
From: Daniel M. <tub...@us...> - 2003-05-05 15:09:40
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs1:/tmp/cvs-serv30277 Modified Files: build.xml Log Message: upped the release number in the build script Index: build.xml =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/build.xml,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** build.xml 24 Mar 2003 21:17:56 -0000 1.19 --- build.xml 5 May 2003 15:09:37 -0000 1.20 *************** *** 9,13 **** <property name="optimize" value="true"/> <property name="project.name" value="epp-rtk-java"/> ! <property name="project.version" value="0.7.0"/> <!-- 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.7.2"/> <!-- property name="build.compiler" value="jikes"/ --> <!-- property name="build.compiler" value="classic"/ --> |
From: Daniel M. <tub...@us...> - 2003-05-05 15:09:08
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs1:/tmp/cvs-serv29937 Modified Files: VERSION.TXT Log Message: release notes for 0.7.2 Index: VERSION.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/VERSION.TXT,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** VERSION.TXT 16 Apr 2003 20:22:19 -0000 1.23 --- VERSION.TXT 5 May 2003 15:09:04 -0000 1.24 *************** *** 5,8 **** --- 5,25 ---- ====================== + epp-rtk-java-0.7.2 - April 28, 2003 + + + Fixed the build scrips to include the bouncy castle jar file + + Made the RTK tolerant of missing properties, uses internal + defaults for missing values: debug level=1; transport=tcptls; + advancedlogging=false + + Replaced the array manipulation for address in EPPContactInfo + with an ArrayList, and then convert it to an array afterwards -- + this is consistent with building of the contact status array. + + Made at least get/setAddresses() set of accessors for the + addresses not deprecated in epp_ContactInfoRsp + + In TCPTLS transport, now checking to see if the connection + was successfully established for some reason ssl handshake + exceptions don't make it to us, so we have to probe the socket + + Fix to transfer status values for a bug reported on the devel + list by M Schout + epp-rtk-java-0.7.1 - April 11, 2003 |
From: Daniel M. <tub...@us...> - 2003-04-28 15:19:09
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs1:/tmp/cvs-serv6870 Modified Files: build.bat build.sh Log Message: fix the build scrips to include the bouncy castle jar file Index: build.bat =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/build.bat,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** build.bat 24 Mar 2003 21:17:56 -0000 1.5 --- build.bat 28 Apr 2003 15:19:00 -0000 1.6 *************** *** 33,36 **** --- 33,37 ---- set _XERCES_HOME=%XERCES_HOME% set _LOG4J_HOME=%LOG4J_HOME% + set _BOUNCY_HOME=%BOUNCY_HOME% *************** *** 58,68 **** :gotLog4jHome rem ----- Set Up The Runtime Classpath ---------------------------------------- if "%CLASSPATH%" == "" goto noClasspath ! set CP=%ANT_JAR%\ant.jar;%REGEXP_JAR%\regexp.jar;%XERCES_HOME%\xerces.jar;%LOG4J_HOME%\log4j.jar;%JAVA_HOME%\lib\tools.jar;%CLASSPATH% goto gotClasspath :noClasspath ! set CP=%ANT_JAR%\ant.jar;%REGEXP_JAR%\regexp.jar;%XERCES_HOME%\xerces.jar;%LOG4J_HOME%\log4j.jar;%JAVA_HOME%\lib\tools.jar; :gotClasspath --- 59,73 ---- :gotLog4jHome + if not "%BOUNCY_HOME%" == "" goto gotBouncyHome + set BOUNCY_HOME=.\lib + :gotBouncyHome + rem ----- Set Up The Runtime Classpath ---------------------------------------- if "%CLASSPATH%" == "" goto noClasspath ! set CP=%ANT_JAR%\ant.jar;%REGEXP_JAR%\regexp.jar;%XERCES_HOME%\xerces.jar;%LOG4J_HOME%\log4j.jar;%BOUNCY_HOME%\bcprov-jdk14-115.jar;%JAVA_HOME%\lib\tools.jar;%CLASSPATH% goto gotClasspath :noClasspath ! set CP=%ANT_JAR%\ant.jar;%REGEXP_JAR%\regexp.jar;%XERCES_HOME%\xerces.jar;%LOG4J_HOME%\log4j.jar;%BOUNCY_HOME%\bcprov-jdk14-115.jar;%JAVA_HOME%\lib\tools.jar; :gotClasspath *************** *** 82,85 **** --- 87,91 ---- set XERCES_HOME=%_XERCES_HOME% set LOG4J_HOME=%_LOG4J_HOME% + set BOUNCY_HOME=%_BOUNCY_HOME% set _ANT_JAR= *************** *** 88,90 **** --- 94,97 ---- set _XERCES_HOME= set _LOG4J_HOME= + set _BOUNCY_HOME= Index: build.sh =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/build.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build.sh 24 Mar 2003 21:17:56 -0000 1.4 --- build.sh 28 Apr 2003 15:19:01 -0000 1.5 *************** *** 54,63 **** fi # ----- Set Up The Runtime Classpath ------------------------------------------ if [ "$CLASSPATH" = "" ] ; then ! CP=$ANT_JAR/ant.jar:$REGEXP_JAR/regexp.jar:$XERCES_HOME/xerces.jar:$LOG4J_HOME/log4j.jar:$JAVA_HOME/lib/tools.jar else ! CP=$ANT_JAR/ant.jar:$REGEXP_JAR/regexp.jar:$XERCES_HOME/xerces.jar:$LOG4J_HOME/log4j.jar:$JAVA_HOME/lib/tools.jar:$CLASSPATH fi --- 54,67 ---- fi + if [ "$BOUNCY_HOME" = "" ] ; then + BOUNCY_HOME=./lib + fi + # ----- Set Up The Runtime Classpath ------------------------------------------ if [ "$CLASSPATH" = "" ] ; then ! CP=$ANT_JAR/ant.jar:$REGEXP_JAR/regexp.jar:$XERCES_HOME/xerces.jar:$LOG4J_HOME/log4j.jar:$BOUNCY_HOME/bcprov-jdk14-115.jar:$JAVA_HOME/lib/tools.jar else ! CP=$ANT_JAR/ant.jar:$REGEXP_JAR/regexp.jar:$XERCES_HOME/xerces.jar:$LOG4J_HOME/log4j.jar:$BOUNCY_HOME/bcprov-jdk14-115.jar:$JAVA_HOME/lib/tools.jar:$CLASSPATH fi |
From: Daniel M. <tub...@us...> - 2003-04-25 20:39:46
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk In directory sc8-pr-cvs1:/tmp/cvs-serv2909/com/tucows/oxrs/epp0705/rtk Modified Files: EPPClient.java RTKBase.java Log Message: make the RTK tolerant of missing properties -- in fact, the whole rtk.props.file property can be missing and the RTK will use a bunch of defaults debug level: 1 transport: tcptls advancedlogging: false though the RTK does behave a little differently in SSL when the rtk.properties file is not used - weird Index: EPPClient.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/EPPClient.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPClient.java 20 Mar 2003 22:41:59 -0000 1.1 --- EPPClient.java 25 Apr 2003 20:39:36 -0000 1.2 *************** *** 302,306 **** UnknownHostException, SocketException, ! IOException { String method_name = "setSocketToEPPServer"; --- 302,307 ---- UnknownHostException, SocketException, ! IOException, ! EPPTransportException { String method_name = "setSocketToEPPServer"; *************** *** 474,486 **** } ! try ! { ! transport_str = (String) RTKBase.getRTKProperties().getProperty("rtk.transport"); ! } ! catch (Exception xcp) ! { ! debug(DEBUG_LEVEL_ONE,method_name,"Configuration file not found or file read error! Default protocol will be taken."); ! transport_str = DEFAULT_TRANSPORT_CLASS; ! } if ( transport_str.indexOf('.') == -1 ) --- 475,479 ---- } ! transport_str = (String) RTKBase.getRTKProperties().getProperty("rtk.transport",DEFAULT_TRANSPORT_CLASS); if ( transport_str.indexOf('.') == -1 ) *************** *** 507,510 **** --- 500,506 ---- throw new EPPTransportException("Transport class ["+transport_str+"] not found. Please check your classpath and the package name for the transport."); } + + // ENABLE BC PROVIDER for PKCS12 keystore + try { java.security.Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider()); } catch(Exception xcp) { throw new IOException(xcp.getMessage()); } transport_.initialize(epp_host_name_, epp_host_port_, epp_timeout_); Index: RTKBase.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/RTKBase.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RTKBase.java 11 Apr 2003 17:07:16 -0000 1.5 --- RTKBase.java 25 Apr 2003 20:39:38 -0000 1.6 *************** *** 125,129 **** try { ! String rtk_debuglevel_str = (String) RTKBase.getRTKProperties().getProperty("rtk.debug.level"); rtk_debuglevel = Integer.parseInt(rtk_debuglevel_str); } --- 125,129 ---- try { ! String rtk_debuglevel_str = (String) RTKBase.getRTKProperties().getProperty("rtk.debug.level","1"); rtk_debuglevel = Integer.parseInt(rtk_debuglevel_str); } *************** *** 177,181 **** try { ! advancedLogging = RTKBase.getRTKProperties().getProperty("rtk.debug.advancedLogging"); } catch ( Exception prop_xcp ) --- 177,181 ---- try { ! advancedLogging = RTKBase.getRTKProperties().getProperty("rtk.debug.advancedLogging", "false"); } catch ( Exception prop_xcp ) *************** *** 215,219 **** try { ! advancedLogging = RTKBase.getRTKProperties().getProperty("rtk.debug.advancedLogging"); } catch ( Exception prop_xcp ) --- 215,219 ---- try { ! advancedLogging = RTKBase.getRTKProperties().getProperty("rtk.debug.advancedLogging", "false"); } catch ( Exception prop_xcp ) |
From: Daniel M. <tub...@us...> - 2003-04-25 20:39:45
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml In directory sc8-pr-cvs1:/tmp/cvs-serv2909/com/tucows/oxrs/epp0705/rtk/xml Modified Files: EPPPoll.java Log Message: make the RTK tolerant of missing properties -- in fact, the whole rtk.props.file property can be missing and the RTK will use a bunch of defaults debug level: 1 transport: tcptls advancedlogging: false though the RTK does behave a little differently in SSL when the rtk.properties file is not used - weird Index: EPPPoll.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml/EPPPoll.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPPoll.java 20 Mar 2003 22:42:00 -0000 1.1 --- EPPPoll.java 25 Apr 2003 20:39:38 -0000 1.2 *************** *** 227,231 **** StringTokenizer poll_package_names = new StringTokenizer( ! (String) RTKBase.getRTKProperties().getProperty("poll.parser.extension.packages"), ","); --- 227,231 ---- StringTokenizer poll_package_names = new StringTokenizer( ! (String) RTKBase.getRTKProperties().getProperty("poll.parser.extension.packages", ""), ","); |
From: Daniel M. <tub...@us...> - 2003-04-25 20:38:11
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml In directory sc8-pr-cvs1:/tmp/cvs-serv2163/com/tucows/oxrs/epp0705/rtk/xml Modified Files: EPPContactInfo.java Log Message: I replaced the array manipulation for address in EPPContactInfo with an ArrayList, and then convert it to an array afterwards -- this is consistent with building of the contact status array. bug submitted by m lampret -- I didn't take his patch in favour of making the build of the address array consisten with the building of status array Index: EPPContactInfo.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml/EPPContactInfo.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPContactInfo.java 20 Mar 2003 22:42:00 -0000 1.1 --- EPPContactInfo.java 25 Apr 2003 20:38:05 -0000 1.2 *************** *** 204,207 **** --- 204,208 ---- List statuses = (List)new ArrayList(); + List addresses = (List)new ArrayList(); for (int count = 0; count < contact_info_result_list.getLength(); count++) *************** *** 215,239 **** { epp_ContactNameAddress epp_address = addressFromXML(a_node); ! if ( action_response_.m_addresses == null ) ! { ! action_response_.m_addresses = new epp_ContactNameAddress[1]; ! action_response_.m_addresses[0] = epp_address; ! } ! else ! { ! // turn the fixed-size array into a list so we can easily add another element ! // to it, then convert it back to an array -- I love being lazy! ! List addresses = java.util.Arrays.asList(action_response_.m_addresses); ! addresses.add(epp_address); ! action_response_.m_addresses = (epp_ContactNameAddress[]) EPPXMLBase.convertListToArray((new epp_ContactNameAddress()).getClass(), addresses); ! } // XXX Backward compatibility for deprecated data members ! if ( action_response_.m_ascii_address == null ) { action_response_.m_ascii_address = epp_address; } else { action_response_.m_i15d_address = epp_address; } --- 216,230 ---- { epp_ContactNameAddress epp_address = addressFromXML(a_node); ! addresses.add(epp_address); // XXX Backward compatibility for deprecated data members ! if ( epp_address.getType() == epp_ContactPostalInfoType.INT ) { + // internationalized address action_response_.m_ascii_address = epp_address; } else { + // localized address action_response_.m_i15d_address = epp_address; } *************** *** 299,302 **** --- 290,294 ---- } + if ( addresses.size() > 0 ) { action_response_.m_addresses = (epp_ContactNameAddress[]) convertListToArray((new epp_ContactNameAddress()).getClass(), addresses); } if ( statuses.size() > 0 ) { action_response_.m_status = (epp_ContactStatus[]) convertListToArray((new epp_ContactStatus()).getClass(), statuses); } |
From: Daniel M. <tub...@us...> - 2003-04-25 16:33:40
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/org/openrtk/idl/epp0705/contact In directory sc8-pr-cvs1:/tmp/cvs-serv26260/org/openrtk/idl/epp0705/contact Modified Files: epp_ContactInfoRsp.java Log Message: make at least one set of accessors for the addresses not deprecated Index: epp_ContactInfoRsp.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/org/openrtk/idl/epp0705/contact/epp_ContactInfoRsp.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** epp_ContactInfoRsp.java 20 Mar 2003 22:42:26 -0000 1.1 --- epp_ContactInfoRsp.java 25 Apr 2003 16:33:36 -0000 1.2 *************** *** 305,309 **** * @param value The contact names and addresses * @see #m_addresses - * @deprecated */ public void setAddresses(org.openrtk.idl.epp0705.contact.epp_ContactNameAddress[] value) { m_addresses = value; } --- 305,308 ---- *************** *** 312,316 **** * @return The contact names and addresses * @see #m_addresses - * @deprecated */ public org.openrtk.idl.epp0705.contact.epp_ContactNameAddress[] getAddresses() { return m_addresses; } --- 311,314 ---- |
From: Daniel M. <tub...@us...> - 2003-04-25 16:32:22
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/transport In directory sc8-pr-cvs1:/tmp/cvs-serv25624/com/tucows/oxrs/epp0705/rtk/transport Modified Files: EPPTransportBase.java EPPTransportTCP.java EPPTransportTCPTLS.java Log Message: check to see if the connection was successfully established for some reason ssl handshake exception don't make it to us, so we have to probe the socket Index: EPPTransportBase.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/transport/EPPTransportBase.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPTransportBase.java 20 Mar 2003 22:41:59 -0000 1.1 --- EPPTransportBase.java 25 Apr 2003 16:32:10 -0000 1.2 *************** *** 158,162 **** * @throws UnknownHostException */ ! public abstract void connect() throws SocketException, IOException, UnknownHostException; /** --- 158,162 ---- * @throws UnknownHostException */ ! public abstract void connect() throws SocketException, IOException, UnknownHostException, EPPTransportException; /** Index: EPPTransportTCP.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/transport/EPPTransportTCP.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EPPTransportTCP.java 20 Mar 2003 22:41:59 -0000 1.1 --- EPPTransportTCP.java 25 Apr 2003 16:32:12 -0000 1.2 *************** *** 108,112 **** * of its origins. */ ! public void connect() throws SocketException, IOException, UnknownHostException { String method_name = "connect()"; --- 108,112 ---- * of its origins. */ ! public void connect() throws SocketException, IOException, UnknownHostException, EPPTransportException { String method_name = "connect()"; Index: EPPTransportTCPTLS.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/transport/EPPTransportTCPTLS.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EPPTransportTCPTLS.java 9 Apr 2003 18:01:48 -0000 1.2 --- EPPTransportTCPTLS.java 25 Apr 2003 16:32:12 -0000 1.3 *************** *** 97,101 **** * @throws UnknownHostException */ ! public void connect() throws SocketException, IOException, UnknownHostException { String method_name = "connect()"; --- 97,101 ---- * @throws UnknownHostException */ ! public void connect() throws SocketException, IOException, UnknownHostException, EPPTransportException { String method_name = "connect()"; *************** *** 176,179 **** --- 176,184 ---- socket_to_server_ = (Socket)ssl_factory.createSocket(epp_host_name_, epp_host_port_); + if ( socket_to_server_ == null || + ((SSLSocket)socket_to_server_).isConnected() ) + { + throw new EPPTransportException( "Failed to establish secure connection to server. Perhaps a bad certificate? -- use -Djavax.net.debug=all to see errors." ); + } } |
From: Daniel M. <tub...@us...> - 2003-04-21 17:18:44
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml In directory sc8-pr-cvs1:/tmp/cvs-serv30789 Modified Files: EPPXMLBase.java Log Message: fix to transfer status values for a bug reported on the devel list by Michael Schout Index: EPPXMLBase.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/xml/EPPXMLBase.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EPPXMLBase.java 9 Apr 2003 18:32:32 -0000 1.2 --- EPPXMLBase.java 21 Apr 2003 17:18:37 -0000 1.3 *************** *** 105,114 **** { transfer_status_to_type_hash_ = new Hashtable(); ! transfer_status_to_type_hash_.put("clientapproved", epp_TransferStatusType.CLIENT_APPROVED); ! transfer_status_to_type_hash_.put("clientcancelled", epp_TransferStatusType.CLIENT_CANCELLED); ! transfer_status_to_type_hash_.put("clientrejected", epp_TransferStatusType.CLIENT_REJECTED); transfer_status_to_type_hash_.put("pending", epp_TransferStatusType.PENDING); ! transfer_status_to_type_hash_.put("serverapproved", epp_TransferStatusType.SERVER_APPROVED); ! transfer_status_to_type_hash_.put("servercancelled", epp_TransferStatusType.SERVER_CANCELLED); } } --- 105,114 ---- { transfer_status_to_type_hash_ = new Hashtable(); ! transfer_status_to_type_hash_.put("clientApproved", epp_TransferStatusType.CLIENT_APPROVED); ! transfer_status_to_type_hash_.put("clientCancelled", epp_TransferStatusType.CLIENT_CANCELLED); ! transfer_status_to_type_hash_.put("clientRejected", epp_TransferStatusType.CLIENT_REJECTED); transfer_status_to_type_hash_.put("pending", epp_TransferStatusType.PENDING); ! transfer_status_to_type_hash_.put("serverApproved", epp_TransferStatusType.SERVER_APPROVED); ! transfer_status_to_type_hash_.put("serverCancelled", epp_TransferStatusType.SERVER_CANCELLED); } } |
From: Daniel M. <tub...@us...> - 2003-04-16 20:22:23
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs1:/tmp/cvs-serv13496 Modified Files: VERSION.TXT Log Message: added copyright for 2003, LibertyRMS Index: VERSION.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/VERSION.TXT,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** VERSION.TXT 11 Apr 2003 17:29:06 -0000 1.22 --- VERSION.TXT 16 Apr 2003 20:22:19 -0000 1.23 *************** *** 1,6 **** Copyright (c) 2001, 2002 Tucows, Inc. All rights reserved. ! ! Tucows, Inc. ! EPP RTK Java Versions --- 1,4 ---- Copyright (c) 2001, 2002 Tucows, Inc. All rights reserved. ! Copyright (c) 2003 LibertyRMS, Inc. All rights reserved. EPP RTK Java Versions |
From: Daniel M. <tub...@us...> - 2003-04-14 20:50:04
|
Update of /cvsroot/epp-rtk/epp-rtk/java/doc In directory sc8-pr-cvs1:/tmp/cvs-serv29520a Added Files: README Log Message: simple little hint of the contents of this directory --- NEW FILE: README --- This directory contains the subdirectories of the user guides for each EPP version of the RTK. |
From: Daniel M. <tub...@us...> - 2003-04-14 20:49:00
|
Update of /cvsroot/epp-rtk/epp-rtk/java/doc/0705 In directory sc8-pr-cvs1:/tmp/cvs-serv28971 Modified Files: epp-rtk-user-guide.html Log Message: small little fix to formatting Index: epp-rtk-user-guide.html =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/doc/0705/epp-rtk-user-guide.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** epp-rtk-user-guide.html 31 Mar 2003 21:10:25 -0000 1.2 --- epp-rtk-user-guide.html 14 Apr 2003 20:48:54 -0000 1.3 *************** *** 1536,1539 **** --- 1536,1541 ---- messages or possibly anticipated server outage messages. + <p> + A Poll message is contructed like the other EPP actions. This usage is detailed below. But the EPPClient contains the method poll() with various |
From: Daniel M. <tub...@us...> - 2003-04-14 20:48:13
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs1:/tmp/cvs-serv28540 Modified Files: run_example.bat run_example.sh Log Message: added usage of bouncycastle encryption provider jar file Index: run_example.bat =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/run_example.bat,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** run_example.bat 24 Mar 2003 21:17:56 -0000 1.8 --- run_example.bat 14 Apr 2003 20:48:06 -0000 1.9 *************** *** 48,55 **** if "%CLASSPATH%" == "" goto noClasspath ! set CP=%RTK_HOME%\java\lib\xerces.jar;%RTK_HOME%\java\lib\regexp.jar;%RTK_HOME%\java\lib\log4j.jar;%RTK_HOME%\java\lib\epp-rtk-java.jar;%CLASSPATH% goto gotClasspath :noClasspath ! set CP=%RTK_HOME%\java\lib\xerces.jar;%RTK_HOME%\java\lib\regexp.jar;%RTK_HOME%\java\lib\log4j.jar;%RTK_HOME%\java\lib\epp-rtk-java.jar; :gotClasspath --- 48,55 ---- if "%CLASSPATH%" == "" goto noClasspath ! set CP=%RTK_HOME%\java\lib\xerces.jar;%RTK_HOME%\java\lib\regexp.jar;%RTK_HOME%\java\lib\log4j.jar;%RTK_HOME%\java\lib\bcprov-jdk14-115.jar;%RTK_HOME%\java\lib\epp-rtk-java.jar;%CLASSPATH% goto gotClasspath :noClasspath ! set CP=%RTK_HOME%\java\lib\xerces.jar;%RTK_HOME%\java\lib\regexp.jar;%RTK_HOME%\java\lib\log4j.jar;%RTK_HOME%\java\lib\bcprov-jdk14-115.jar;%RTK_HOME%\java\lib\epp-rtk-java.jar; :gotClasspath Index: run_example.sh =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/run_example.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** run_example.sh 24 Mar 2003 21:17:56 -0000 1.8 --- run_example.sh 14 Apr 2003 20:48:07 -0000 1.9 *************** *** 30,34 **** java -Dssl.props.location=$RTK_HOME/java/ssl \ -Drtk.props.file=$RTK_HOME/java/etc/rtk.properties \ ! -cp $RTK_HOME/java/lib/xerces.jar:$RTK_HOME/java/lib/epp-rtk-java.jar:$RTK_HOME/java/lib/regexp.jar:$RTK_HOME/java/lib/log4j.jar \ com.tucows.oxrs.epp$EPP_VERSION.rtk.example.$EXAMPLE_CLASS \ $EPP_HOST $EPP_PORT $CLIENT_ID $PASSWORD \ --- 30,34 ---- java -Dssl.props.location=$RTK_HOME/java/ssl \ -Drtk.props.file=$RTK_HOME/java/etc/rtk.properties \ ! -cp $RTK_HOME/java/lib/xerces.jar:$RTK_HOME/java/lib/epp-rtk-java.jar:$RTK_HOME/java/lib/regexp.jar:$RTK_HOME/java/lib/log4j.jar:$RTK_HOME/java/lib/bcprov-jdk14-115.jar \ com.tucows.oxrs.epp$EPP_VERSION.rtk.example.$EXAMPLE_CLASS \ $EPP_HOST $EPP_PORT $CLIENT_ID $PASSWORD \ |
From: Daniel M. <tub...@us...> - 2003-04-14 20:47:19
|
Update of /cvsroot/epp-rtk/epp-rtk/java/ssl In directory sc8-pr-cvs1:/tmp/cvs-serv28181 Added Files: epp_rtk_keystore.p12 Log Message: readding with -kb option |
From: Daniel M. <tub...@us...> - 2003-04-14 20:46:31
|
Update of /cvsroot/epp-rtk/epp-rtk/java/ssl In directory sc8-pr-cvs1:/tmp/cvs-serv27714 Removed Files: epp_rtk_keystore.p12 Log Message: removing to readd with -kb option --- epp_rtk_keystore.p12 DELETED --- |
From: Daniel M. <tub...@us...> - 2003-04-14 20:45:51
|
Update of /cvsroot/epp-rtk/epp-rtk/java/lib In directory sc8-pr-cvs1:/tmp/cvs-serv26948 Modified Files: README.TXT xerces.jar Added Files: bcprov-jdk14-115.jar xerces-1.3.0.jar Log Message: updated xerces to 1.4.4 moved old xerces jar to xerces-1.3.0.jar added bouncycastle encryption provider jar file update README for this --- NEW FILE: bcprov-jdk14-115.jar --- PK o@ <H8áÑÓ_iÏJH:õwNܹµaÍ5Íc¥¸E Mû_»°nÒ²ø?ÿÿúÏÿ ëÐmÃ࿨éöô¿¡ý?fWüKIýºl¦¦ óæ_Báÿ÷ÿûÿñÿ¡ºyøþUÖ1è]áO¾Û´Yý¬ê²O°EF"³¸¬Ó6Éu·¾þ?Úëÿføÿö3·iþó?LÿIãëßòþÕT»`KñJÔx*(uÖJ¹õÉ)zøÿ^]ªËSXè{w`s(L/=3ûäW!R(ä`À!9·Û08bÐ ü|PDåÝçÝ;£ 6ÀÅ]r\j(~`à^~fÍöº9VIXÿÛÊ(mÿ¡9¸»¨ªOºÂXÅtÙ#ÎVMFEwÀøéKùyi\¸mW;7ë»K¤åä/ñзSsjrl ÌÄëtÓ¼½Ëõ]èp5»IÞ]Òê]s»íJ¨<à*]kÎ;Bï,) î¦õ:¼®ê¶eýo~`ÜuXV«5#⵩½l ÏpÄá /íÒu%¶øø ×óúãP AX´i>ø°á$ÛÓ1#Ľ-Ùy9ÆÀÖ}Ìg÷ícQÝhÞ1ôÛ»O>¬¹f%Û_¯dcq:î«Dotnµ}ÇÒÙlíæn6c{-W×. 9IMQPqÙÐßÑo-ÄðzöWïvýw×q_ö§)\Â-Oº¡Ù)5»?c_6Ø´óÀøHúÈ?9 £cÓJ9ô"-a³Ûòç;]m[ï¼,õ½©©°NÂlÄGðËÙ,)qùvÖÝý¶Î¾v«Ïí1«ôßk²{ûÙÝ;1 ÜÉp¡ä±[FEÈØì±UÙüå'ò2ðê稬ôO36aEÜm±ÉUñ-'i÷B«¸óþfYæßÃÑûQ§Ð·>J5[Áµ³ÚØíé.v Oûëé½.C¼ ¨´ýÏÿø×^ÜýP:<nÀHˬòȨ`lÝa åµ õé²ÛïÝ]ÀX8zE_b=~ab¿aw|á#ówºÉßí·Kcëu¸>襳t}É~ùÁ0xd÷«!92@êR¼ß{ÞR1Èè(n±/_KÆunB?Ò«}ðóE»Ç_PÛÜÖý X ø__ÝR¢¼~§kèM÷æÚ¦IwÂ廽©Y"XGÞw°Ð2êl°Ù¯|! Wk¼ÿe÷Ô¶ 6Ùr¾àpxÄ;ùÍjöäý´Eûúϰò3tÝSÌ`£*'SBr]¦Ó¡S;èì¹û±×ãôã[~¥¹w×!âAKÒ Õ÷ç~g¥¾x¦6þ|êäX~ëÜõWî.³<róZÏ$l@³³bF$7Åq6ýür¿zûkFÕù·í¾ÃÀ.{Z£Òµ{F¬N¨å¢ÑÙóõeÁÇSP.øówjÈ1~ö²éãÀÌ!¸l7~@5Uè{{ë¿ÝO¤i[á1fâ³àwC|Æb\,/í?{zZ\7<rýk(aé'A_TòÛ(¡ò"?uëEtóyíÏMaÇ6,O´mÜøþ~äÒR m(k¡ÅQªäõ¤N¾=ïÇFÐY ¹FM9^¥ÇU\ i=Zªyì®Ë»¸eÑá:Tqý[×GÞ/l.¡Ñ ø]ÈDª]§]Þpתføï6¿fYW?GßÏ&Á<Ãʺ 4h ÊÑ»f7è»^sý?˵ëëÝÏé~/-Ä64mvíé<ìëEÔG`ú|àÃ^;ß÷{®[e´xî|ØìÒ äãÁ§øåôÏÝ×c¤êH|à.ý5>Ïé>êVz^bôÔÎ,yXyemÅRã1ÐI!#?½þénY7½Ù¢§P)ôÌ;û\;©ÈWB(i<ë~5laÂÀµ°ªVmÈʱ¨öàs$,OTöñÝ*¼%ÖTÝ÷sðG ¼qÒÐdä$îÇYKøY>|oÌõ =AÙNR¥û16&É:!/ ªÒÁm^ølë×Xzÿ«®ºlóÕ4´6{ÎT¤±ôÏÏQÞÏ(J]K»Àáý(zÞE(.¨ËZÞéLPcÄ4`cÝì"_oBuQÖað¾$zUuKÔ[(þ´u i¯²¾ó|kü@Sö'zK~êð¶vád{|^wCTî[FÖFG(0½e çJBÚ `Ô6{ ~¯ÙÿjXoÊË«½*n#¶>î^¦\|1ÒþRÀ<²ãU5;H¡ÙÐrËnº<OFn~;FWãö¯Ël¾ô?êX9½Ö÷?ßá TÓz¬øud;Ö7#ÚÑÏSkîCEóQ½výG;§d},µzNj¨®u:¢Ö{£ÿ3MMEà÷óâAå/ÀTR}DØã2xÖÙüñje:üewi:TZ_28«K¹Ç¨Kjx«ÙqMT4nnýxÿÙíø:WëxÖlsU8B,üÕs,¿òg˨?0+Öðùp|nÎ OåD.©ÇVѹKýò4Kû6ÿ§9æ$T=¦Í¥9uHZÔyleuÌþy ÿ&ºUÓe·ÆçÕ6Û¹PLø½¤éôÚ9'ØhÉñIÉÎÌaÖqum}×òáx÷á»%Òjó DUV¤~°Ïø~ùnd·üèß÷Ñä8ÞtAÁÞOëc÷à0Nü¾û¿bk÷·~OÉx3öYOöVDÛëRâ,8ðwø½mÆý%eOx£'¬&&\"ûv±ò¶^?Híâ? «WûèSÚ dHÒåÖ&jGöŹIλÃõ~Éê =Áõ?«R%_Iµô°Ú)`ÕÝ@ £D§²åªm¾UþpÜ?Qlxܸ}Û'k0D`"¨u£DWßèþh >A,U2@©ËèeT ¬q²aȬ©}¸ ïps ðêðî 0úí'¢Ð\ôL ú¬N=~Ðl<!Ï^KÐ)Á<XÌ ®C/Çi²«ZP·ê¢¼v½.u6Ï1/ư¦Ëïó<+ÁåIê[qI%ØI,ÕH¯ùGü+í2èfNNìT¬b°´n¢Î;ùõ>È#*Ñ}Øn#[dB<I×~ík©$íÃ+^_3ôë°ýµòÔßÖÌíÀ¬Û`Upçâ¡L¢~º ¨ùÕ£<YÀfxä}n^"å*K°6¢ $0MË×yNã´¸}¹ù»²Tú5¯Ä6$õUqÝãLs$L¯4ââïù®~b6 3µÕ~eæ0cÖPº§Ø[$³¢ûÒ)V |´«Ã¤$$píÚÌ^Áp¿»*qtþm°l1 ÔÔ/f¬ ,·»V"Ývÿ®Û{ß¼+lçÎ0]ÙÜ~'4ke´M ÿlþ¾O¹]¾!qÀö¨-Z mN0å¯'Ù¢³² ÆmÝ»+P>¬s}p] cíµî^èÒÃ?L 6Kø`y¨ kj4j¸'ÑÐhYøsk°¹5±?z~¿ÿ QRƹd£«ók¡ß=º¼pÑ¡ÿ3K¼u]6]wǰâY¹fÌñ±jYB6°×ªÈÏc󬯯(æ"Øw« nC9ñW@Ïn¼¯Øm>¸WðKS+õ±ìr\xÚyýÀ|켺Y<Ü}\äÖÒX¤e+8·8Ø;¹RÜÿE»úmC¼B~ÒkúðWô§¦lQruUÃÎåRDoTY¿7äÔsÆtã¼Ãn'mKÛÃç¦ðì+þ?tW÷ΌûiÃþ"Ë jp6fu,ÄF=Xd˽§%xµ§_ø?w× /Ç` ⣠åAyÿÅt¨ã ÕÔ8Ä"¬ãÞ1j^YíLb¸5]cØ|É¢y<Yº¡r±uqȶ±Ð¾¯§¬9ø õP'Te_XL)vßWÇTI|$ô7-é!øàÂI¯[ðL]×#q¾ücSù [...3447 lines suppressed...] ® --- NEW FILE: xerces-1.3.0.jar --- PK Created-By: 1.3.0 (Sun Microsystems Inc.) PK PK SourceFile [...16717 lines suppressed...] Index: README.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/lib/README.TXT,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README.TXT 11 May 2001 22:12:27 -0000 1.2 --- README.TXT 14 Apr 2003 20:45:45 -0000 1.3 *************** *** 13,15 **** The version of Ant included here is 1.3. ! The version of Xerces included here is 1.3.0. --- 13,17 ---- The version of Ant included here is 1.3. ! Two versions of Xerces are included here: xerces.jar is 1.4.1, ! xerces-1.3.0.jar is included for registrars who have a dependency ! on this version. Index: xerces.jar =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/lib/xerces.jar,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsA1j56s and /tmp/cvswrLOjq differ |
From: Daniel M. <tub...@us...> - 2003-04-14 20:44:00
|
Update of /cvsroot/epp-rtk/epp-rtk/java/lib In directory sc8-pr-cvs1:/tmp/cvs-serv26623 Added Files: log4j.jar Log Message: re-adding with -kb option |
From: Daniel M. <tub...@us...> - 2003-04-14 20:42:53
|
Update of /cvsroot/epp-rtk/epp-rtk/java/lib In directory sc8-pr-cvs1:/tmp/cvs-serv26095 Removed Files: log4j.jar Log Message: removing this file so it can be added with -kb option --- log4j.jar DELETED --- |
From: Daniel M. <tub...@us...> - 2003-04-11 17:29:11
|
Update of /cvsroot/epp-rtk/epp-rtk/java In directory sc8-pr-cvs1:/tmp/cvs-serv25569 Modified Files: VERSION.TXT Log Message: release notes for 0.7.1 Index: VERSION.TXT =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/VERSION.TXT,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** VERSION.TXT 24 Mar 2003 21:22:03 -0000 1.21 --- VERSION.TXT 11 Apr 2003 17:29:06 -0000 1.22 *************** *** 7,10 **** --- 7,22 ---- ====================== + epp-rtk-java-0.7.1 - April 11, 2003 + + + Merged in bug fixes from custom 0.7.0 for Afilias + (includes: fixes to EPPGreeting in parsing the + dcp data; fixes to XML rendering of extensions; + upgrade xerces to 1.4.4; fixed auth info xml + rendering to be compliant with the syntax; fixes + and minor improvements to the examples) + + Using BouncyCastle provider for PKCS12 keystore + + Updated the ssl directory with newer example key + and cert and moved old ssl stuff to ssl/old-ssl + epp-rtk-java-0.7.0 - March 24, 2003 |
From: Daniel M. <tub...@us...> - 2003-04-11 17:07:21
|
Update of /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk In directory sc8-pr-cvs1:/tmp/cvs-serv14436/src/com/tucows/oxrs/epp0705/rtk Modified Files: RTKBase.java Log Message: changed log4j properties to not use rootCategory anymore changed RTKBase to call getLogger("epprtk"); not using root logger anymore because it could interfere with loggers used by apps using this RTK Index: RTKBase.java =================================================================== RCS file: /cvsroot/epp-rtk/epp-rtk/java/src/com/tucows/oxrs/epp0705/rtk/RTKBase.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RTKBase.java 9 Apr 2003 18:32:32 -0000 1.4 --- RTKBase.java 11 Apr 2003 17:07:16 -0000 1.5 *************** *** 287,291 **** PropertyConfigurator.configure(getRTKProperties()); ! logger_ = Logger.getRootLogger(); } catch(Exception xcp) --- 287,291 ---- PropertyConfigurator.configure(getRTKProperties()); ! logger_ = Logger.getLogger("epprtk"); } catch(Exception xcp) |