While Starting the server use the following.
E:\Research\Softwares\jboss-5.1.0.GA\bin>run.bat -b 0.0.0.0
E:\Research\Softwares\jboss-5.1.0.GA\bin>run.bat -b 0.0.0.0
Here we have different Data Cards Available in Indian Market. Now almost every telephone Companies provides the Data cards. Such as BSNL, Reliance, MTS , TATA Photon. Every one provides 3G Service too. But the cost of very less speed internet data card cost 1500-1700 initial cost and 40-500 per month for 500MB to 2 GB Data, isnt costing very high on this Internet world.On discussion with other friends abroad, i came to know the 3G Modem, which is available in Indian Market too, But India have it , but integrated with any mobile operators SIM Card/ Data Card.Now lets come to the point, I did some adjustment with one Internet 3G Modem, I am able to browse on a wonderful speed provides better clarity on Voice chatting.How to make a Data Card costing IRS 50-60 and having Browsing limit to 2-3GB per month [Monthly Expense for Portable Device is IRS:50-65], is it Interesting to you.How I achieved it is I got a 3G Modem from one of My friend, I bought one TATA DOCOMO SIM Card for RS 70 (A good talk time with it.), Re Charged with IRS:65 for 2.5 GB GPRS.If you want to buy 3G Modem, it cost 900-1200 in Indian Market, you can get it in | Screen Netwrok 1 |
| Screen Network 2. |
package com;
import java.io.IOException;
public class LockMachine {
public static void main(String[] args) {
String WINDOWS_LOCK_COMMAND="rundll32.exe user32.dll, LockWorkStation";
Runtime rt = Runtime.getRuntime();
try {
rt.exec(WINDOWS_LOCK_COMMAND);
} catch (IOException e1) {
e1.printStackTrace();
}
}
}