WAP2 instead of wap

hp 6600 printer use only (standard wap) and my router to aid (wap2)

no connection possible: how to change the settings of the printer to remove wap and replace it with the standard wap2?

use the computer window 7

Thanks for help

Really doing you nothing to the printer at all, it's automatic.  However your router isn't.  Set up you SSID and WPA2-EAS encryption on the router.  Now go back to the printer and you reconnect to your SSID and it will / should ask for your password.  Entry of the password and you must connect very well.

Tags: HP Printers

Similar Questions

  • External links in need of help widget

    Hello

    I have new all this so explain you in "easy to talk to."

    I built a quick widget to load our forums and everything seems to be ok. Until you try to click an http link. The link can be to an OTA Download or external site. When you click on the link of that nothing happens at all, but the rest of the widget works fine. My xml is below, any help would be great.

    
    http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.3">
      GeekBerry
      www.geekberry.co.uk">Andy Longhurst
      
      
      
      http://www.geekberry.co.uk/forums/index.php?wap2"/>
      
    
    

    Thank you very much

    Andy

    I worked on it. Here is my code incase anyone has this problem.

    
    http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.0.0">
      GeekBerry Forums
      A world of geeks, for your berry.
      www.geekberry.co.uk">Andy Longhurst
      http://geekberry.co.uk">
        
      
      
      
      
      http://www.geekberry.co.uk/forums/index.php"/>
      
        BIS-B
        TCP_CELLULAR
        WAP2
        MDS
        TCP_WIFI
        WAP
      
      
    
    
  • DirectTCP and WAP2 mystery

    I'm trying different network transports.

    I have a server socket and server http which are accessible to the public.

    I can make a socket connection to my socket server using mds and wifi. In such cases, the url that I use are 1) deviceside = false (for mds) and 2) interface = wifi (for wireless). I can also make a http get request to my server http successfully.

    This is where my problem begins. I try to make a direct tcp and wap2 connection using a socket. For the url, I used 1) deviceside = true (for direct tcp); and (2) deviceside = true; ConnectionUID = trans WAP2 (wap2 - wap2 trans is derived using my service book).

    Connections did not work. The error I get is

    java.io.IOException: Timed out

    Second, I tried to play with the URL. For direct tcp, I added "deviceside=true;apn=wap.cingular;[email protected];tunnelauthpassword=CINGULAR1" which is what I have in my TCP settings.

    I still have the same error.

    java.io.IOException: Timed out

    Then I tried to put a fake apn information to see if apn info I put is really used. This time the error I get is different:

    java.io.IOException: Tunnel failed

    So I guess that my original apn is correct and used during the connection because I don't get a different error that the Tunnel did not.

    Mysteriously, when I tried to make http connections to my http server using direct tcp and wap2 using the same url (of course I used the http:// instead of socket: / /), and then I reached my http server successfully.

    Finally, I have a third part application who mysteriously work without wifi or bes. So I guess he can do direct tcp or wap2 connections on my phone (of course, except if it uses BIS - I dunno how to check without asking the third part of the writers of the app and without a tool like wireshark to monitor network traffic to see what happens).

    My phone is BlackBerry "BOLD". I use AT & T. I'm in California.

    Now, you make no sense of this problem?

    How is it possible to make connections http using direct tcp and wap2, but NOT the socket connections?

    It plans various telephone activation http but not taken? and if there is, how do I know what mine is? AT & T call center people do not seem to know a lot about that kind of stuff. Is there a manual way or programming to check this? The third-party application seem to work well without BES and WiFi.

    Is there a way to monitor traffic from my phone? I really want to know what the url uses the third-party application to make the connection work.

    I appreciate all help.

    The obvious place to find a problem here is the choice of the port of socket.  However, I assume that you have already done this.

    However I suggest you try mocking up an in the form of bytes http GET request and just send it via a socket connection to port 80 of your Web server.  Your web server responds with the target page.  This should work and will show that the problem is specific port.  If it doesn't work, then the problem is with the socket connection, but I don't see how this could be possible.

    If you want to publish or send me the URL associated to the WebService and taken, I'll use a BB test utility I have here to test with it, on the WAP and direct TCP.

    Finally, did you see this?

    What is - Network Diagnostic tool
    Article number: DB-00684

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is...

  • http on real device connection works on wifi but for wap/tcp sometimes give 404 response

    Hi, im a new developer of blackberry, I have no problem when you use the connection using wifi but when I turned off my wifi and try to connect using 3 g sometimes the data is sent, but sometimes it doesn't... what could possibly mistake in this case?

    try {
    
    String _postData =;
                    OutputStream os;
    
                    //the preferred network is already arranged here
                    int[] preferredTransportTypes = {
                            TransportInfo.TRANSPORT_TCP_WIFI,
                            TransportInfo.TRANSPORT_WAP2,
                            TransportInfo.TRANSPORT_TCP_CELLULAR};
                    ConnectionFactory factory = new ConnectionFactory();
                    factory.setPreferredTransportTypes(preferredTransportTypes);
                    factory.setAttemptsLimit(3);
                            factory.setConnectionTimeout(10000);
                            //factory.setTimeLimit(10000);
                    //modify this
           final ConnectionDescriptor connDescriptor = factory.getConnection("http://url here");
                    if(connDescriptor==null){
                        UiApplication.getUiApplication().invokeLater(new Runnable()
                        {
                            public void run()
                            {
                                Dialog.alert("Invalid Network. Please check your network set up.");
                            }
                        });
                    }else{
                        HttpConnection http = (HttpConnection) connDescriptor.getConnection();
                        //https.setRequestMethod(HttpsConnection.POST);
                        //byte[] postDataBytes = _postData.getBytes();
                        http.setRequestMethod(HttpConnection.POST);
                        http.setRequestProperty("User-Agent","Profile/MIDP-2.0 Configuration/CLDC-1.0");
                        http.setRequestProperty("Content-Language", "en-US");
                        http.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
                        //https.setRequestProperty("Content-length", Integer.toString(_postData.length()));
                        byte [] postDataBytes = _postData.getBytes("UTF-8");
    
                        os = http.openOutputStream();
                        os.write(postDataBytes);
                        os.flush();
                        os.close();
                        int state = http.getResponseCode();
                        final int state2 = state;
                        if(state==HttpConnection.HTTP_OK || state==HttpConnection.HTTP_BAD_GATEWAY){
                            UiApplication.getUiApplication().invokeLater(new Runnable()
                            {
                                public void run()
                                {   
    
                                    //original
                                    //Dialog.alert("SOS sent. Our customer care personnel will contact you shortly.");
                                    Dialog.alert("SOS sent. This is the response code : " + state2);
                                    //Dialog.inform("SOS sent. Our customer care personnel will contact you shortly.");
                                }
                            });
                        } else {
                            UiApplication.getUiApplication().invokeLater(new Runnable()
                            {
                                public void run()
                                {
                                    //Dialog.alert("Failed to send SOS .");
                                    Dialog.alert("Failed to send SOS. Please try again.This is the response code : " + state2);
                                }
                            });
                        }
                    }
                } catch(IOException e) {Dialog.inform(e.getMessage());}
    

    IM using blackberry 9700 with os 6

    Solved due to problem of carrier to WAP2

    so I put the TransportInfo.TRANSPORT_TCP_CELLULAR to be at the top of WAP and it solved my problem.

    but I need to adjust my apn for the tcp connection

  • Application does not connect to the server using WAP2.0

    Hello

    I used following code to get the suffix of the url that is required to connect to the application server using WAP2.0

           if(CoverageInfo.isCoverageSufficient(CoverageInfo.COVERAGE_DIRECT))
            {
                    //WAP 2.0
                String uid = null;
                ServiceBook sb = ServiceBook.getSB();
                ServiceRecord[] records = sb.findRecordsByCid("WPTCP");
                for (int i = 0; i < records.length; i++) {
                    if (records[i].isValid() && !records[i].isDisabled()) {
                        if (records[i].getUid() != null &&
                            records[i].getUid().length() != 0) {
                            if ((records[i].getCid().toLowerCase().indexOf("wptcp") != -1) &&
                                (records[i].getUid().toLowerCase().indexOf("wifi") == -1) &&
                                (records[i].getUid().toLowerCase().indexOf("mms") == -1)   ) {
                                uid = records[i].getUid();
                                break;
                            }
                        }
                    }
                }
    
                if(uid!=null)
                {
                    if(AppConfigurations.DEBUG)
                        System.out.println("Connected using direct WAP2.0....");
                    return ";ConnectionUID="+uid;
                }
            }
    

    I am same ConnectionUID as present in this complete book in Options in the device.

    Even application does not connect to the server using WAP2.0.

    Let me know what other things should I check to make application to connect to the server using WAP2.0.

    My phone is BB 8900 and OS 4.6.1

    WAP connection will pass through the gateway of the carrier.  This gateway can oppose your respect, or might be trying to optimize the data, or can display a login page for you.  Try the same URL that you use in your program, directly with the WAP browser on the device and see if that runs through effectively.

  • Citing a WAP browser on OS 7 (via BrowserSessionFactory)

    Our code is based on article "Invoke the browser."

    http://supportforums.BlackBerry.com/T5/Java-development/invoke-the-browser/Ta-p/445362

    On OS7 device BrowserSessionFactory cannot browser WAP - the reason for this is that the following code:

    if( myRecord.isValid() &&
        !myRecord.isDisabled() &&
        (myRecordHelper.getConfigType() ==
        ServiceRecordHelper.SERVICE_RECORD_CONFIG_TYPE_WAP2)
        && (myRecordHelper.getNavigationType() != -1))
    {
        uid = myRecord.getUid();
        break;
    }
    

    is not triggered because myRecordHelper.getNavigationType () returns-1.

    Here's the WAP2 folder properties in the maintenance book

    myRecord: WAP BrowserConfig[WAP BrowserConfig]
    myRecord.getUid: WAP BrowserConfig
    myRecord.isValid: true
    myRecord.isDisabled: false
    myRecord.getNavigationType: -1
    

    If we remove the "!" = - 1' check, the factory can detect and open the WAP browser
    (but this change has probably some other side effects)

    Can someone rim please look into this and let us know what is the good
    way to open a WAP browser on device 7 OS?

    Thanks Mark!

    We cannot test the BES browser now, I suppose that we can do a similar check one done for TransportInfo.TRANSPORT_BIS_B?

    We have also two different solutions when WiFi record returns isDisabled - is the difference between them? Can I keep one of them (and where?)

  • Background thread, kSoap, WAP 2.0 crashing

    My apologies for the title of the topic, I did not know how to phrase my question correctly!

    Background:

    I created an application (partially) work that implements a timer started from a different point of entry.

    The timer calls a thread about every ten seconds. The thread running queries from web services to a remote server and analyzes the responses. This is done using the kSOAP library and and connector MDS on BES, WAP 2.0 so decommissioning the client uses not BES.

    Problem:

    Everything works a treat for the connection of BES and some suppliers of WAP 2.0. The majority of client machines using WAP 2.0 do not work.

    The error returned by the application is IllegalStateException: no instance of the application. It is thrown only with WAP 2.0. The error occurs directly after the execution of the method in the class of kSOAP HttpTransport.

    Ht HttpTransport = new HttpTransport (SERVICE_URL + ";" deviceside = true; ConnectionUID ="+ wapUid());

    HT. Call();

    I tested this thorougly but this is my first BlackBerry application and there is obviously something I am doing wrong.

    Test:

    Here are things I've already tried.

    1. I wrote a separate application that passes the raw XML data to the web server, the response is rendered to the screen. It works on WAP 2.0 and has no problems or interference of the WAP gateways or transcoders.
    2. I wrapped the ht.call inside an executable invokeAndWait () function. I thought that maybe the kSOAP library was interfering with the user interface?

    Please note that the exception does occur in the instance of the application started by another entry point. Web services work very well on all WAP 2.0 providers (that have been tested) in the application of the user interface.

    Thanks in advance.

    James

    invokeandwait is not solution (especially not when he dressed network code, never do this)

    You must catch a Throwable instead of an Exception. The traces are deleted on exceptions for performance reasons (per OS), only throwable objects have them.

    you did not really answer the question of what the other entry point did, I'll try to explain my question.

    you start the application UI about to enter normal.

    start an application when the autostart entry point is called? with xxxapp.enterEventDispatcher?

    If this is not the case, this might solve your problem.

    instead of closing a user interface application, you can use requestBackground. several applications of system use this mechanism. If you select 'Close' in the menu of the browser, for example, the browser is only put in the background.

  • WAP 2.0 &amp; PHP/mySQL

    Hello

    I'm looking to pass variables to a PHP script via HTTP.

    My method works very well on BES/MDS, but it's time to make it work on non - BES devices.

    Can I use WAP 2.0 for this?  If so, mine doesn't seem to work.  My HTTP connection looks like this.

    ...

    Open (http://www.website.com/phpscript.php?variable1=variable;deviceid=true;) "ConnectionUID = WAP2 trans.

    any reason why it would not work.  For some reason any, that it is not.

    I have contacted my provider and they stated that WAP 2.0 is available for third party applications.

    I was wondering if it has something to do with sending the variables to a PHP script.

    (Again, code works fine on MDS/BES...doesn't work when I switch to WAP 2.0 and run the application on my phone.)  Oh, and the application does not work when I run on my device on BIS.)

    Any suggestions?

    Change the connector so that it is read/write.

  • WAP 2.0 + kSOAP

    Hi BB'rs.

    I am developing an application that uses Web services to communicate with an external server. I would like to as communications to transmit using the WAP 2.0 protocol.

    I use the kSOAP library. What I read in the related forum messages and objects, the HttpTransport object is where connection suffixes are added to ensure that the application passes on WAP 2.0.

    I currently have a problem establishing a connection to the external servers, technical details are below.

    Please note that I am recovering the "WAP2 trans01" since the service book and adding that a variable in the actual code. the result is the same as below.

    HT = new HttpTransport (webserviceUrl + ";" ConnectionUID = WAP2 trans01");

    HT. Call results in an IOException (could not pass).

    HT = new HttpTransport (webserviceUrl + "; DeviceSide = true; ConnectionUID = WAP2 trans01");

    HT. Call translates an InvalidStateException (no instance of the application).

    I use the Blackberry Bold 9700 (OS v5.0.0.545), glancing at my maintenance book, the entrance to WAP2 Transport 01 is shown below:

    Name: WAP2 Transport 01

    UID: WAP2 trans01

    CID: WPTCP

    User ID:-1

    IDDM:

    Gateway IP: //0.0.0.0;0/wap.vodafone.co.uk| GPAK

    Description: WPTCP Trans Vodafone UK (136163)

    Service type: not specified

    Subtype of service: not specified

    What I've read, it should work. If anyone has any experience with kSOAP WAP 2.0, I would appreciate greatly any advice on how to proceed.

    Best,

    James

    Hi Simon,.

    Thanks for your reply, the problem has been resolved, it was because of the traffic of transcoding of Vodafone UK.

    Transcoding resulted in a 500 response of the WAP 2.0 gateway that kSOAP couldn't handle. I've been able to diagnose this using the rim (HIGHLY RECOMMENDED!) network diagnostics tool

    After searching around forums, I found that it was possible to whitelist our domain by email to [email protected].

    A further search revealed that the .mobi domains are automatically in the whitelist of transcoders, no attempts are made to transcode server responses! I feel enlightened!

    We checked the domain .mobi with a number of carriers (Orange, Vodafone, tMobile and O2) using the tool the network diagnostics in BES and WAP 2.0 by using the tool (thanks RiM!) network diagnostics and our application.

    Boo,

    James

  • Application works only with the WAP. good with wifi

    My application works fine with wifi connection, but does not not with WAP GPRS.

    + 2 days devoted to this subject, but no success.

    Here's the code...

    Hi mantaker, yet I don't have the solution to my previous problem.

    my application using httpconnection and his fine work with Wi - Fi (the device). obtain data from the servlet. I want to use GPRS EDGE. I tried the very last day. but it's not working. even I had the name of the apn, the user name and the password. but it's not working with GPRS. Deploy the NetworkDiagnosticPublic application on device even his also does not work with WAP. and not getting not response. only works with wifi. Here is my code. n my wifi connection successfully application, but I want to do with the GPRS Edge code is

    connThread.get("http://*********.30daytrial.webappcabaret.com/Zain_Servlet/second?f1="                            + NameTextField.editField.getText()                            + "&m2="                            + AreaTextField.editField.getText()                            + "&l2="                            //+ LastTextField.editField.getText());//NOT WORKING                            //+ LastTextField.editField.getText() + ";deviceside=true;ConnectionUID=" + getWap2TransportUid());//NOT WORKING                            + LastTextField.editField.getText() + ";deviceside=true");//NOT WORKING                            //+ LastTextField.editField.getText() + ";interface=wifi");// WORKING                            //+ LastTextField.editField.getText() + ";deviceside=true;apn=internet;" +                            //"TunnelAuthUsername=internet;TunnelAuthPassword=internet");//NOT WORKING
    
       private static String getWap2TransportUid() {
    
         // Get the service book records for WAP2 transport.          ServiceRecord[] records = ServiceBook.getSB().findRecordsByCid("WPTCP");
    
              for (int i = 0; i < records.length; i++){
    
                  Dialog.alert("Service: " + records[i].getName());         }
    
               for (int i = 0; i < records.length; i++)           {             ServiceRecord serviceRecord = records[i];             String cid, uid;
    
                  if (serviceRecord.isValid() && !serviceRecord.isDisabled()) {                 cid = serviceRecord.getCid().toLowerCase();                   uid = serviceRecord.getUid().toLowerCase();
    
                  if (cid.indexOf("wptcp") != -1 && uid.indexOf("wifi") == -1 && uid.indexOf("mms") == -1) {                    Dialog.alert("New ::  "+serviceRecord.getUid());                  return serviceRecord.getUid();                    }             }            /* String recordName = serviceRecord.toString().toUpperCase();             if (serviceRecord.isValid() && !serviceRecord.isDisabled() &&                     serviceRecord.getUid() != null && serviceRecord.getUid().length() != 0 &&                     recordName.indexOf("WAP2")!=-1)
    
                   {                 Dialog.alert("recordName: " + recordName);                     String uid = serviceRecord.getUid();                    Dialog.alert("UID="+uid.getBytes());
    
                       return uid;               }*/           }
    
              return null;  } 
    


    Yes peter, there are a lot of thread having the same issues...

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=38541#M38541

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=38328#M38328

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=38316#M38316

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&thread.ID=38157&view=by_date...

    always loads UN stuck

    See you soon...

  • WAP, BIS transport break XML

    I note very odd behavior when you use WAP2 or BIS to transmit XML over HTTP on a BlackBerry Storm. Even if my server sends back an XML document, along the way, the documents eventually get modified in an HTML document.

    The document sent by my server is:

    Jim

    3

    The Unit received this:

    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.DTD "?

    http://www.w3.org/1999/xhtml '?

    Denied3

    Note how the contents of the XML file will eventually be injected into the body of the HTML document.

    To make matter more interesting, I don't see it on my Storm 9530 OS 4.7.0.76 (BIS), so that my 9000 OS 4.6.0.162 correctly receives the XML code, as does the Simulator (8800 4.2.1).)

    Some details about the code that I use. I open an HTTP connection with

    (HttpConnection) Connector.Open (url + ";" ConnectionTimeout = 10000 "+"; " deviceside = true' + ";". " ConnectionUID = [WPTCP SB UID]");

    UID above is taken from the Transport WAP entry in the service log (IPPP for BIBS will give the same result). I include all properties in 'User-Agent', while 'profile/MIDP-2. 0 configuration/CLDC - 1.0 "did not change things.

    Some research on the forums has revealed existing problems with XML makes it through a somewhat similar situation, but in contrast to the post below I use BIS and not BIS-B.

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=38570&query.ID=16...

    All the thoughts/help on this would be appreciated.

    Are you defining the content of type XML?

  • How to associate with 3 rd-party WEP AP (instead of WPA AP) with the universal client?

    the following example shows how to associate with a WAP to a Cisco router access point:

    ! http://www.Cisco.com/en/us/docs/routers/access/1800/wireless/configuration/guide/s37wep.html#wp1037774
    ! universal client configuration example for encryption of the ARS + TKIP, WPA - PSK:

    dot11 ssid test10
    open authentication
    authentication wpa key management
    WPA - psk ascii 7 11584B5643475D5B5C737B
    output

    interface Dot11Radio0/1/0
    DHCP IP address
    encryption ciphers aes - ccm mode
    SSID test10
    station-role nonroot
    output

    Hello

    If you need instead of WPA WEP... Here is the config...

    dot11 ssid test10
    open authentication
    output

    interface Dot11Radio0/1/0
    DHCP IP address
    mandatory encryption wep mode
    1 size 40-bit encryption key
    SSID test10
    station-role nonroot
    output

    Let me know if that answers your question and please do not forget to note the useful messages!

    Concerning

    Surendra

  • I tried to download macOS Sierra for the last hours on my Mac, but it is still holding still to download. Should I download the El Capitan instead? All sites tell me that I should update my Safari.

    I tried to download macOS Sierra on my macbook pro iOS 10 for a few hours and it still has several hours to go. Should I just download the Capitan instead? All sites tell me that I should update my Safari or I wouldn't even through this disorder.

    You must complete the download of Sierra. It is a very large file and will take some time, especially on a slow Internet connection.

    (145165)

  • Update IOS Sierra shows only 8 GB instead of 16 GB

    After the upgrade to my system Sierra shows that 8GB instead of 16 GB in which I have two installed RAM 8 GB cards.

    Ive done a reset of the NVRAM/PRAM memory and no help.

    Does anyone else have this problem?

    I would try reinstalling the memory in Bank 1. I doubt that Sierra has nothing to do with it, just a coincidence I guess. I've not seen anyone else with this issue since Sierra was released.

  • Why iTunes 12.5 play my library of songs together, instead of playing the album from the chosen song

    When I get to the album, and and select a song in an album, itunes plays all songs in the library, instead of just playing this specific album, beginning of the song I've selected.

    Double-click the first track you want to play instead of use the blue play button.

    TT2

Maybe you are looking for