Connecting apache 2.x to tomcat 5.0 on windows 2003

Dear readers,
1. How to run Jsp's or Servlets using Apache Web server
2. I installed apache web server(2.0) and Tomcat(5.0) servers on windows 2003. and Downloaded mod_jk.so. Tried to connect these two using this connector but it gives error when i start the tomcat service freshly. so hoping to get the result at the earliest

Dear readers,
1. How to run Jsp's or Servlets using Apache Web
serverIf it's for non-production use, just use Tomcat
1. I installed apache web server(2.0) and Tomcat(5.0)
servers on windows 2003. and Downloaded mod_jk.so.
Tried to connect these two using this connector but
it gives error when i start the tomcat service
freshly. so hoping to get the result at the earliestmod_jk.SO is meant for use with UNIX.

Similar Messages

  • Connecting a Storedge 3320 SCSI enclosure to a 4200M2 (Windows 2003)

    Does anyone know the steps to connect a StorEdge 3320 SCSI enclosure to a 4200M2 (Windows 2003)?
    I have connected the array in a single-bus configuration - Chanel 3 to the Host.
    Using the StorEdge Configuration Service Console - I am able to see the disks and create the logical drives.
    When I reboot the server the new hardware wizard runs (found - SUN StorEdge 3320 SCSI Enclosure Device) - I cannot find a driver for this.
    Under Disk Management the Disks do not show up at all.
    Any Ideas?

    Hello Tom,
    I am trying to find a driver for <the StorEdge C2> to use on Windows 2003.
    can anyone direct me to the correct driver for this device?
    Get a backup application with autoloader, tapechanger or library support..
    I have been using a general HP LTO3 driver but it appears that the device uses the same SCSI id for the media changer and for the tape drive.
    Yes, same SCSI-ID, but different LUN,
    Under Unix/Linux/Solaris you can use mtx to control the robot/changer or any commercial backup program with the above options/support.
    Michael

  • ODBC Connection Pooling not working with 10g On Windows 2003

    I have a bog standard Windows 2003 machine and installed Oracle 10g on it. It seems that the ODBC Connection pooling is not working.
    I am using ASP and every time I try and render a simple page it is taking 4-5 seconds which is the time necessaru to create a database connection. ( Machine is 2.8 Ghz Xeon with 2 gigs of Ram)
    The following VB Code can be used to test that the pooling is not working. It creates 2 connections to the database. On oracle 10g on windows 2003, it takes 5 seconds to create the first connection, and another 5 seconds to create the second connection.
    When you run the same program on windows 2000 and oracle 9, the first connection take 3 seconds, and the second 0.05 seconds. ( The shorter time being due to the connection pooling)
    time1=timer()
    set conn=createobject("adodb.connection")
    Conn.Open "dsn=oracleDSN;uid=yourusername;pwd=yourpassword"
    time2=timer()
    msgbox time2-time1
    conn.close
    set conn=nothing
    time1=timer()
    set conn=createobject("adodb.connection")
    Conn.Open "dsn=oracleDSN;uid=yourusername;pwd=yourpassword"
    time2=timer()
    msgbox time2-time1
    conn.close

    ODBC Connection Pooling is controlled by the ODBC Driver Manager and defaults to off for every driver on every platform. Have you enabled connection pooling for your driver in the ODBC Data Source Administrator?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Getting apache to talk to Tomcat

    I am trying to get apache to talk to tomcat and when I am compiling the mod_jk.so (Jakarta connectors kit) i am getting a few errors when i run make. I was hoping you can point me in the right direction to get the mod_jk.so binaries so that i can get apache to serve my JSP's. I already tried to uncomment the line in the httpd.conf to include tomcat and renamed the server.xml file. So at this point I am a little stuck.
    Here are the make errors:
    # make
    Making all in common
    make[1]: Entering directory `/usr/apache/jakarta-tomcat-connectors-jk-1.2.6-src/jk/native/common'
    make[1]: Nothing to be done for `all'.
    make[1]: Leaving directory `/usr/apache/jakarta-tomcat-connectors-jk-1.2.6-src/jk/native/common'
    Making all in apache-2.0
    make[1]: Entering directory `/usr/apache/jakarta-tomcat-connectors-jk-1.2.6-src/jk/native/apache-2.0'
    /bin/bash /var/apache2/build/libtool silent mode=compile /opt/SUNWspro/bin/cc -I/usr/apache2/include -g -O2 -DUSE_APACHE_MD5 -I ../common -I /include -I /include/unix -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -xO3 -xarch=v8 -xspace -W0,-Lt -W2,-Rcond_elim -Xa -xildoff -DSSL_EXPERIMENTAL -DSSL_ENGINE -DHAVE_APR -I/usr/share/src/apache2/srclib/apr/include -g -O2 -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -c mod_jk.c
    /var/apache2/build/libtool: line 862: /opt/SUNWspro/bin/cc: No such file or directory
    make[1]: *** [mod_jk.lo] Error 1
    make[1]: Leaving directory `/usr/apache/jakarta-tomcat-connectors-jk-1.2.6-src/jk/native/apache-2.0'
    make: *** [all-recursive] Error 1
    If i am going about this in the wrong way and this is already configured, can you tell me what you did to get it to work.
    Thanks,
    Brian

    Here is the solution:
    Use this fix to correct the build problems:
    1.http://forum.sun.com/thread.jspa?threadID=21555&messageID=67120
    2. make sure you have $JAVA_HOME in your .profile (or other login profile file)
    3. re-compile apache,
    4. install tomcat fresh with the axps switch
    5. compile and install the tomcat connectors
    6. modify your httpd.conf file, add the LoadModule lines right before section 2: (here they are)
    LoadModule jk_module libexec/mod_jk.so
    AddModule mod_jk.c
    7. right before section 3 of the httpd.conf add the JMount switches (this will serv JSP's from the website root dir)
    JkWorkersFile "/usr/local/apache/conf/workers.properties"
    JkLogFile "logs/mod_jk.log"
    JkLogLevel error
    JkMount /*.jsp default
    JkMount /examples/* default
    8. modify the server.xml file at the bottom (between the </Host> and </Engine> tag)below is the example :
    </Host>
    <Host name="www.yourdomain.com" debug="0"
    appBase="/usr/local/apache/htdocs" >
    <Context path="" docBase="" debug="0"/>
    </Host>
    </Engine>
    </Service>
    </Server>
    9. after you test it add in any custom directory configs you want. make sure that you edit the server.xml and httpd.conf to chage the documentroot of each.
    10. done

  • Connect Apache and OC4J

    Hello, I'm trying to connect Apache with OC4J to handle servlets and JSPs, but it doesn't work.
    I've already installed both, but I'm not sure which are the files I've to configure. I've configure the following:
    In httpd.conf I've added:
    LoadModule oc4j_module modules/mod_oc4j.so
    include "C:/ ... ..... . /conf/mod_oc4j.conf"
    In the same directory: Apache2\conf, I've added to mod_oc4j.conf at the first line:
    LoadModule oc4j_module modules/mod_oc4j.so
    and finally I've added in modules directory the mod.oc4j.so
    I'm grateful for any help
    Thanks a lot

    Hello, I have followed the documentation, exactly the point C.7.3 Setting Up a Static Configuration with mod_oc4j, because I am trying to connect generic Apache with OC4J in localhost. But, I have only be able to charge mod_oc4j.so into mod_oc4j.conf, because mod_onsint.so, ApacheModuleOnsint.dll and ApacheModuleOc4j.dll cannot be loaded, log files said me:
    - ORACLE_HOME must be set in the environment to use mod_onsint, although I have established ORACLE_HOME in my path. (this is the fail for mod_onsint)
    - ApacheModuleOnsint.dll and ApacheModuleOc4j.dll cannot be found, although I have included it in my modules directory.
    So, with the following lines added to my mod_oc4j.conf... :
    LoadModule oc4j_module modules/mod_oc4j.so
    Oc4jMount /sauce/jsp/*.jsp home
    I have obtained that the .html pages can be viewed by the firefox, but when I try to access to jsp pages I obtain the following result in error.log of the Apache:
    mod_oc4j: There is no oc4j process (for destination: home) available to service request.
    I think it is because Apache doesn't know where to redirect jsp pages. How can I show Apache Server to redirect jsp pages to my OC4J?
    Sorry, but I am inexperienced in this issues
    Any help?
    Thanks a lot

  • Install Apach web server and Tomcat

    Is it possible to install Apach web server and Tomcat into Oracle Application Server?
    If possible, which way is the best? People said that I would better install Apach web server and Tomcat in Redhat.
    If you know the answer, would you mind give me the answer or document link?
    Thanks

    Tomcat is just a servlet engine. Oracle Application Server already includes a servlet engine. Apache is a default component too.

  • The tab is bad with apache web server and tomcat

    the tab not run with apache web server + tomcat.
    It is very bad..

    Fijate que solo he estado experimentando con JSC, no he tenido oportunidad de poner nada en producci�n usando la combinaci�n Apache Web Server y Tomcat JSP container y no cuento en �ste momento con �sta configuraci�n para probar.
    Nosotros (en donde trabajo) usamos IBM Web Server (basado en Apache Web Server 2), IBM Websphere 6 y las aplicaciones JSF en producci�n est�n hechas con Rational Web Developer.
    Ahora he estado muy ocupado con un proyecto urgente, si tengo alg�n tiempo libre la semana entrante tratar� de probar tu combinaci�n (no te prometo nada) pero para ello necesito que me digas las versiones que est�s usando de Apache Web Server y de Tomcat, como est�s enlazando entre ambos con un m�dulo o con ProxyPass y mejor si me mandas el httpd.conf.
    Saludos.

  • Apache web server/jakarta tomcat

    Hey guys!
    here's the fact, i installed jakarta-tomcat and apache web server, but i don't know how to integrate them, i mean, I just want to have one http server with the functionality to use servlets. Do I need only jakarta tomcat to have this?, please help me.
    and forgive my very poor english! :)

    Hallo.
    Create or edit the file %APACHE_HOME%/conf/worker.properties
    worker.list=ajp13
    worker.ajp13.port=8009
    worker.ajp13.host=localhost
    worker.ajp13.type=ajp13
    Edit the file %APACHE_HOME%/conf/httpd.conf
    LoadModule jk_module modules/mod_jk.dll
    AddModule mod_jk.c
    JkWorkersFile "%APACHE_HOME%/conf/worker.properties"
    JkLogFile "APACHE_HOME%/logs/mod_jk.log"
    JkLogLevel debug
    Alias /myWebApp "%TOMCAT_HOME%/webapps/myWebApp"
    JkMount /myWebApp/*.jsp testWorker
    Check the file mod_jk.dll in the folder %APACHE_HOME%/modules/. Howevere there are different libraries for different versions of Apache Web Aerver and Tomcat.
    Edit the file %TOMCAT_HOME%/conf/server.xml
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
    port="8009" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="20000"
    useURIValidationHack="false"
    protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
    Good luck.

  • Apache not working  with FMS 4.5 on Windows 2008

    FMS 4.5.1 Windows 2008 SP2 (64bit).
    I've searched everywhere for a possible solution to this, so my apologies if this has been asked before and my thanks for any potential help that anyone can offer to help resolve this.
    We are deploying Adobe Flash Media Server 4.5.1 on a new server but Apache does not work (does not serve html files or stream Quicktime H.264 files).
          Assorted Problems & Error messages:
    1.  The webroot/index.html page loads locally, but the HLS/HDS streams result in a 2032 error.
    2. The webroot/index.html page does not load from  external locations:
         http://63.116.232.5/index.html (does not load externally).
         http://63.116.232.6/index.html (our old server, FMS 4.0 and Windows 2003). Everything on this server works, the 2 major differences being that it is running FMS 4.x on Windows 2003.
    Some RTMP streaming works externally and internally (f4v files):
    http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.5/vod/mp4:sample1_1 50kbps.f4v
    FMS does not stream Quicktime H.264 files even though f4v files work.
       New server (does not work): http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.5/vod/mp4:Basketbal l.mov
                                  (f4v works): http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.5/vod/mp4:sample1_1 50kbps.f4v
    Old server (Quicktime/H.264 file works): http://www.librarymedia.net/flash/player.html?source=rtmp://63.116.232.6/vod/mp4:Basketbal l.mov
    Apache does not serve Quicktime/H.264 files: I made sure that Apache had all of the correct mime types specified.
        Error messages and attempted solutions:
    Apache's erro_log file:
           a. httpd.exe: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
    2. FMS master.log file
          a. FMSHttpd -k start returned 1:
    Solutions: http://wiki.apache.org/httpd/CouldNotDetermineServerName
    1a:  Edited httpd.conf file to include ServerName 63.116.232.5
    1b: The presence of this error message also indicates that Apache httpd was unable to obtain a fully-qualified hostname by doing a reverse lookup on your server's IP address.
    In order for the server to accept external connections a reverse DNS lookup needs to be created. I created a reverse DNS lookup and  edited the /etc/hosts file to include the IPaddress, Fully Qualified Domain Name (FQDN), shortname.
    This is the format suggested by the article:
    127.0.0.1       localhost.localdomain   localhost       foo.example.com
    Running the nbtstat -a 63.116.232.5 command on the machine results in the following:
    WIN-8AIHI2J0524<00>  UNIQUE      Registered
    THS-LIBRARY-VOD<00>  GROUP       Registered
    THS-LIBRARY-VOD<1C>  GROUP       Registered
    WIN-8AIHI2J0524<20>  UNIQUE      Registered
    THS-LIBRARY-VOD<1B>  UNIQUE      Registered
    So the FQDN = WIN-8AIHI2J0524.Ths-library-vod.local
    I edited the /etc/hosts to the following (with versions using the local host ip 127.0.0.1 and the external ip address, IPv4 is being used):
    63.116.232.5 WIN-8AIHI2J0524.Ths-library-vod.local
    # The following lines are desirable for IPv6 capable hosts
    ::1 localhost ip6-localhost ip6-loopback
    fe00::0 ip6-localnet
    ff00::0 ip6-mcastprefix
    ff02::1 ip6-allnodes
    ff02::2 ip6-allrouters
    ff02::3 ip6-allhosts
    I've also read Adobe's port configuration articles and  changed the ports that Apache and FMS use as specified in the conf/fms.ini file, but nothing has worked so far. I restored everything to the original settings until I can find out exactly how to fix this.
    Thank you.

    Ms. Apurva ,
    I changed the files back as you suggested (the failure was occuring with the default settings) and our admin assured me yesterday that the ports that I inquired about were open. I'll ask him again.
    The telenet command for both ports 80 and 1935 result in Connect failed for me. I'll check Windows Firewall (turned off)  and McAfee to see if there is anything there blocking ports.
    Confirm that external connections are blocked: 63.116.232.5/index.html (does not open outside of localhost). No problem accessing with our old server (63.116.232.6/index.html).
    I ran this command in nmap and here are the results (11 ports closed): nmap 63.116.232.5 -Pn80
    Starting Nmap 6.01 ( http://nmap.org ) at 2012-07-06 08:29 Eastern Standard Time
    Nmap scan report for 63.116.232.5
    Host is up (0.00092s latency). nmap -p 80 says that the host is down (for both ports).
    Not shown: 988 filtered ports
    PORT     STATE  SERVICE
    1720/tcp open   H.323/Q.931
    6000/tcp closed X11
    6001/tcp closed X11:1
    6002/tcp closed X11:2
    6003/tcp closed X11:3
    6004/tcp closed X11:4
    6005/tcp closed X11:5
    6006/tcp closed X11:6
    6007/tcp closed X11:7
    6009/tcp closed X11:9
    6025/tcp closed x11
    6059/tcp closed X11:59
    Nmap done: 1 IP address (1 host up) scanned in 5.72 seconds
    Host status: up
    open ports: 1
    filtered ports:988
    Closed ports:  11
    ipv4:63.116.232.5
    ipv6: not available
    MAC: not available.
    Master log file:
    2012-07-06
    09:22:41
    6712
    (i)2581173
    FMS config <NetworkingIPv6 enable=false>
    2012-07-06
    09:22:41
    6712
    (i)2581173
    FMS running in IPv4 protocol stack mode!
    2012-07-06
    09:22:41
    6712
    (i)2581173
    Host: WIN-8AIHI2J0524 IPv4: 10.250.10.1
    2012-07-06
    09:22:41
    6712
    (i)2571011
    Server starting...
    2012-07-06
    09:22:46
    6712
    (i)2581413
    H:\Program Files\Adobe\Flash Media Server 4.5\Apache2.2\bin\httpd -f ./conf/httpd.conf -d "H:\Program Files\Adobe\Flash Media Server 4.5\Apache2.2" -n FMSHttpd -k start returned 0:
    2012-07-06
    09:22:46
    6712
    (i)2581224
    Edge (1508) started, arguments : -edgeports ":1935" -coreports "localhost:19350" -conf "H:\Program Files\Adobe\Flash Media Server 4.5\conf\server.xml" -adaptor "_defaultRoot_" -name "_defaultRoot__edge1" -edgename "edge1".
    2012-07-06
    09:22:46
    6712
    (i)2571111
    Server started (H:\Program Files\Adobe\Flash Media Server 4.5\conf\server.xml).
    edge log:
    2012-07-06
    09:22:46
    1508
    (i)2581173
    FMS detected IPv6 protocol stack!
    2012-07-06
    09:22:46
    1508
    (i)2581173
    FMS config <NetworkingIPv6 enable=false>
    2012-07-06
    09:22:46
    1508
    (i)2581173
    FMS running in IPv4 protocol stack mode!
    2012-07-06
    09:22:46
    1508
    (i)2581173
    Host: WIN-8AIHI2J0524 IPv4: 10.250.10.1
    2012-07-06
    09:22:47
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : localhost:19350/v4
    2012-07-06
    09:22:48
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 1935/v4
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 10.250.10.1:19350 (rtmfp-core)/v4
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 127.0.0.1:19350 (rtmfp-core)/v4
    2012-07-06
    09:22:49
    1508
    (i)2631509
    Public rtmfp-core addresses for listener _defaultRoot__edge1 are: 10.250.10.1:19350;127.0.0.1:19350
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 10.250.10.1:1935 (rtmfp)/v4
    2012-07-06
    09:22:49
    1508
    (i)2631174
    Listener started ( _defaultRoot__edge1 ) : 127.0.0.1:1935 (rtmfp)/v4
    Not sure what to do.
    Thanks.

  • Tomcat cant start in windows xp 64bits

    Dear members
    i have windows xp, processor and mainboard of 64 bits
    now
    C:\Documents and Settings\Administrator>java -version
    java version "1.5.0_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
    Java HotSpot(TM) 64-Bit Server VM (build 1.5.0_12-b04, mixed mode)
    C:\Documents and Settings\Administrator>when i try to start up my tomcat 5.5.25
    well not start and i see this in my log file
    [2008-02-14 13:54:20] [info] Procrun (2.0.3.0) started
    [2008-02-14 13:54:20] [info] Debugging Service...
    [2008-02-14 13:54:20] [info] Starting service...
    [2008-02-14 13:54:20] [174  javajni.c] [error] %1 is not a valid Win32 application.
    [2008-02-14 13:54:20] [986  prunsrv.c] [error] Failed creating java C:\java\jre1.5.0_12\bin\server\jvm.dll
    [2008-02-14 13:54:20] [1260 prunsrv.c] [error] ServiceStart returned 1
    [2008-02-14 13:54:20] [info] Debug service finished.
    [2008-02-14 13:54:20] [info] Procrun finished.how i can resolve this??
    thanks in advanced

    hello
    thanks for the reply
    I think a first great question is how did you acquire tomcat on
    your machine?
    Did you compile it from source,
    or find a binary somewhere?a simple .exe installer (5.5.25 version)
    in other friendly forum
    i recieve a suggestion of replace both .exe thor these ones
    http://svn.apache.org/repos/asf/tomcat/connectors/trunk/procrun/bin/amd64/
    see that is for 64bits
    now i have this error (less of of course that the original)
    [2008-02-14 18:41:14] [174  javajni.c] [error] The specified module could not be found.
    [2008-02-14 18:41:14] [986  prunsrv.c] [error] Failed creating java C:\java\jre1.5.0_12\bin\client\jvm.dll
    [2008-02-14 18:41:14] [1260 prunsrv.c] [error] ServiceStart returned 1some ideas? , where is the missing dll ???, the jre installer for 64 bits is wrong?
    regards

  • On the Canon MG3520 connected via Ethernet to USB on my PC with Windows 7, How do i find the IP ADD

    ON THE CANON mg3520 CONNECTED to my PC via cable to Computer with Windows 7, How do i find the IP ADDRESS for the MG3520?

    Hi biggergulp,
    To view the IP addres of your PIXMA MG3520, please follow these steps:
     1.  Click Start and select All programs, Canon Utilities, IJ Network Tool, and then IJ Network Tool.
     2.  Click on your PIXMA MG3520.
     3.  Select Configuration... from the Settings menu.
    The IP address of your PIXMA MG3520 will be displayed.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Can't connect my Mac to my Windows 2003 server shares via SMB

    Hello all
    So my problem is I have my Powerbook running 10.4.7 with all the latest security updates and I cannot connect it to any shares on my Windows 2003 domain controller. Everything was working fine and I could connect to the server with no problem till about a month ago. However, I can still connect to the Windows 2000 domain controller with no problem. The error I get when trying to connect is "Could not connect to the server because the name or password is not correct". I did try clearing out my keychain, making sure all of the authentication policies on the server are correct (disabling the digitally sign commucations always policy), and I even went as far as editing a .conf file in /etc/ folder that allows for passwords to be sent without any encryption (I forget exactly what I changed but I can post that later when I get home from work) and none of this has worked. I unfortunately don't have another mac to test out connecting to the Windows 2003 server. Does anyone have any ideas of what I could do to try and get this issue resolved?

    TO share out as afp you need to have file and print services for macintosh installed on the 2k3 Server.
    O n the main management console click on the shares icon on the left. then click the "link" create a share. The wizard will guide you through the process. i forget the order of progression but i beleive its the second or third part in the dialog it will have 2 check boxes, the top one checked by default, is to share it for windows/smb the second (lower box) is to share as AFP for mac check this box and change the share name if you like. then proceed through the rest of the wizard. Make sure you configure the security/sharing prefs for access.. we typically remove the everyone policy and add one for Authenitcated Users, and ofcourse Administrators.

  • Printing on my mac whilst connected to windows 2003 remote desktop connecti

    Hi, please can somebody help. I have a MacBook Pro and i am connecting to a windows 2003 server using microsoft remote desktop connection. I need to print on the printer connected to my mac. How do I get windows to see the printer that is connected to my Mac?

    Hi, please can somebody help. I have a MacBook Pro and i am connecting to a windows 2003 server using microsoft remote desktop connection. I need to print on the printer connected to my mac. How do I get windows to see the printer that is connected to my Mac?
    It looks like you have to have a postscript printer (i.e. a laser printer). I have been trying to solve this problem for some time with no luck so far.
    Dual 2 ghz G5   Mac OS X (10.4.8)  

  • I am trying to set up my new iPad 2 and to begin I installed iTunes on my laptop and connected the iPad to the USB port. Neither Windows or iTunes recognizes the device. I did everything this site told me to try and still no luck. Help!

    I am trying to set up my new iPad 2 and to begin I installed iTunes on my laptop and connected the iPad to the USB port. Neither Windows or iTunes recognizes the device. I did everything this site told me to try and still no luck. Help!

    You will not be able to see what version you are running until the iPad is activated. It will be in Settings>General>About >Version when you can get to the settings app.
    The slider bar that you are describing sounds like the screen lock side switch and that has no bearing on setting up the iPad or connecting to WiFi.
    Why don't you try rebooting your router? Unplug it for about 30 seconds and then plug it in again and see if the iPad will recognize and join the network.

  • While playing games like NFS and CounterStrike my macbook pro it does connects to the hotspot by any device either a Windows laptop, but doesn't show or connect to the server (LAN) created by windows player.Or neither connects to the server that i created

    While playing games like NFS and CounterStrike my macbook pro it does connects to the hotspot by any device either a Windows laptop, but doesn't show or connect to the server (LAN) created by windows player. Or, any other devices doesn't  connects to the LAN server that i created in the Game.     
    Could any one help me please.

    Please do not post more than about 50 lines of console logs or output from an Application crash at a time. No one can make it through those.
    If you had a kernel panic, those are Full of good information and should be posted in their entirety. They are stored, and can be read back and posted using this article:
    How to log a kernel panic

Maybe you are looking for