Results 1 to 2 of 2

Thread: QWebView + HTTPS with certificate example

  1. #1
    Join Date
    Dec 2009
    Posts
    1
    Qt products
    Platforms
    Unix/X11

    Default QWebView + HTTPS with certificate example

    hello people,
    I'm trying to use this my simple example to access pages that have SSL enabled with certificate
    can someone help me, a simple code example of this below:

    Qt Code:
    1. import sys
    2. import PyQt4
    3. import time
    4. from PyQt4 import QtCore, QtGui
    5. from PyQt4 import uic
    6. from PyQt4.QtCore import *
    7. from PyQt4.QtGui import *
    8. from PyQt4.QtWebKit import *
    9. from PyQt4.QtNetwork import *
    10. import urllib2, re
    11.  
    12. app = QApplication(sys.argv)
    13.  
    14. web = QWebView()
    15.  
    16. url = 'https://edit.qt.troll.no/'
    17.  
    18. web.load(QUrl(url))
    19. web.show()
    20. sys.exit(app.exec_())
    To copy to clipboard, switch view to plain text mode 

  2. #2
    Join Date
    Mar 2011
    Posts
    3
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: QWebView + HTTPS with certificate example

    did you fix this issue???

Similar Threads

  1. QWebView too slow
    By URPradhan in forum Qt Programming
    Replies: 9
    Last Post: 23rd March 2012, 11:13
  2. Replies: 3
    Last Post: 20th April 2010, 16:49
  3. Problem With QWebView
    By ivi2501 in forum Qt Programming
    Replies: 8
    Last Post: 2nd August 2009, 19:37
  4. QWebView transparent problem
    By embedyy in forum Qt Programming
    Replies: 4
    Last Post: 16th January 2009, 06:20
  5. QWebView - retrieving information?
    By lamera in forum Qt Programming
    Replies: 1
    Last Post: 25th September 2008, 17:53

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.