Question

How can I use HttpURLConnection to post data to a web form?

Asked by: lhjunius

I'm trying to develop a little app to automatically upload GPS data to the website located here: http://www.ngs.noaa.gov/OPUS/. I've taken a look at the source code, and have a rough idea of what I need to do, but I'm trying to learn java development on the job, and have not ever worked with java.net.*.

There are four inputs that I need to give data to:
<input size="60" name="email_address" type="text">
(same email every time)

<input size="60" name="uploadfile" type="file"> ; a file that will change daily, I can develop the code to find the new path for the file, but I'm not sure if I pass the filepath string, or need to give this input some other object.

<select name="ant_type" size="1" style="background-color: rgb(255, 255, 255); color: rgb(0, 0, 0); font-family: courier;">

Need to select this option:
 <option value="LEIAX1202GG     NONE">      LEIAX1202GG&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NONE&nbsp;GNSS,&nbsp;H/W&nbsp;Rev.&nbsp;1.00&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
(not sure which part to pass to the server, I've been assuming "LEIAX1202GG     NONE")

<input size="10" name="height" value="0.0" type="text">
(default value is fine)

The form is submitted by clicking "Opus Static", which runs among other things a function called LimitAttach ( note: <form enctype="multipart/form-data" name="updatesForm" method="post" onsubmit="return false;">
    <!-- do not submit form when submit button is pressed. Let LimitAttach do it instead --> ). Code for LimitAttach is included below, note that the form action is set to a script: Opusup.prl

Below LimitAttach I've attached the code I've got so far for the submit action:

function LimitAttach(form, uploadfile_name,opusOption) {
      // 
      // This function does . . . (please describe here.)
      // 
     allowSubmit=true;
     var illegalChars = /[\!\@\#\$\%\^\&\*\(\)\+\=\t\n\r\f\v\{\}\[\]\|\;\"\'\<\>\?\~\`]/;
      // allow only letters, numbers, and underscores
 
     if (illegalChars.test(uploadfile_name)) {
       var errStr = "The filename contains illegal characters. \n";
       allowSubmit=false;
       alert(errStr);
       return false;
       }
 
     if (allowSubmit) {
 
       if (form == null) {
         return true;
         } else {
         var messageURL="wait.html";
 
         if(opusOption==2) { // OPUS-RS button clicked 
           messageURL="wait-RS.html";
           }
         // opusOption is set depending on which upload button is pressed - OPUS, OPUS-RS etc.
         window.document.forms['updatesForm'].elements['opusOption'].value = opusOption;
 
         if(opusOption==2) {
           window.document.forms['updatesForm'].action="/OPUS-cgi/OPUS/Opus-rsup.prl";
           } else {
           window.document.forms['updatesForm'].action="/OPUS-cgi/OPUS/Opusup.prl";
           }
 
         newWin = window.open(messageURL,"sub","status,height=200,width=600,screenX=200,screenY=400,left=200,top=400");
         form.submit();
         window.document.forms['updatesForm'].elements['set_profile'].value = '0';
         window.document.forms['updatesForm'].elements['delete_profile'].value = '0';
         window.document.forms['updatesForm'].elements['project_name'].value = '';
         }
       }
     }
 
 
 
 
 public static void doSubmit() {
      HttpURLConnection connection = null;
      OutputStreamWriter wr = null;
      StringBuilder sb = null;
      String line = null;
 
      URL serverAddress = null;
 
      try {
          serverAddress = new URL("http://www.ngs.noaa.gov/OPUS/");
          //set up out communications stuff
          connection = null;
 
          //Set up the initial connection
          connection = (HttpURLConnection)serverAddress.openConnection();
          connection.setRequestMethod("POST");
          connection.setDoOutput(true);
          connection.setReadTimeout(10000);
          connection.connect();
 
          wr = new OutputStreamWriter(connection.getOutputStream());
          wr.write("");
          wr.flush();
 
         
 
      } catch (MalformedURLException e) {
          e.printStackTrace();
      } catch (ProtocolException e) {
          e.printStackTrace();
      } catch (IOException e) {
          e.printStackTrace();
      }
      finally
      {
          //close the connection, set all objects to null
          connection.disconnect();
          sb = null;
          wr = null;
          connection = null;
      }
  }

                                  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:

Select allOpen in new window

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
2008-12-23 at 06:45:55ID24005703
Tags

Java

,

httpurlconnection

,

javascript

,

perl

,

java.net.*

Topics

NetBeans IDE

,

Java Programming Language

,

New to Java Programming

Participating Experts
2
Points
500
Comments
5

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. onsubmit
    This que is not related to front page. I am here because HTML ask a que is not running currently. I cant get a function call on onsubmit. In the form tag I have action="blabla.asp" onsubmit=heck_data(this) My problem is I cant get to call the function What am I d...
  2. OnSubmit , is not.
    Howdy All, Can someone please take a look at this form, and tell me why my alerts are not working onSubmit??? http://www.geoc...om/nfroio/certform_validate.html The section that is not working is the: Coverage & Limit Information Coverages Limits Required o...
  3. Option Font-Family/Font-Face
    Hi- How do you change the font-family/font-face of a simgle option? I tried putting this in the option tag: style="font-family:Wingdings" but that doesn't work. Neither does it work with font-face. I need this for one option, no the whole select menu. It is a m...
  4. Close window after onsubmit of form
    Hi there, I have a webpage let's say "StartPage.htm" For reservation a user can press a button on this page and a new window pops up. This new window "Reservation.htm" has a form. The entered data in this form can be send via Email with a buttonclick (su...
  5. Photoshop fonts and equivalent font-families in CSS
    hey again...i was wondering if there is a reference on the web that will list a photoshop font and give its equivalent CSS font-family. I am tired of playing with font-families to find a simple Photoshop font. My site uses Arial Regular Sharp in Photoshop, but I want use CS...

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: lhjuniusPosted on 2008-12-23 at 07:11:22ID: 23234021

Modified the code somewhat, using samples I find online:

 public static void doSubmit() {
        HttpURLConnection connection = null;
        String parametersAsString;
        byte[] parametersAsBytes;
        OutputStream dataOut;
 
        URL serverAddress = null;
 
        try {
            serverAddress = new URL("http://www.ngs.noaa.gov/OPUS/");
            //set up out communications stuff
            connection = null;
 
            //Set up the initial connection
            connection = (HttpURLConnection) serverAddress.openConnection();
 
            parametersAsString = "email_address=jnewell@lhjunius.com" +
                    "&uploadfile=P:\\GPSFTP\\Auto\\LHJI\\2008\\12\\23\\lhji358g.08o" + //not sure about this line
                    "&ant_type=LEIAX1202GG     NONE" +
                    "&height=0.0"; // do I call LimitAttach(form, uploadfile_name,opusOption)  from here?
            parametersAsBytes = parametersAsString.getBytes();
 
            connection.setRequestMethod("POST");
            connection.setRequestProperty("Content-Length", "" +
                    Integer.toString(parametersAsBytes.length));
            connection.setDoOutput(true);
            connection.setReadTimeout(10000);
            connection.connect();
 
            dataOut = connection.getOutputStream();
            dataOut.write(parametersAsBytes);
            dataOut.flush();
            dataOut.close();
 
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            //close the connection, set all objects to null
            connection.disconnect();
            dataOut = null;
            connection = null;
        }
    }

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:

Select allOpen in new window

 

by: lhjuniusPosted on 2008-12-23 at 10:05:11ID: 23235327

I used Charles web debugging proxy to see what exactly I was sending and ended up with the following data. Just need some help automating this in java code.

Content-Type: multipart/form-data; boundary=---------------------------54472172614771

54472172614771 is a different value for each submit, I imagine since the file is different each time.

Just need a little guidance here, not hand holding. I'm continuing to look up solutions on my own.

POST /OPUS-cgi/OPUS/Opusup.prl HTTP/1.1
Host: www.ngs.noaa.gov
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 (.NET CLR 3.5.30729)
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Referer: http://www.ngs.noaa.gov/OPUS/
Content-Type: multipart/form-data; boundary=---------------------------54472172614771
Content-Length: 629216
 
-----------------------------54472172614771
Content-Disposition: form-data; name="selectList"
 
 
-----------------------------54472172614771
Content-Disposition: form-data; name="project_name"
 
 
-----------------------------54472172614771
Content-Disposition: form-data; name="state_plane"
 
0
-----------------------------54472172614771
Content-Disposition: form-data; name="extend_code"
 
0
-----------------------------54472172614771
Content-Disposition: form-data; name="xml_code"
 
0
-----------------------------54472172614771
Content-Disposition: form-data; name="set_profile"
 
0
-----------------------------54472172614771
Content-Disposition: form-data; name="delete_profile"
 
0
-----------------------------54472172614771
Content-Disposition: form-data; name="opusOption"
 
1
-----------------------------54472172614771
Content-Disposition: form-data; name="email_address"
 
r********@lhjunius.com   (censored)
-----------------------------54472172614771
Content-Disposition: form-data; name="uploadfile"; filename="lhji362w.07o"
Content-Type: application/octet-stream
 
     2.11           OBSERVATION DATA    M                   RINEX VERSION / TYPE
SPIDER V2,3,3,2672                      2007 12 29 00:03    PGM / RUN BY / DATE 
......
Whole lot of raw data here. 
......
  22934530.549   122727309.20806  22934536.512    95454606.11906
  19515596.417   104395303.23109  19515599.560    81196362.37508
 
-----------------------------54472172614771
Content-Disposition: form-data; name="ant_type"
 
LEIAX1202A      NONE
-----------------------------54472172614771
Content-Disposition: form-data; name="height"
 
0.0
-----------------------------54472172614771--
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:

Select allOpen in new window

 

by: objectsPosted on 2008-12-23 at 14:22:06ID: 23237300

use httpclient, it makes it a lot easier

 

by: gpachnandaPosted on 2008-12-30 at 06:55:28ID: 23262898

I agree HTTPClient is the way forward, the only issue to bear in mind is proxied environment, In such cases you will have to set the proxy in the client. See examples http://www.java2s.com/Code/Java/Apache-Common/Http-Client.htm

 

by: lhjuniusPosted on 2008-12-31 at 06:33:39ID: 23270042

Ok, I was finally able to get it working, I've attached the code below, so hopefully it will be helpful to someone else working on a similar problem.

package opustinyapp;
 
/**
 *
 * @author jnewell
 */
public class Main {
 
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        OpusConnector opus = new OpusConnector(args);
        if (opus.argsWorked()) {
            opus.newSubmit();
        }
    }
}
 
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package opustinyapp;
 
import java.io.*;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.text.DecimalFormat;
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;
import org.apache.commons.httpclient.methods.multipart.*;
 
 
public class OpusConnector {
 
    private String eMailAddress;
    private boolean bArgs;
    static final int BUFFER = 2048;
 
    OpusConnector(String args[]) {
        bArgs = false;
        if (!(args[0].isEmpty())) {
            this.eMailAddress = args[0];
            bArgs = true;
            System.out.println("Using: " + this.eMailAddress);
        } else{
            System.out.println("Email argument is missing!");
        }
    }
 
    public boolean argsWorked() {
        return bArgs;
    }
 
    void newSubmit() {
 
 
        try {
            Calendar rightNow = Calendar.getInstance();
            DecimalFormat df = new DecimalFormat("00");
 
            /**
             * Uniquely generated string to point to the new 6:00AM Rinex file
             */
            String inFile = "P:/GPSFTP/Auto/LHJI/" 
                    + Integer.toString(rightNow.get(Calendar.YEAR)) + "/"
                    + df.format(rightNow.get(Calendar.MONTH) + 1) + "/"
                    + df.format(rightNow.get(Calendar.DAY_OF_MONTH)) + "/lhji"
                    + Integer.toString(rightNow.get(Calendar.DAY_OF_YEAR)) + "a";
 
            ExtractZip(inFile);
 
            String outFile = "C:/Temp/lhji"
                    + Integer.toString(rightNow.get(Calendar.DAY_OF_YEAR))
                    + "a.08o";
 
 
                File f = new File(outFile);
                System.out.println("Uploading " + f.getName() + " to Opus Homepage...");
                PostMethod filePost = new PostMethod("http://www.ngs.noaa.gov/OPUS-cgi/OPUS/Opusup.prl");
                Part[] parts = {
                    new StringPart("email_address", eMailAddress),
                    new StringPart("ant_type", "LEIAX1202GG     NONE"),
                    new StringPart("height", "0.0"),
                    new FilePart("uploadfile", f)
                };
                filePost.setRequestEntity(
                        new MultipartRequestEntity(parts, filePost.getParams()));
                HttpClient client = new HttpClient();
                client.executeMethod(filePost);
  
        } catch (Exception e) {
            e.printStackTrace();
 
        } finally {
 
            try {
                System.out.wait(3000);
            } catch (InterruptedException ex) {
                Logger.getLogger(OpusConnector.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    }
 
    void ExtractZip(String path) {
 
        try {
            // Specify file to decompress
            String inFileName = path + ".rnx.zip";
            // Specify destination where file will be unzipped
            String destinationDirectory = "c:/temp/";
 
            File sourceZipFile = new File(inFileName);
            File unzipDestinationDirectory = new File(destinationDirectory);
 
            // Open Zip file for reading
            ZipFile zipFile = new ZipFile(sourceZipFile, ZipFile.OPEN_READ);
 
            // Create an enumeration of the entries in the zip file
            Enumeration zipFileEntries = zipFile.entries();
 
            // Process each entry
            while (zipFileEntries.hasMoreElements()) {
                // grab a zip file entry
                ZipEntry entry = (ZipEntry) zipFileEntries.nextElement();
 
                String currentEntry = entry.getName();
                System.out.println("Extracting: " + entry);
 
                File destFile =
                        new File(unzipDestinationDirectory, currentEntry);
 
                // grab file's parent directory structure
                File destinationParent = destFile.getParentFile();
 
                // create the parent directory structure if needed
                destinationParent.mkdirs();
 
                // extract file if not a directory
                if (!entry.isDirectory()) {
                    BufferedInputStream is =
                            new BufferedInputStream(zipFile.getInputStream(entry));
                    int currentByte;
                    // establish buffer for writing file
                    byte data[] = new byte[BUFFER];
 
                    // write the current file to disk
                    FileOutputStream fos = new FileOutputStream(destFile);
                    BufferedOutputStream dest =
                            new BufferedOutputStream(fos, BUFFER);
 
                    // read and write until last byte is encountered
                    while ((currentByte = is.read(data, 0, BUFFER)) != -1) {
                        dest.write(data, 0, currentByte);
                    }
                    dest.flush();
                    dest.close();
                    is.close();
                }
            }
            zipFile.close();
        } catch (IOException ioe) {
            ioe.printStackTrace();
        }
    }
}
                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:

Select allOpen in new window

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...