[REQUEST] HTTP connection to analysis

Hello.. I have the source code...

 public void run() {
        if (!isValidUrl(url) || listener == null) {
            String message = "Invalid parameters.";
            message += !isValidUrl(url) ? " Invalid url." : "";
            message += (listener == null) ? " Invalid HttpResponseListerner instance.": "";
            notifyFailure(message, url);
            return;
        }

        // update URL depending on connection type
        url += DeviceInfo.isSimulator() ? ";deviceside=true" : getConncetionDependentUrlSuffix();

        // Open the connection and retrieve the data
        try {
            HttpConnection httpConn = (HttpConnection) Connector.open(url);
            int status = httpConn.getResponseCode();
            if (status == HttpConnection.HTTP_OK) {
                InputStream input = httpConn.openInputStream();
                byte[] bytes = IOUtilities.streamToBytes(input);
                input.close();
                notifySuccess(bytes, url);
            } else {
                notifyFailure("Failed to retrieve data, HTTP response code: " + status, url);
                return;
            }
            httpConn.close();
        } catch (Exception e) {
            notifyFailure("Failed to retrieve data, Exception: ", e.toString());
            return;
        }
    }

I get all this

Link Source Code

My problem is, the application uses the connection TCP, Imust APN setting on my camera...

I want to make this application uses the connection Blackberry Internet Service (BIS)...

I'm so confused.

Help me please.

private String getConncetionDependentUrlSuffix() {}
Not implemented
return '; deviceside = false; "ConnectionType = m * s - p * blic ';
}

FIX

Tags: BlackBerry Developers

Similar Questions

  • Items that are unencrypted in a https connection may be hidden?

    For a long time, IE was an option to hide items unencrypted in a https connection. I can't find such an option now, so I can't give more details. BU is the point: Firefox can do? Some sites have encrypted partially connections and for me it is important to distuinguish what is safe and what is not in these sites. A sad example is very support page for the product Mozilla (see below).

    Thanks in advance.

    You can still file an enhancement request in Bugzilla (or) - http://bugzilla.mozilla.org
    Try it, I really encourage you to follow this path.

  • How to write a program that allows an HTTPs connection to the APACHE TOMCAT server in blackberry JDE

    Hello.. I am very new to the blackberry JDE environment. But then, I have a project in which I should write a program that will make an HTTPs connection to the apache tomcat server using blackberry JDE. The simulator which I use is 8330-JDE.

    Here is my code...

    import java.io.IOException;

    Import java.io.InputStream;

    Import javax.microedition.io.Connector;

    Import javax.microedition.io.HttpsConnection;

    Import net.rim.device.api.ui.UiApplication;

    Import net.rim.device.api.ui.container.MainScreen;

    public class Httproto extends UiApplication

    {

    public public static void main (String [] args)

    {

    Httproto instance = new Httproto();

    instance.enterEventDispatcher ();

    }

    public Httproto()

    {

    pushScreen (new HttpsConnectionScreen());

    }

    }

    final class HttpsConnectionScreen extends screen

    {

    public HttpsConnectionScreen()

    {

    HttpsConnection c = null;

    InputStream is = null;

    int rc;

    try {String url =

    "https://192.168.2.3: 8443/cit/j_acegi_security_check? j_username = sanogo & j_password = redhat;

    c = (HttpsConnection) Connector.open (url);

    c.setRequestMethod (HttpsConnection.POST);

    System.out.println ("connection is open with the server");

    Get the response code is open the connection,

    Send the request and read HTTP response headers.

    The headers are stored until asked.

    RC = c.getResponseCode ();

    System.out.println ("response from the server" + rc);

    if (rc! = HttpsConnection.HTTP_OK) {

    throw new IOException ("HTTP response code:" + rc);

    }

    is = c.openInputStream ();

    Get the ContentType

    The string of type = c.getType ();

    The length and process data

    int len = (int) c.getLength ();

    if (len > 0) {

    int actual = 0;

    int BytesRead = 0;

    byte data = new byte[len]; while ((bytesread! = len) & (real! = - 1)) {

    real = is.read (data, bytesread, len - bytesread);

    bytesRead += real;

    }

    } else {}

    int ch;

    while ((ch = is.read (())! = - 1). {

    }

    }

    } catch (ClassCastException e) { throw new IllegalArgumentException ("not a HTTP URL");}

    }

    catch (IOException ioe) {}

    finally {

    Try

    {

    if (is! = null)

    is. Close();

    if (c! = null)

    c.Close ();

    }

    catch (IOException ioe) {}

    }

    }

    }

    When I run this program in the Simulator, I can do nothing. Please correct me if I'm wrong in coding.

    As I am new to this blackberry JDE environment, ideas and suggestions on how to write and run the sample applications in the blackberry are more welcomed.

    Concerning

    Hinduja

    Make sure that your MDS starts when the Simulator starts.  In the JDE will in Edition > Preferences > Simulator > General and click the checkbox "launch Mobile Data System connection with Simulator Service.

  • HTTPS connection to the server using the connection

    Hello! It is a part of my code to connect to a secure server.

    However, it is not show me if the connection has been connected. Is there something wrong with my code?

    ' Public Sub validateUser (String usernamelogin, String passwordlogin) throws IOException {}

    HttpsConnection httpConn = null;
    String url = "https://myserverpage/login?";
    InputStream is = null;
    OutputStream os = null;
        
    Cookie string ="";
    Params string;
    params = 'name =' + usernamelogin;
    params += "& password =" + passwordlogin.replace (' ', '+');

    try {}
    Open an HTTPs connection object
    httpConn = (HttpsConnection) Connector.open (url + params);
    Setup HTTP POST request
    httpConn.setRequestMethod (HttpsConnection.POST);

    httpConn.setRequestProperty ("Cookie", cookie);
    httpConn.setRequestProperty ("Accept_Language", "en-US");
    Content-Type is essential to pass parameters in a POST request
    httpConn.setRequestProperty ("Content-Type", "application/x-www-formulaires-urlencoded");
          
          
          
    httpConn.setRequestProperty ("name", usernamelogin);
    httpConn.setRequestProperty ("password", passwordlogin);
          
    secure https
    If SecurityInfo = httpConn.getSecurityInfo ();
    Certificate c = si.getServerCertificate ();
    Object String = c.getSubject ();

    This function retrieves this connection information
    getConnectionInformation (httpConn);

    OS = httpConn.openOutputStream ();

    OS. Write (params. GetBytes());

    / * ATTENTION: os.flush () is controversial. It can create unexpected behavior
    on some mobile devices. Try it for your mobile device * /.

    OS. Flush();

    Read the response from the server

    StringBuffer sb = new StringBuffer();
    is = httpConn.openDataInputStream ();
    int chr;
    While ((chr = is.read (())! = - 1).
    SB. Append ((Char) chr);

    Web server returns only
    System.out.println (usernamelogin + "is connected" + sb.toString ());

    } {Finally
    If (is! = null)
    is. Close();
    If (OS! = null)
    OS. Close();
    If (httpConn! = null)
    httpConn.close ();
    }

    }

    The fact of this aid.

    http://supportforums.BlackBerry.com/T5/Java-development/implement-basic-HTTP-authentication/Ta-p/445...

  • Problems with HTTP connections in 7.0

    Hi all

    HTTP connections in my work of fine application with 5.0 and 6.0, but they do not work with 7.0.  Enough actually, they work with 7.0 when the device is connected with WiFi, but not with 3G (Sprint) mobile network.  Connections are also running smoothly on the Simulator.  When the application tries to perform an HTTP request, it seems to open the connection, but the connection hangs just until it expires in a minute later.

    I'm unable to debug applications with the SDK 6.0 and 7.0 in Eclipse.  The debug mode is always suspended my environment.

    Can someone speculate as to why this might be the case?  For added convenience, my code is below:

    public class HttpRequest extends Thread {
        private String method; // GET or POST
        private RequestResults screen;
        private String url;
        private Loader loader;
    
        public HttpRequest(String url, String method, RequestResults screen) {
            this.url = url;
            this.method = method;
            this.screen = screen;
        }
    
        private void connection() {
            // The following code will only build under JDE 4.5 and later
            ByteArrayOutputStream out = null;
            HttpConnection conn = null;
            InputStream in = null;
    
            try {
    
                conn = (HttpConnection) Connector.open(url
                        + ConnectionParams.getConnection());
                conn.setRequestMethod(method);
    
                int responseCode = conn.getResponseCode();
    
                // Check for both 200 AND 201
                if (responseCode != 200 && responseCode != 201) {
    
                    loader.stop();
    
                    Notify.inform(Constants.CONNECTION_LOST);
    
                    conn.close();
                    return;
                }
    
                out = new ByteArrayOutputStream();
    
                in = conn.openInputStream();
                byte[] buffer = new byte[20000];
                int bytesRead = 0;
                while ((bytesRead = in.read(buffer)) > 0) {
                    out.write(buffer, 0, bytesRead);
                }
    
                screen.requestSucceeded(new String(out.toByteArray()));
                loader.stop();
    
            } catch (IOException ex) {
                Notify.inform(Constants.CONNECTION_LOST);
                loader.stop();
            } finally {
                if (in != null) {
                    try {
                        in.close();
                    } catch (IOException e) {
                    }
                }
                if (out != null) {
                    try {
                        out.close();
                    } catch (IOException e) {
                    }
                }
                if (conn != null) {
                    try {
                        conn.close();
                    } catch (IOException e) {
                    }
                }
            }
    
        }
    
        public void run() {
    
            if (NetworkCheck.radioCheck() || NetworkCheck.wifiCheck()) {
    
                loader = LoaderStore.orderLoader();
                loader.start();
                connection();
    
            } else {
                Notify.inform(Constants.NETWORK_ERROR);
            }
    
        }
    
    public class ConnectionParams {
    
        /**
         * The getConnection() method will retrieve the available connection, and is
         * prioritized fastest to slowest connections.
         *
         * @return The connection parameters string to be appended to the HTTP
         *         connection
         */
        public static String getConnection() {
            String connectionParameters = "";
    
            if (WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED) {
                // Connected to a WiFi access point
                connectionParameters = ";ConnectionTimeout=10000;interface=wifi";
            } else {
                int coverageStatus = CoverageInfo.getCoverageStatus();
                ServiceRecord record = getWAP2ServiceRecord();
                if (record != null
                        && (coverageStatus & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT) {
                    // Have network coverage and a WAP 2.0 service book record
                    connectionParameters = ";ConnectionTimeout=10000;deviceside=true;ConnectionUID="
                            + record.getUid();
                } else if ((coverageStatus & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS) {
                    // Have an MDS service book and network coverage
                    connectionParameters = ";ConnectionTimeout=10000;deviceside=false";
                } else if ((coverageStatus & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT) {
                    // Have network coverage but no WAP 2.0 service book record
                    connectionParameters = ";ConnectionTimeout=10000;deviceside=true";
                }
            }
            return connectionParameters;
    
        }
    
        private static ServiceRecord getWAP2ServiceRecord() {
            ServiceBook sb = ServiceBook.getSB();
            ServiceRecord[] records = sb.getRecords();
    
            for (int i = 0; i < records.length; i++) {
                String cid = records[i].getCid().toLowerCase();
                String uid = records[i].getUid().toLowerCase();
                if (cid.indexOf("wptcp") != -1 && uid.indexOf("wifi") == -1
                        && uid.indexOf("mms") == -1) {
                    return records[i];
                }
            }
    
            return null;
        }
    }
    

    The culprit seems to be adding the line

    ConnectionUID = record.getUid ();

    for my URL when you set the connection settings:

    if (record != null && (coverageStatus & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT) {
    // Have network coverage and a WAP 2.0 service book record
        connectionParameters = ";ConnectionTimeout=10000;deviceside=true;ConnectionUID="
        + record.getUid();
    }
    

    Once I have remove this, it works fine...

  • Http connection hangup

    I use 4.5.7 JDE and the Simulator for the device of 8300.  I have code very similar to that of the API for opening an http connection and sends the data using the connection.  The code is below:

    Try
    {
    c = (HttpConnection) Connector.open (url);
               
    Define the headers and the request method
    c.setRequestMethod (HttpConnection.POST);
               
    Get the output stream may be empty headers
    OS = c.openOutputStream ();
    OS. Write ((pMessage + ""). getBytes());
    OS. Flush();           As an option, will be served getResponseCode

    Get the response code is open the connection,
    Send the request and read HTTP response headers.
    The headers are stored until asked.
    RC = c.getResponseCode ();
    If (rc! = HttpConnection.HTTP_OK) {}
    throw new IOException ("* HTTP response code:" + rc);
    }
    }

    I'm performing a few tests and it works very well if the server side, it connects to runs, but when I test what happens if the server must be down and then it crashes on the declaration of os.flush and I never regain control.  If I remove the flush that is optional, then it crashes on the getResponseCode statement.  How can I prevent hang on the flush, if the server should be down?

    Is there a way to check the viability of the connection before performing the flush?

    Thank you

    See this Article for more details:

    How - to control the timeout for TCP connections via BlackBerry Mobile data system connection Service
    Article number: DB-00526
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/How_To _...

  • DB stopped working with ORA-12514: TNS:listener is not currently of service requested in connect descriptor

    Hello

    I installed Oracle 4 months before and work perfectly fine on until now. I could not able to connect to any DB or URL http://127.0.0.1:8080/apex/f? p = 4950

    The connection failed with the below error

    ORA-12514: TNS:listener is not currently of service requested in connect descriptor

    Results of the LSNRCTL STATUS as below

    C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN > LSNRCTL STATUS

    LSNRCTL for 64-bit Windows: Version 11.2.0.2.0 - Production on 3 January 2016 12:43

    : 55

    Copyright (c) 1991, 2014, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC1)))

    STATUS of the LISTENER

    ------------------------

    Alias LISTENER

    TNSLSNR for Windows 64-bit version: Version 11.2.0.2.0 - Prod

    ction

    3 January 2016 start date 12:43:51

    Uptime 0 days 0 h 0 min 4S

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Default Service XE

    Listener parameter File C:\oraclexe\app\oracle\product\11.2.0\server\network\A

    DMIN\listener.ora

    Listener log file C:\oraclexe\app\oracle\diag\tnslsnr\RAJESHK-PANTAR\lis

    tener\alert\log. XML

    Summary of endpoints listening...

    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp) (HOST = localhost) (IN.

    RT = 1521)))

    Summary of services...

    Service 'CLRExtProc' has 1 instance (s).

    Instance of 'CLRExtProc', status UNKNOWN, has 1 operation for this service...

    Service 'PLSExtProc' has 1 instance (s).

    Instance of 'PLSExtProc', status UNKNOWN, has 1 operation for this service...

    The command completed successfully

    C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN > LSNRCTL SERVICE

    LSNRCTL for 64-bit Windows: Version 11.2.0.2.0 - Production on 3 January 2016 13:0

    : 08

    Copyright (c) 1991, 2014, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC1)))

    Summary of services...

    Service 'CLRExtProc' has 1 instance (s).

    Instance of 'CLRExtProc', status UNKNOWN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0

    LOCAL SERVER

    Service 'PLSExtProc' has 1 instance (s).

    Instance of 'PLSExtProc', status UNKNOWN, has 1 operation for this service...

    Managers:

    "DEDICATED" set up: 0 denied: 0

    LOCAL SERVER

    The command completed successfully

    Please help with what deliver you.

    1. control file backup to trace using the "alter database backup controlfile to trace as 'C:\control.bkp ';

    2. turn off your database

    3 startup nomount

    4. create controlfile from the backup created controlfile command. For example. See below (it is extracted from the trace my database controlfile. RESETLOGS option use as in 1st line

    CREATE CONTROLFILE REUSE DATABASE "WIN1DB" RESETLOGS  NOARCHIVELOG
        MAXLOGFILES 16
        MAXLOGMEMBERS 3
        MAXDATAFILES 100
        MAXINSTANCES 8
        MAXLOGHISTORY 292
    LOGFILE
      GROUP 1 'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\REDO01.LOG'  SIZE 50M BLOCKSIZE 512,
      GROUP 2 'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\REDO02.LOG'  SIZE 50M BLOCKSIZE 512,
      GROUP 3 'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\REDO03.LOG'  SIZE 50M BLOCKSIZE 512
    -- STANDBY LOGFILE
    DATAFILE
      'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\SYSTEM01.DBF',
      'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\SYSAUX01.DBF',
      'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\UNDOTBS01.DBF',
      'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\USERS01.DBF',
      'C:\ORACLE\PRODUCT\ORADATA\WIN1DB\WIN1DB\EXAMPLE01.DBF'
    CHARACTER SET WE8MSWIN1252
    ;
    

    5 mount the database 'edit the editing of the database'

    6 open the database using newspapers to reset "alter database open resetlogs.

    Thank you!

  • in error place vCloud Director TNS:listener is not currently of service requested in connect

    I thought I would start my own thread on this...

    I have trashed my original oracle installation - and did it again. But have the same problem...

    I installed oracle just accept all the default values. So, things like the name of the oracle is orcl and so on...

    I also followed to the letter the instructions in the installation and here - guide http://KB.VMware.com/selfservice/microsites/search.do?language=en_US & cmd = displayKC & externalId = 1025768 which are substantially the same.

    Here's what I entered the configuration of configuration vCloud Director:

    Enter the host (or IP address) to the database: orcl10g.corp.com

    Enter the port of database :

    Using the default "1521" for the port.

    Enter the name of the service of database :

    Using the default "orcl" database service name.

    Enter the database user name: vclouduser

    Enter the database password:

    Connection to the database: jdbc:oracle:thin:@orcl10g.corp.com:1521/orcl

    And that's what pays my log file...

    VMware Cloud Director 1.0.0.285979 Greenwich Mean Time

    2010-09-21 21:08:53, 891 | DEBUG | main                      | ConfigAgent | VCLOUD_HOME is/opt/vmware/cloud-director |

    2010-09-21 21:08:53, 893 | DEBUG | main                      | ConfigAgent | SQL files will be read from/opt/vmware/cloud-director/db |

    2010-09-21 21:08:53, 893 | DEBUG | main                      | ConfigAgent | Using the default properties file. |

    2010-09-21 21:08:53, 893 | DEBUG | main                      | ConfigAgent | Properties file is /opt/vmware/cloud-director/etc/global.properties.

    2010-09-21 21:08:53, 893 | INFO | main                      | ConfigAgent | Reading the replies of the file: /opt/vmware/cloud-director/etc/responses.properties.

    2010-09-21 21:08:53, 894 | INFO | main                      | ConfigAgent | Playback of the file configuration: /opt/vmware/cloud-director/etc/global.properties |

    2010-09-21 21:08:53, 895 | INFO | main                      | ConfigAgent | Version of the system = 2 |

    2010-09-21 21:08:54, 880 | DEBUG | main                      | EncryptionManager | EncryptionManager configured with the system key. |

    2010-09-21 21:08:54, 882. DEBUG | main                      | EncryptionManager | EncryptionManager has been loaded successfully. |

    2010-09-21 21:10:25, 203 | DEBUG | main                      | PooledConnection | Unable to connect to the database. |

    java.sql.SQLException: listener refused the connection with the following error:

    ORA-12514, TNS:listener is not currently of service requested in connect descriptor

    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:412)

    to oracle.jdbc.driver.PhysicalConnection. (Oracle.java:41)

    at com.vmware.vcloud.configure.Db.getInstance(Db.java:167)

    at com.vmware.vcloud.configure.ConfigAgent.getDb(ConfigAgent.java:1771)

    at com.vmware.vcloud.configure.ConfigAgent.configureDatabaseCredentials(ConfigAgent.java:1723)

    at com.vmware.vcloud.configure.ConfigAgent.configureDatabase(ConfigAgent.java:1663)

    at com.vmware.vcloud.configure.ConfigAgent.start(ConfigAgent.java:425)

    at com.vmware.vcloud.configure.ConfigAgent.main(ConfigAgent.java:320)

    Caused by: oracle.net.ns.NetException: listener refused the connection with the following error:

    ORA-12514, TNS:listener is not currently of service requested in connect descriptor

    at oracle.net.ns.NSProtocol.connect(NSProtocol.java:385)

    at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1042)

    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:301)

    ... more than 20

    2010-09-21 21:10:25, 205 | DEBUG | main                      | ConnectionPool. Cannot create a new JDBC connection. |

    java.sql.SQLException: listener refused the connection with the following error:

    ORA-12514, TNS:listener is not currently of service requested in connect descriptor

    I would be very grateful if someone could help me with that. I tried to install the product for 3 days and do not get very far...



    Concerning

    Mike Landry

    RTFM education

    http://www.RTFM-ed.co.UK

    Author of the book of MRS: http://www.RTFM-ed.co.UK/2010/03/22/new-administrating-VMware-site-recovery-Manager-4-0/

    Free PDF or printed at price

    http://communities.vmware.com/servlet/JiveServlet/download/1200101-20223/vExpert_logo_100x57.jpg

    Thanks Mike, happy that I was able to help.

  • I get an error pop-up that says that Web page contains content that is not delivered using a secure HTTPS connection. What does that mean?

    I get an error pop-up that says that Web page contains content that is not delivered using a secure HTTPS connection, but likely to compromise the security of the entire webpage, whatever that means

    In "BOLD" on the very top of the ther security warning she also ask you want to view only the webpage content that was delivered safely?

    original title: HTTPS connection issues

    You are using Internet Explorer 8?

    This article describes the causes of this message and how you can remove:

    http://blogs.msdn.com/b/ieinternals/archive/2009/06/22/HTTPS-mixed-content-in-IE8.aspx

    Information on the changes in Internet Explorer 9 is available here:

    http://blogs.msdn.com/b/ie/archive/2011/06/23/Internet-Explorer-9-security-part-4-protecting-consumers-from-malicious-mixed-content.aspx

  • How can I configure computer mi to ACCEP https connection

    How can I configure computer mi to ACCEP https connection

    original title: my device does not accept the connection of the https port, I have Windows vista

    Hi, Rosariopenaranda,

    Do you get any error Messages?

    Tools > Internet Options > Advanced tab

    Scroll down to the Section navigation

    Uncheck Show friendly https error messages

    Click on apply, Ok

    Tools > Internet Options > Connections tab

    Click the Lan settings button

    Check automatically detect settings

    Click Ok, apply, Ok

    Change proxy settings in Internet Explorer

    http://Windows.Microsoft.com/en-us/Windows-Vista/change-proxy-settings-in-Internet-Explorer

    HOW to: Use Wfetch.exe to troubleshoot HTTP connections

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

  • "Do you want to view only the webpage content that was delivered safely. "the Web page content that willl be sent using a secure HTTPS connection, which could jeopardize the securityof the entire Web page.

    Original title: SECURITY WARNING

    When I try to open a program I have getthis message:

    "Do you want to view only the webpage content that was delivered safely.

    "the Web page content that willl be sent using a secure HTTPS connection, which could jeopardize the securityof the entire Web page.

    Is this something that needs to be corrected?  If yes how.

    Hi billkabay,

    (1) program which you are referring?

    (2) is the problem confined to this specific programme?

    (3) since when are you facing this problem?

    This problem normally occurs when you open Web pages in internet explore. Please specify if this happens when you open a program or opening a Web page or link in internet explore.

    You can see the steps in the link below

    https://community.dynamics.com/product/crm/crmtechnical/b/crminogic/archive/2009/07/09/how-to-disable-the-34-do-you-want-to-view-only-the-webpages-content-that-was-delivered-securely-63-popup-for-custom-pages-added-to-crm.aspx

    Also see the steps by Vincenzo Di Russo (check the post Saturday, May 30, 2009 11:36) in the link below.

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/e7526a5f-F953-4235-90c3-004f9b973585

    Thanks and greetings

    Ajay K

    Microsoft Answers Support Engineer
    ***************************************************************************
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • http connections fail after removing an application via the BES

    This is consistent - happened on three different phones.

    Measures taken since the BES

    1 deploy an application that uses an HTTP (definition of a custom policy of IT) through the BES connection. Everything works fine

    2 remove the app (by its configuration was rejected.)

    3. assign the policy to the default device

    4 configuration of the software place the device no

    5 deploy

    5. wait and check that app has been removed from the default value of advertising device it in place policy

    Now, the unit measures

    1. install the app even through Javaloader - now http connections fails

    On the curve (Rogers)

    java.io.IOException: Tunnel failed

    on Tour (Verizon)

    javax.microedition.io.ConnectionNotFoundException: Protocol not found: net.rim.device.cldc.io. "http. Protocol

    Any ideas?

    Turns out I had put extra quotes in my url string. It works fine now.

    This diagnostic network (DB-00684) tool was very useful.

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

  • HTTP connection limit

    Hello guys '

    My application creates the HTTP connection. I want to increase the speed of downloading content to the web server. Content consistes of many unit data. In other words, I need to download 100 unit datas. Now, I use the connection of one for downloading this content (100 unit datas). Its download speed is too slow. I want to be fast.

    So, I think that a lot of connections can increase the speed of downloading data.

    How many connections for a single application to MAX?

    You have another way to increase download speed?

    Please share knowledge with me guys.

    TNX'

    I recently did some tests for a real-time application here performance.  Essentially on a GSM GPRS (all we have in the United Kingdom) network without EDGE, I could get about 1 K per second.  So with a single connection you should get your lot down in less than 20 seconds.

    As I said, I don't think that multiple connections will help you because:

    (a) I believe that there is only a single underlying communication method and therefore any package that you use for a connection, it is stealing this package to another connection

    (b) I suspect that there is a significant amount of overhead, establishing the connection and latency that involves.

    Please let us know how it goes...

  • Hangs on the creation of HTTP connection

    Sometimes to create a connection HTTP crashes (using HTTPConnectionFactory or ConnectionFactory).  This occurs after a number of HTTP connections have been created, used and closed.

    Once again, I have a blockage, if I wait a bit, while I am able to create connections again successfully.

    If I hold down the button end call to suspend the phone in low power mode, it will also address the issue.  When I turn it back on and restart the app, it works.  But if I just restart the application, it won't work.

    I found the problem.  You must call close on the connection, not only the input and output stream.

  • Progress until you get http connection data dialog box?

    Hello

    Can someone help me with the progress dialog box until I get the Http connection data?

    I tried using Status.show but how will disappear once I have given. Once I have the data I want to update the user interface. I think it should be the combination of Thread and UiApplication.getApplication.invokelater, but if someone can guide me in the right direction, then it will be a great help.

    Concerning

    Sunil

    Check http://supportforums.blackberry.com/t5/Java-Development/Sample-quot-Please-Wait-quot-screen-part-1/t...

Maybe you are looking for

  • Satellite L300 - clean install Win 7 SP1 64 bit

    I just did a clean install of Windows 7 64-bit, replacing the normal 32-bit Vista that comes with the laptop. The facility has been good, but I have a few questions about the following: I adjusted the automatic run settings to ask every time for all

  • DeskJet 3052 has

    Print very slowly. Have reinstalled without change. Link on the forum describing the solution is broken. Thank you.

  • I don't remember my restriction code

    I don't remember my restriction code iPhone, how to get it back without restoring my iPhone? I loved led responses already, but they all say that I have to restore my phone to factory settings. I don't want to do that because it uses a bit of data. P

  • draw the line in graph (picture) xy

    Hi all I place an image in xy graph that I allow to annotate some of the indicators. After I put the flag in a place in xy graph (picture) I want to draw lines between indicators. can someone help me with this? I'm using LABVIEW 8.2.1 Sorry for my En

  • Format the hard drive of a Pavilion nc5310

    Please explain how to format the hard drive of a pavilion of nc5310 in order to install a very light distribution of Linus. I couldn't find anything in a search of the internet. Thank you.