Archive for the ‘Java’ Category

Get IP location from ASP.NET, PHP, etc.

Just found this free service http://ipinfodb.com/ip_location_api.php
XML API:
To get City precision:
http://ipinfodb.com/ip_query.php?ip=your_ip_address
To get Country precision: (claims this is more faster than above)
http://ipinfodb.com/ip_query_country.php?ip=your_ip_address
Get more details about xml api here: http://ipinfodb.com/ip_location_api.php
JSON API:
To get City precision:
http://ipinfodb.com/ip_query.php?ip=your_ip_address&output=json
To get Country precision:
http://ipinfodb.com/ip_query_country.php?ip=your_ip_address&output=json
Optional call back:
http://ipinfodb.com/ip_query.php?ip=your_ip_address&output=json&callback=myfunction
Get more details about json api here: http://ipinfodb.com/ip_location_api_json.php
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Comments (4)

Microsoft SQL Server JDBC Driver 2.0 CTP

Download the SQL Server JDBC Driver 2.0 CTP, a Type 4 JDBC driver that provides database connectivity through the standard JDBC application program interfaces (APIs) available in Java Platform, Enterprise Edition 5.
The Microsoft SQL Server 2005 JDBC Driver is a Java Database Connectivity (JDBC) 3.0 compliant driver that provides robust data access to Microsoft SQL [...]

Leave a Comment

Connect to Microsoft SQL Server from Java

Here is the way you can connect to your Microsoft SQL Server 2005 from your java application via JDBC.
First you need to download the Microsoft SQL Server 2005 JDBC Driver.
You will get sqljdbc.jar which is all you needed. As a java programmer, you know how to use this, right?
You will get a user [...]

Leave a Comment

Java Learner IDE with C#

My new (8th article on code project Java Learner IDEwith C# is published. With this tool you can compile and run java console based programs for learning purpose.
C# source code also available with the article.

URL: http://www.codeproject.com/useritems/JavaLearnerIDE.asp
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment