Getting an error of Tunnel for WAP 2.0

Hello

IM, creating an application that uses a secure site im getting from there, json data when I tried the app in the Simulator, it works very well,

in the device im getting the connection type dynamamically [learn like 'WAP2 trans'] that i concatinated with the url.

but when I tried with the device im getting an error of tunnel.

What should I do to fix this error. ? is there a problem with the carrier.

all can help me on this

Thank you

SujithRavindran

exception of tunnel sounds as you use direct tcp, you can be by chance.  Can you connect and tell us the exact suffix of connection that you use in your application.  Also can you tell us which carrier you use and the unit and the level of operating system involved.  These may not apply, but also perhaps.

Tags: BlackBerry Developers

Similar Questions

  • Windows XP keep getting an error code 0xD59 for the Service Pack to update KB2463332 & will not update?

    I get an error code 0xD59 for the update of Service Pack KB2463332?  Then he wants to resart my computer for an update failed?  Why?

    Hello


    Click on the below mentioned link to manually install the update on your computer.

    Microsoft SQL Server 2005 Express Edition Service Pack 4 for Windows XP.
    http://www.Microsoft.com/en-US/Download/details.aspx?ID=184
    After you install the update, restart your computer and check if the problem is resolved.
  • I'm trying to timestamp (RFC 3161) a pdf file using my own timestamp server equipment but still get an error: 'invalid certificate for use.

    I'm trying to timestamp (RFC 3161) a pdf file using my own timestamp server equipment but still get an error: 'Invalid certificate for use' (text Original - certificado valido para uso e nao pt_BR:O). How can I get more information on what I'm missing or whats wrong with the certificate?

    I found the answer to my problem: it was linked to the plug of the TSA and its attribute 'Extended Key use '.

    In any case, thanks for your help. Just to answer the questions:

    Version: Adobe Reader XI

    Tried both:

    (A) the time stamp for the signature: signature put under without timestamp and an alert

    (B) the document timestamp: no changes and an alert

  • Photoshop Elements 11, Windows 7 PC. When you try to make a Photo montage I get an error "not available for the creation of valid size.

    Hello

    Need help...  When you try to make a Photo montage I get an error "not available for the creation of valid size.

    Photoshop Elements 11, Windows 7 PC.

    Thank you

    Error "not available for the creation of valid size.

  • My work laptop crashed and I want to install PhotoShop CS4 on a working PC I get an error msg "License for this product has expir├⌐.

    My work laptop crashed and I want to install PhotoShop CS4 on a working PC I get an error msg "License for this product has expiré.

    Error "licensing for this product has expired" | CS4, CS5

  • get them error code 8024001 for two weeks now can't get rid of it

    get error code 8024001 for two weeks now can't get rid of it, and then try again to saying

    Hello

    When exactly do you get the error message?

    I suggest you try the steps from the following link:

    Windows Update error 8024001
    http://Windows.Microsoft.com/en-us/Windows-Vista/Windows-Update-error-8024001b

  • I get an error "Runtime c +" for "spoolsv.exe".

    I was always told not to download any what registry tools so how can I fix this on my own?

    Hello

    1. when exactly you get this error?

    2. What is the full error message?

    3. you remember to make changes to the computer before this problem?

    Errors caused by the spoolsv.exe file are often caused by other third-party software programs installed on the computer or the printer drivers installed on the computer.

    Make sure you have the latest printer drivers for your printer. In addition, make sure you have anti-virus protection on computer software and that it is up-to-date.

    You can connect the site of the printer manufacturer for the latest drivers for the printer.

    Check out the link:

    Update drivers: recommended links

    http://Windows.Microsoft.com/en-us/Windows-Vista/update-drivers-recommended-links

    Hope this information is useful.

  • Get the error not defined for the current document in the script

    I get a "error number: 2" "error string: myDoc is not defined" in my script.

    I modified a few scripts so that they cross my entire book and open each section (document) in my book, and run the code for each section.ext

    The code runs great and opens and closes the sections where it does not add links to text, but once, it opens a document and view text that you CAN add links, it generates this error.  Here is my code:

    main();
    exit();
    
    function main() {
        var myBook = app.activeBook,
                myDocs = myBook.bookContents.everyItem().getElements(),
                myDoc,
                myHyperlinkStyle,
                myCount = 0;
    
        for (var i=0; i< myDocs.length; i++) {
            myDoc = app.open(File("\\\\computerOnNetwork\\c$\\Folder\\" + myDocs[i].name));
            myHyperlinkStyle = myDoc.characterStyles.item("linkstyle");
    
            try {
                var script = app.activeScript;
            } catch(err) {
                var script = File(err.fileName);
            }
            var myScriptFolderPath = script.path;
            var myFindChangeFile = new File(myScriptFolderPath + "/SearchTextAndUrls.txt"); //mac path for users desktop //File.openDialog("Choose the file containing the tab separated list"); 
            //alert(myFindChangeFile)
            myFindChangeFile = File(myFindChangeFile);
            var myResult = myFindChangeFile.open("r", undefined, undefined);
            if(myResult == true){
                app.findTextPreferences = NothingEnum.nothing;
                app.changeTextPreferences = NothingEnum.nothing;
                //Loop through the find/change operations.
                do {
                    //read 1 line into myLine
                    myLine = myFindChangeFile.readln();
                    myFindChangeArray = myLine.split("\t");
    
                    //The first field in the line is the value to find 
                    myFindVal = myFindChangeArray[0];
    
                    // second is the url
                    myFindUrl = myFindChangeArray[1];
    
                    doSearchAndReplace(myFindVal, myFindUrl, app.activeDocument);
    
                } while(myFindChangeFile.eof == false);
                    myFindChangeFile.close();
                    // reset search
                    app.findTextPreferences = NothingEnum.nothing;
                    app.changeTextPreferences = NothingEnum.nothing;
            }
            alert("Done! " + myCount + " hyperlinks have been added.");
    
            myDoc.close();
        }
    }
    
    function doSearchAndReplace(stringfind, urlstring, searchin) {
        app.findTextPreferences.findWhat = stringfind;
    
        //Set the find options.
        app.findChangeTextOptions.caseSensitive = false;
        app.findChangeTextOptions.includeFootnotes = false;
        app.findChangeTextOptions.includeHiddenLayers = false;
        app.findChangeTextOptions.includeLockedLayersForFind = false;
        app.findChangeTextOptions.includeLockedStoriesForFind = false;
        app.findChangeTextOptions.includeMasterPages = false;
        app.findChangeTextOptions.wholeWord = false;
    
        var myFoundItems = searchin.findText();
    
        for (i = 0; i < myFoundItems.length; i++) {
            var myHyperlinkDestination = myMakeURLHyperlinkDestination(urlstring);
            myMakeHyperlink(myFoundItems[i], myHyperlinkDestination);
            myFoundItems[i].applyCharacterStyle(myHyperlinkStyle, false);
            myCount++
        }
    }
    
    function myMakeHyperlink(myFoundItem, myHyperlinkDestination){
        try {
            var myHyperlinkTextSource = myDoc.hyperlinkTextSources.add(myFoundItem);
            var myHyperlink = myDoc.hyperlinks.add(myHyperlinkTextSource, myHyperlinkDestination);
            myHyperlink.visible = false;
        }
        catch(myError){
        }
    }
    
    function myMakeURLHyperlinkDestination(myURL){
        //If the hyperlink destination already exists, use it;
        //if it doesn't, then create it.
        try{
            var myHyperlinkDestination = myDoc.hyperlinkURLDestinations.item(myURL);
            myHyperlinkDestination.name;
        }
        catch(myError){
            myHyperlinkDestination = myDoc.hyperlinkURLDestinations.add(myURL);
        }
        myHyperlinkDestination.name = myURL;
    
        //Set other hyperlink properties here, if necessary.
        return myHyperlinkDestination;
    }
    

    Any help is greatly appreciated!

    That ends up being my fixed/final code:

    main();
    exit();
    
    function main() {
        var myBook = app.activeBook,
                myDocs = myBook.bookContents.everyItem().getElements(),
                myDoc,
                myHyperlinkStyle;
    
        for (var i=0; i< myDocs.length; i++) {
            myDoc = app.open(File("\\\\computerOnNetwork\\c$\\Folder\\" + myDocs[i].name));
            myHyperlinkStyle = myDoc.characterStyles.item("linkstyle");
    
            try {
                var script = app.activeScript;
            } catch(err) {
                var script = File(err.fileName);
            }
            var myScriptFolderPath = script.path;
            var myFindChangeFile = new File(myScriptFolderPath + "/SearchTextAndUrls.txt"); //mac path for users desktop //File.openDialog("Choose the file containing the tab separated list");
            //alert(myFindChangeFile)
            myFindChangeFile = File(myFindChangeFile);
            var myResult = myFindChangeFile.open("r", undefined, undefined);
            if(myResult == true){
                app.findTextPreferences = NothingEnum.nothing;
                app.changeTextPreferences = NothingEnum.nothing;
                //Loop through the find/change operations.
                do {
                    //read 1 line into myLine
                    myLine = myFindChangeFile.readln();
                    myFindChangeArray = myLine.split("\t");
    
                    //The first field in the line is the value to find
                    myFindVal = myFindChangeArray[0];
    
                    // second is the url
                    myFindUrl = myFindChangeArray[1];
    
                    doSearchAndReplace(myFindVal, myFindUrl, app.activeDocument, myDoc, myHyperlinkStyle);
    
                } while(myFindChangeFile.eof == false);
                    myFindChangeFile.close();
                    // reset search
                    app.findTextPreferences = NothingEnum.nothing;
                    app.changeTextPreferences = NothingEnum.nothing;
            }
            alert("Done! Hyperlinks have been added.");
    
            myDoc.close();
        }
    }
    
    function doSearchAndReplace(stringfind, urlstring, searchin, myDoc, myHyperlinkStyle) {
        app.findTextPreferences.findWhat = stringfind;
    
        //Set the find options.
        app.findChangeTextOptions.caseSensitive = false;
        app.findChangeTextOptions.includeFootnotes = false;
        app.findChangeTextOptions.includeHiddenLayers = false;
        app.findChangeTextOptions.includeLockedLayersForFind = false;
        app.findChangeTextOptions.includeLockedStoriesForFind = false;
        app.findChangeTextOptions.includeMasterPages = false;
        app.findChangeTextOptions.wholeWord = false;
    
        var myFoundItems = searchin.findText();
    
        for (i = 0; i < myFoundItems.length; i++) {
            var myHyperlinkDestination = myMakeURLHyperlinkDestination(urlstring, myDoc);
            myMakeHyperlink(myFoundItems[i], myHyperlinkDestination, myDoc);
            myFoundItems[i].applyCharacterStyle(myHyperlinkStyle, false);
        }
    }
    
    function myMakeHyperlink(myFoundItem, myHyperlinkDestination, myDoc){
        try {
            var myHyperlinkTextSource = myDoc.hyperlinkTextSources.add(myFoundItem);
            var myHyperlink = myDoc.hyperlinks.add(myHyperlinkTextSource, myHyperlinkDestination);
            myHyperlink.visible = false;
        }
        catch(myError){
        }
    }
    
    function myMakeURLHyperlinkDestination(myURL, myDoc){
        //If the hyperlink destination already exists, use it;
        //if it doesn't, then create it.
        try{
            var myHyperlinkDestination = myDoc.hyperlinkURLDestinations.item(myURL);
            myHyperlinkDestination.name;
        }
        catch(myError){
            myHyperlinkDestination = myDoc.hyperlinkURLDestinations.add(myURL);
        }
        myHyperlinkDestination.name = myURL;
    
        //Set other hyperlink properties here, if necessary.
        return myHyperlinkDestination;
    }
    
  • Adobe Standard 9.5.2 after update I get the error "insufficient data for an image.

    After the update to Acrobat Standard and devoid 9.5.2, some (but not all) of my pdf files are now open with the error "Insufficient data for a picture." Open files, but they are blurred, pixelated and are missing from the character Ben I applied earlier (by using a utility of LexisNexis Casemap). Fine, I can open the files on another computer with Acrobat Standard 9.5.1.

    How can I uninstall the 9.5.2, or make it work again?

    Acrobat engineering wishes to inform users facing this problem that the latest version of the player (available for download on http://get.adobe.com/reader) XI solves this problem. Users are advised to download the latest version as soon as possible to avoid encountering this error in the future. As mentioned, the team is working hard to solve the problem in earlier versions (10.x and 9.x) as well and plans to deliver a solution by Q1 2013.

    For more information, please see our KB document for this issue:http://helpx.adobe.com/acrobat/kb/insufficient-data-image.html

    Post edited by: David Kastendick

  • It would not be possible to charge students licensed CS4 on a new computer? I get the error message "License for this product has stopped working": 150:30

    I bought a newer and faster apple.  It won't be possible to recharge my CS4 Design Premium student license version?

    Is the student license a perpetual license? Is its use related to my maintaining student status?  In other words, can I still use the software

    When I'm not a student anymore?

    You must uninstall, clean and reinstall then by use the CC cleaning tool to resolve installation problems. CC, CS3 - CS6

    but you will need your serial number to reinstall and activate.

    Refer to:

    Concerning

    Baudier

  • When you run sfc/scannow, using i386, getting the error "files required for Windows to run correctly have been replaced by unrecognized versions.»

    When I run the sfc/scannow, I get a message telling me "files which are required for Windows to run properly have been replaced by unrecognized versions." To maintain stability, Windows must restore the original versions of these files. Insert your Windows XP Home Edition Service Pack 3 CD now"with options; try again, more information or to cancel.

    A CD came with the computer and I don' t know how, or if I can use the i386 at this stage. contains WINNT i386. EXE, and WINNT32.exe indicating me a full copy of the system.

    If it is doable but requiring a major tech-skills, I will put an end to this attempt and try to find a CD. (old dog, new tricks)

    Thanks for any advice.

    Hello

    Please go through this page.

    http://www.updatexp.com/scannow-SFC.html

    Thank you

    Dinesh

    You can vote if my answer is helpful. Thank you

  • Is it common to get 'corruption' errors using Winzip for transfer/queue to Compress / decompress VMs?

    When I SCP files vm on W2K3 server via FastSCP, compressed by Winzip, transferring files via Filezilla to another W2K3 server and try to unzip with Winzip... I get "file corrupt" errors Is this common? Is there a more reliable way to compress/transfer computers virtual site to site?

    2.5 U5 vCenter / ESX 3.5 U4 / W2K3 VMs

    All points will be awarded.

    Hello

    No, this is not normal. What version of Winzip are you using?

    IIRC, nothing, until Winzip version 9 (Patchlevel 1?) cannot you create zipfiles to/use more than 2 GB in size.

    Your archives are larger than that?

    --
    Wil
    _____________________________________________________
    VI Toolkit & scripts wiki at http://www.vi-toolkit.com

    Writer to the blog www.planetvm.net

  • get an error c 0000064 for microsoft sql server 2005 express edition service pack 3 kb955706

    Vista Home Basic are trying to agree once again butdid not accepting help

    Hi deere,.

    Try to go to the following link for assistance. He referred to SP2, but the problem (and the fix) should be the same

    http://support.Microsoft.com/kb/957008/

    Also, if you are using Visual Studio 2005,.
    Service Pack 3 for SQL Server provided with the files that have experienced problems of compatibility on Vista and Windows 2008. To resolve, it is suggested that you apply to Visual Studio 2005 Service Pack 1, see http://support.microsoft.com/?kbid=960320 for more information.
    Dave D
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I get an error, "host process for windows services has stopped working" when I try to run a program.

    host process for windows services has stopped working a problem caused the program to stop working correctly windows closes

    Original title: host process for windows services has stopped working

    See if you have rootkits. Run tddskiller, if it finds rootkits, select cure, wait for it to finish and then restart your computer

  • Get the error code 80070020 for update security update for Windows Vista (KB2588516)

    There have been those

    The ALL NEW NORTON 2012 WHO COMES of OUT JUST DWNLOADED the TOOL MCAFFEE AND the DELETION of OLD FILES. I HAD NORTON FOR ABOUT 2 WEEK TRIAL JUST FOR NOW. YES, MCAFEE HAS EXPIRED BEFORE THAT I PUT NORTON HERE.
    NO DO NOT HAVE THOSE 2 UPDATES THAT I SHOULD BRING?
    KB 2563894 - SAID THAT SHE ONLY WILL NOT APPLY TO MY SYSTEM
    ON THE OTHER KB978886 IT IF NOT APPLY TO MY SYSTEM NO MORE...
    ?

Maybe you are looking for