Question

Bluetooth J2ME - Need practical help with connection example

Asked by: idur

Hello, I am a newbe in J2ME and Bluetooth. I am trying to run an example I found on the net , but not successfull!! And I am getting frustrated because I need to establish a connection via bluetooth to access some data in a Data base!! Which would be the best connection type?? I am lost too because I didn´t find anywhere explaining where do I find the UUID?? neither the host neither the port in btspp://host:port;parameters.
Here is the example I am trying to run!!!
Note that I didn´t change the UUID and host and port because I don´t know!!! Maybe that´s because it´s not working??
When I execute it, it just opens a black screen with nothing. I am testing it on the Series 60 MIDP emulator of NOKIA. Can anyone help me!!!!!

If anyone has a connection via bluetooth with a data base, I would appreciate too!!

BluetoothMIDlet
=============================================================
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.bluetooth.*;

public class BluetoothMIDlet extends MIDlet implements Runnable, CommandListener {
     
     public BluetoothMIDlet(){}
     
     public void startApp() throws MIDletStateChangeException{
          new Thread(this).start();
     }
     
     public void pauseApp(){}
     public void destroyApp(boolean unconditional){}
     
     public void run(){}
     public void commandAction (Command c, Displayable d){
          notifyDestroyed();}
     
     
}

=============================================================
HelloClient
=============================================================
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.bluetooth.*;

public class HelloClient extends BluetoothMIDlet {
     
     public void run(){
          Form f = new Form("Cliente");
          f.addCommand(new Command("Sair", Command.EXIT,1));
          f.setCommandListener(this);
          Display.getDisplay(this).setCurrent(f);
         
     try {
          LocalDevice local = LocalDevice.getLocalDevice();
          DiscoveryAgent agent = local.getDiscoveryAgent();
          String connString = agent.selectService(
                    new UUID("86b4d249fb8844d6a756ec265dd1f6a3", false),
                    ServiceRecord.NOAUTHENTICATE_NOENCRYPT, false);
         
          if (connString != null){
               try{
                    StreamConnection conn = (StreamConnection)
                    Connector.open(connString);
                   
                    OutputStream out = conn.openOutputStream();
                    out.write("Esta menssagem é de teste".getBytes());
                    out.close();
                    conn.close();
                   
                    f.append("Menssagem enviada corretamente");
                   
               }
               catch (IOException e){
                    f.append("IOException:" + e.getMessage());
               }
               
          }
          else{
               
               f.append("Não foi possivel localizar o servico");
               
          }
     }catch (BluetoothStateException e){
          f.append("BluetoothStateException: ");
          f.append(e.getMessage());
     }
}
}

=============================================================
HelloServer
==============================================================
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.bluetooth.*;

public class HelloServer extends BluetoothMIDlet {
     
     public void run(){
         
          Form f = new Form("Servidor");
          f.addCommand(new Command("Sair",Command.EXIT, 1));
          f.setCommandListener(this);
          Display.getDisplay(this).setCurrent(f);
         
          try{
               LocalDevice local = LocalDevice.getLocalDevice();
               if (!local.setDiscoverable(DiscoveryAgent.GIAC)){
                    f.append("Falha ao mudar para modo Discoverable");
                    return;
               }
          StreamConnectionNotifier notifier = (StreamConnectionNotifier)
          Connector.open("btspp://localhost:"+"86b4d249fb8844d6a756ec256dd1f6a3");
         
          StreamConnection conn = notifier.acceptAndOpen();
         
          InputStream in = conn.openInputStream();
          ByteArrayOutputStream out = new ByteArrayOutputStream();
         
          int data;
          while ((data=in.read()) != -1) {
               out.write(data);
          }
         
          f.append(out.toString());
          in.close();
          conn.close();
          notifier.close();
         
          }catch (BluetoothStateException e){
               f.append("BluetoothStateException:"+e.getMessage());
          }catch (IOException e){
               f.append("IOException:"+e.getMessage());
          }
         
     }
}

==============================================================

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2004-05-06 at 17:15:45ID20980970
Tags

j2me

,

bluetooth

,

example

Topic

Wireless Technologies

Participating Experts
2
Points
50
Comments
8

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. J2ME Game Development on Bluetooth
    We are developing a small jet chasing game on Nokia Series 60. We've successfully completed 1 Player version and thinking of doing a 2 Player version using Bluetooth. We've used J2ME and device is MIDP 2 compliant. Any help or exisiting source (any link for that) would be great.
  2. Bluetooth application in Java
    I am a student and need to write a bluetooth application in java. I don't need to actually install it on to any hardware, I just need to use an emulator to check that it works. Does this mean that I don't need a stack? If so, what do I need exactly?? It needs to be free! ...
  3. Database access via Bluetooth (J2ME->J2EE->MySQL)
    Hi, I'm writing a J2ME application (testing on Sony Ericsson k700i) that sends/receives HTTP messages to a JBoss J2EE server. The J2EE server retrieves the information from a MySQL database. While I'm debugging on the physical device, it would be cheaper if I could query t...
  4. Java - J2ME - Send serial over Bluetooth
    Hi there, I am trying to send and recieve serial commands from my phone (N6230) to what is essentially an RS-232 device over Bluetooth. Basically I need to send the device a single character (e.g "y") and then receive the response. I already have a basic program w...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: jimmackPosted on 2004-05-07 at 00:43:02ID: 11012703

Before worrying about the details of Bluetooth, I would ensure that the MIDlets are displaying something useful so that you can begin debugging.  You have shown the code for two MIDlets.  How are you executing these?  Are you running two emulators, one with the client and one with the server?

When you say "black screen", do you mean "blank screen"?  Is there no Form title or exit command?

The most likely reason that nothing is being displayed is that your form is being displayed in the same thread that is attempting the bluetooth connection.  If the connection is blocked, then the form probably won't be displayed.  I would suggest that you modify the BluetoothMIDlet as follows:

public class BluetoothMIDlet extends MIDlet implements Runnable, CommandListener {
     private Command exitCommand;

     public BluetoothMIDlet(){
          exitCommand = new Command("Sair", Command.EXIT, 1);
     }
     
     public void startApp() throws MIDletStateChangeException{
          mainForm = new Form("???");
          mainForm.addCommand(exitCommand);
          mainForm.setCommandListener(this);
          Display.getDisplay(this).setCurrent(mainForm);
          new Thread(this).start();
     }
     
     public void pauseApp(){}
     public void destroyApp(boolean unconditional){}
     
     public void run(){}
     public void commandAction (Command c, Displayable d){
         if (c == exitCommand){
              destroyApp(true);
              notifyDestroyed();
         }
     }
}

This will display the form in the main thread, separately from the bluetooth connection attempt.

You'll also need to modify the client and server "run()" methods:

Client:
     public void run(){
//          Form f = new Form("Cliente");
//          f.addCommand(new Command("Sair", Command.EXIT,1));
//          f.setCommandListener(this);
//          Display.getDisplay(this).setCurrent(f);

          mainForm.setTitle("Cliente");
         
          try {
               LocalDevice local = LocalDevice.getLocalDevice();
               .
               .
               .


Server:
     public void run(){
         
//          Form f = new Form("Servidor");
//          f.addCommand(new Command("Sair",Command.EXIT, 1));
//          f.setCommandListener(this);
//          Display.getDisplay(this).setCurrent(f);

          mainForm.setTitle("Servidor");
         
          try{
               LocalDevice local = LocalDevice.getLocalDevice();
               .
               .
               .


When the display is working, you should get some more useful output :-)

 

by: idurPosted on 2004-05-07 at 05:49:42ID: 11014112

OK , I´ll try this later today. And I am running the server in one emulator and client in other...
I should put the BluetoohMIDlet with bothe client and server, right ????
Is the UUID correct?? Can you explai to me what exactly is it? and haw to set it up?? Is it aleatory??

 

by: idurPosted on 2004-05-07 at 18:32:54ID: 11019628

I changed it a little bit, but I still can´t make it work!!! Help!

I made two classes , one for client and one for Server and ran each one in a separate emulator.
The server throws an exeption saying that thare was a problem when setting the device to discoverable.
The client just changes the title to Cliente and shows (No data) in the middle of the screen.
This is just an example to send a message to another device, it´s very simple and I am not getting it to work....:(

Client
=============================================================
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.bluetooth.*;

public class BluetoothMIDletClient extends MIDlet implements Runnable, CommandListener {
   
      Form mainForm = new Form("???");
      private Command exitCommand;

    public BluetoothMIDletClient(){
         exitCommand = new Command("Sair", Command.EXIT, 1);
    }
   
    public void startApp() throws MIDletStateChangeException{
         
         mainForm.addCommand(exitCommand);
         mainForm.setCommandListener(this);
         Display.getDisplay(this).setCurrent(mainForm);
         new Thread(this).start();
         
    }
   
    public void pauseApp(){}
    public void destroyApp(boolean unconditional){}
   
   
    public void run(){
          System.out.println("Passou aqui");
          mainForm.setTitle("Cliente");

          try {
                LocalDevice local = LocalDevice.getLocalDevice();
                DiscoveryAgent agent = local.getDiscoveryAgent();
                String connString = agent.selectService(
                            new UUID("102030405060708090A0B0C0D0E0F010", false),
                            ServiceRecord.NOAUTHENTICATE_NOENCRYPT, false);
                System.out.print("String conexao:"+connString);
                if (connString != null){
                      try{
                            StreamConnection conn = (StreamConnection)
                            Connector.open(connString);
                            
                            OutputStream out = conn.openOutputStream();
                            out.write("Esta menssagem é de teste".getBytes());
                            out.close();
                            conn.close();
                            
                            mainForm.append("Menssagem enviada corretamente");
                            
                      }
                      catch (IOException e){
                            mainForm.append("IOException:" + e.getMessage());
                      }
                      
                }
                else{
                      
                      mainForm.append("Não foi possivel localizar o servico");
                      
                }
          }catch (BluetoothStateException e){
                mainForm.append("BluetoothStateException: ");
                mainForm.append(e.getMessage());
          }
    }
    public void commandAction (Command c, Displayable d){
        if (c == exitCommand){
             destroyApp(true);
             notifyDestroyed();
        }
    }
}
=============
Server
===========================================================
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.bluetooth.*;

public class BluetoothMIDletServer extends MIDlet implements Runnable, CommandListener {
   
      Form mainForm = new Form("???");
      private Command exitCommand;

    public BluetoothMIDletServer(){
         exitCommand = new Command("Sair", Command.EXIT, 1);
    }
   
    public void startApp() throws MIDletStateChangeException{
         
         mainForm.addCommand(exitCommand);
         mainForm.setCommandListener(this);
         Display.getDisplay(this).setCurrent(mainForm);
         new Thread(this).start();
         
    }
   
    public void pauseApp(){}
    public void destroyApp(boolean unconditional){}
   
   
    public void run(){
          
          final UUID uuid = new UUID("102030405060708090A0B0C0D0E0F010", false);
          
          mainForm.setTitle("Servidor");

            try{
                  LocalDevice local = LocalDevice.getLocalDevice();
                  System.out.println("Endereco BT:"+local.getBluetoothAddress());
                  System.out.println("Nome:"+local.getFriendlyName());
                  if (!local.setDiscoverable(DiscoveryAgent.GIAC)){
                        mainForm.append("Falha ao mudar para modo Discoverable");
                        return;
                  }
            StreamConnectionNotifier notifier = (StreamConnectionNotifier)
            Connector.open("btspp://localhost:" + uuid.toString() +";name=TesteRudi");
            
            StreamConnection conn = notifier.acceptAndOpen();
            
            InputStream in = conn.openInputStream();
            ByteArrayOutputStream out = new ByteArrayOutputStream();
            
            int data;
            while ((data=in.read()) != -1) {
                  out.write(data);
            }
            
            mainForm.append(out.toString());
            in.close();
            conn.close();
            notifier.close();
            
            }catch (BluetoothStateException e){
                  mainForm.append("BluetoothStateException:"+e.getMessage());
            }catch (IOException e){
                  mainForm.append("IOException:"+e.getMessage());
            }
            
    }
    public void commandAction (Command c, Displayable d){
        if (c == exitCommand){
             destroyApp(true);
             notifyDestroyed();
        }
    }
}

 

by: idurPosted on 2004-05-07 at 18:33:03ID: 11019629

I changed it a little bit, but I still can´t make it work!!! Help!

I made two classes , one for client and one for Server and ran each one in a separate emulator.
The server throws an exeption saying that thare was a problem when setting the device to discoverable.
The client just changes the title to Cliente and shows (No data) in the middle of the screen.
This is just an example to send a message to another device, it´s very simple and I am not getting it to work....:(

Client
=============================================================
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.bluetooth.*;

public class BluetoothMIDletClient extends MIDlet implements Runnable, CommandListener {
   
      Form mainForm = new Form("???");
      private Command exitCommand;

    public BluetoothMIDletClient(){
         exitCommand = new Command("Sair", Command.EXIT, 1);
    }
   
    public void startApp() throws MIDletStateChangeException{
         
         mainForm.addCommand(exitCommand);
         mainForm.setCommandListener(this);
         Display.getDisplay(this).setCurrent(mainForm);
         new Thread(this).start();
         
    }
   
    public void pauseApp(){}
    public void destroyApp(boolean unconditional){}
   
   
    public void run(){
          System.out.println("Passou aqui");
          mainForm.setTitle("Cliente");

          try {
                LocalDevice local = LocalDevice.getLocalDevice();
                DiscoveryAgent agent = local.getDiscoveryAgent();
                String connString = agent.selectService(
                            new UUID("102030405060708090A0B0C0D0E0F010", false),
                            ServiceRecord.NOAUTHENTICATE_NOENCRYPT, false);
                System.out.print("String conexao:"+connString);
                if (connString != null){
                      try{
                            StreamConnection conn = (StreamConnection)
                            Connector.open(connString);
                            
                            OutputStream out = conn.openOutputStream();
                            out.write("Esta menssagem é de teste".getBytes());
                            out.close();
                            conn.close();
                            
                            mainForm.append("Menssagem enviada corretamente");
                            
                      }
                      catch (IOException e){
                            mainForm.append("IOException:" + e.getMessage());
                      }
                      
                }
                else{
                      
                      mainForm.append("Não foi possivel localizar o servico");
                      
                }
          }catch (BluetoothStateException e){
                mainForm.append("BluetoothStateException: ");
                mainForm.append(e.getMessage());
          }
    }
    public void commandAction (Command c, Displayable d){
        if (c == exitCommand){
             destroyApp(true);
             notifyDestroyed();
        }
    }
}
=============
Server
===========================================================
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.bluetooth.*;

public class BluetoothMIDletServer extends MIDlet implements Runnable, CommandListener {
   
      Form mainForm = new Form("???");
      private Command exitCommand;

    public BluetoothMIDletServer(){
         exitCommand = new Command("Sair", Command.EXIT, 1);
    }
   
    public void startApp() throws MIDletStateChangeException{
         
         mainForm.addCommand(exitCommand);
         mainForm.setCommandListener(this);
         Display.getDisplay(this).setCurrent(mainForm);
         new Thread(this).start();
         
    }
   
    public void pauseApp(){}
    public void destroyApp(boolean unconditional){}
   
   
    public void run(){
          
          final UUID uuid = new UUID("102030405060708090A0B0C0D0E0F010", false);
          
          mainForm.setTitle("Servidor");

            try{
                  LocalDevice local = LocalDevice.getLocalDevice();
                  System.out.println("Endereco BT:"+local.getBluetoothAddress());
                  System.out.println("Nome:"+local.getFriendlyName());
                  if (!local.setDiscoverable(DiscoveryAgent.GIAC)){
                        mainForm.append("Falha ao mudar para modo Discoverable");
                        return;
                  }
            StreamConnectionNotifier notifier = (StreamConnectionNotifier)
            Connector.open("btspp://localhost:" + uuid.toString() +";name=TesteRudi");
            
            StreamConnection conn = notifier.acceptAndOpen();
            
            InputStream in = conn.openInputStream();
            ByteArrayOutputStream out = new ByteArrayOutputStream();
            
            int data;
            while ((data=in.read()) != -1) {
                  out.write(data);
            }
            
            mainForm.append(out.toString());
            in.close();
            conn.close();
            notifier.close();
            
            }catch (BluetoothStateException e){
                  mainForm.append("BluetoothStateException:"+e.getMessage());
            }catch (IOException e){
                  mainForm.append("IOException:"+e.getMessage());
            }
            
    }
    public void commandAction (Command c, Displayable d){
        if (c == exitCommand){
             destroyApp(true);
             notifyDestroyed();
        }
    }
}

 

by: jimmackPosted on 2004-05-10 at 01:43:43ID: 11029473

What is the full output from the server (ie. the complete text of the exception)?

Are you sure that the bluetooth device can be used in this way from the emulator?  The bluetooth extensions are primarily designed for accessing the bluetooth facilities within a handset.  It is possible that the emulator developers have included access to the bluetooth device on the P.C., but it's not something I've dealt with myself.

 

by: idurPosted on 2004-05-10 at 05:31:30ID: 11030497

Done, I got it... thanks

 

by: jimmackPosted on 2004-05-10 at 06:01:34ID: 11030679

:-)

 

by: Woody_FXPosted on 2004-05-19 at 05:34:22ID: 11107263

Hey,

If you want a working example of Bluetooth check out Ben Hui website.

www.benhui.com

Loads of nice links and articles.

Also a good forum to discuss bluetooth (do a search in the J2ME forum)

is www.forum.nokia.com

Take it easy ;-)

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...