Monday, November 29, 2010

Fix ant task Wscompile cannot be found in NB 6

The bug seems to be in /nbproject/project.properties:
Change:
wscompile.classpath=${wscompile.tools.classpath}:${j2ee.platform.wscompile.classpath}
To:
wscompile.classpath=${wscompile.tools.classpath}:${j2ee.platform.wscompile.classpath}:${javac.classpath}

Thursday, July 8, 2010

Jruby warble calendar_date_select

If you are trying to pack up a jruby rails app that uses calender_date_select.

and you get undefined method 'calendar_date_select_includes'

remember to add public to your directorys in your warble.rb file.

Took me ages to figure out that this was the problem

Wednesday, June 23, 2010

Jruby warble tomcat RoutingError

Took me while to figure this one out you need to add

config.action_controller.relative_url_root = '/{appname}'

to environments/production.rb

or environments/development.rb

Tuesday, June 22, 2010

Rails Mysql data types

Rails Migration Symbol MySQL Data Type
:binary blob
:boolean tinyint(1)
:date date
:datetime datetime
:decimal decimal
:float float
:integer int(11)
:string varchar(255)
:text text
:time time
:timestamp datetime

Wednesday, May 12, 2010

Tuesday, January 19, 2010

Convert String to Float function in java

public static float string2float(String input) {
float output = 0;
try {
output = Float.valueOf(input.trim()).floatValue();
}
catch (NumberFormatException ex) {
System.out.println("NumberFormatException: " + ex.getMessage());
}
return output;
}

Tuesday, November 17, 2009

create csr for apache

Useful information found

1. Install OpenSSL, if not found on your server.

2. Create a RSA key for your Apache server:

cd /apacheserverroot/conf/ssl.key (ssl.key is the default key directory.)

If you have a different path, cd to your server’s private key directory
3. Type the following command to generate a private key that is file encrypted. You will be prompted for the password to access the file and also when starting your webserver: Warning: If you lose or forget the passphrase, you must purchase another certificate.

openssl genrsa -des3 -out domainname.key 1024

You could also create a private key without file encryption if you do not want to enter the passphrase when starting your webserver:

openssl genrsa -out domainname.key 1024

Note: We recommend that you name the private key using the domain name that you are purchasing the certificate for ie domainname.key

4. Type the following command to create a CSR with the RSA private key (output will be PEM format):

openssl req -new -key domainname.key -out domainname.csr

* Note: You will be prompted for your PEM passphrase if you included the "-des3" switch in step 3.

5. When creating a CSR you must follow these conventions. Enter the information to be displayed in the certificate. The following characters can not be accepted: < > ~ ! @ # $ % ^ * / \ ( ) ?.,&

DN Field

Explanation

Example
Common Name The fully qualified domain name for your web server. This must be an exact match. If you intend to secure the URL https://www.yourdomain.com, then your CSR's common name must be www.yourdomain.com.
Organization The exact legal name of your organization. Do not abbreviate your organization name. RapidSSL.com
Organization Unit Section of the organization Marketing
City or Locality The city where your organization is legally located. Wellesley Hills
State or Province The state or province where your organization is legally located. Can not be abbreviated. Massachusetts
Country The two-letter ISO abbreviation for your country. US

6. Do not enter extra attributes at the prompt.

Warning: Leave the challenge password blank (press enter)

Note: If you would like to verify the contents of the CSR, use the following command:

openssl req -noout -text -in domainname.csr

7. Submit your CSR to versign using the online application pages.

Create a backup of your private key!

Make a copy of the private key file (domainname.key) generated in step 3 and store it in a safe place! If you lose this file, you must purchase a new certificate.

* The private key file should begin with (when using a text editor)

-----BEGIN RSA PRIVATE KEY----- and end with -----END RSA PRIVATE KEY-----.

To view the contents of the private key, use the following command:

openssl rsa -noout -text -in domainname.key