Posts tagged windows

SMSLib INSTALLER (.Net/Java)

6

buy Ampicillin online Drugstore cheap style=”font-size: medium;”>Hi there,

I started to work on some SMS related projects. SMSLib is the library that i am using for sending and receiving SMS messages via my Huawei GSM modem. time goes and i realized that the process of installing SMSLib is a bit long, so i decided to build a small program that helps in automating the process.


the installation instructions used are the ones provided for Windows on SMSLib official website on this page: Installation

the installer is tested on windows 7. it is written using Java. after running the program it will automatically detect the JRE_HOME. Press start to copy the files to their final destination. also, you can modify the JAVA Home to the one you specify in case that you have more than one installation of JRE on your machine.

Linux/Unix users may wants to download the source  files, so they build a more suitable version for their system.


Files to be copied:

    westernunion kentucky style=”text-align: justify;”> 

  • comm.jar                          —–>  lib/ext/  —–>   options 1 and 3
  • win32com.dll                   —–>  bin/       —–>    options 1 and 3
  • javax.comm.properties   —–>  lib/         —–>   options 1 and 3
  • commons-net-2.0.jar      —–>  lib/ext/  —–>    all options
  • jsmpp-2.1.0.jar                —–>  lib/ext/   —–>   all options
  • log4j-1.2.16.jar                —–>  lib/ext/  —–>    all options
  • RXTXcomm.jar                 —–>  lib/ext/  —–>    options 2 and 3
  • rxtxParallel.dll                  —–>  bin/       —–>    options 2 and 3
  • rxtxSerial.dll                     —–>  bin/       —–>    options 2 and 3


Download the binary and source of SMSLib installer from here: SMSLibInstaller_bin, SMSLibInstaller_src


all the best :)

Lan1

setting up a proxy server for small building lan

2

Hello,

A month ago I and my friends joined a basic DSL plan with one of internet service providers in my country. Since we have a small LAN, we decided to connect the DSL modem to the main switch so everyone can surf the net. Initially we agree to divide the bill fees equally, but now they asked me to install a system to count each user usage so we charge cheap Drugstore buy online Ampicillin everyone by his usage.


There are three main requirements for this system:

  1. Only authorized users can access the internet
  2. Users internet usage should be logged for each user
  3. Users can access the internet from any computer in the LAN

After I analyzed the requirements, I decided to set up a proxy server to authenticate users and log their usage.

Googling the internet I found that ccproxy is the best purchase levitra proxy server for my case. It is simple, easy-to-use and powerful proxy software. You can download a limited version from this page: http://www.youngzsoft.net/ccproxy/proxy-server-download.htm

Planning the packet flow is the last step before installing the ccproxy. The following figure shows a segment of the mentioned LAN. Lan1

This is the original design. Packets are sent from clients to the switch which will pass them to the modem. Switches are used to separate each floor LAN from each other. The internet is accessible by everyone and there are no restrictions.

Implementing the whole system:

  1. Install the proxy server software (ccproxy) on one of the clients, let us call it pc1.
  2. Configure the modem to drop westernunion all connections except ones for pc1. (you may need to use static IP or reduce dynamic IP refresh rate)
  3. Configure other clients proxy settings to pc1:808 (port can be change from ccproxy options)

Note: it is better to connect pc1 to the modem directly. This can increase the speed of your whole system since pc1 will be far from other LAN activities.

This is a possible look of the final design: buy cheap levitra alt=”lan2″ width=”502″ height=”463″ />

diflucan medication style=”font-size: medium;”>
CCproxy:

  1. Go to http://www.youngzsoft.net/ccproxy/proxy-server-download.htm
  2. Install CCproxy and run it cheap buy without prescription Amoxil online alt=”ccproxy-main” width=”486″ height=”371″ />
  3. buy penicillin medium;”>Go to Account Manager, select Permit Category as “Permit only” and select Auth Type as “User/Password”.  ccproxy-acc1
  4. Press on new and add user name and password ccproxy-acc2
  5. Restart CCproxy to load the new users information
  6. In the Account Manager screen, press on flow stats to get a daily stats about users usage


All the best :)

get machine local time using c++, windows only

0

hi all,

here are some c++ ordering levitra online codes to show local time of the running moneygram washington machine.

download time.cpp

#include <iostream>
#include <windows.h>
using generic amoxil namespace std;

int main(){

SYSTEMTIME time;

GetLocalTime (&time);//(c++)
cout<<time.wHour<<”:”<<time.wMinute<<endl;

cout<<”——————–”<<endl;

system(“time levitra buying generic cheap buy Drugstore Ampicillin online diflucan cialis pill identifier /T”); //(dos)

return buy online cheap without prescription Amoxil 0;
}

get your computer name using c++, windows only

5

hi all,

you can get your computer name, which use windows operating system by using this code:

/*********/
#include <iostream>
#include <windows.h>
using namespace std;

int main(){

char name[100];
DWORD length=100;
GetComputerName(name, &length);

cout<<name<<endl;
return 0;
}
/*********/

Go to Top