Client WAP Stack Activex Component

Total Page:16

File Type:pdf, Size:1020Kb

Client WAP Stack Activex Component Winwap Technologies Oy Client WAP Stack ActiveX component Application Programming Interface WAP stack version 2.6 WAP specification version: 2.0 Document dated: 06-Jan-2006 WAP Stack ActiveX http://www.winwap.com Notice of Confidentiality This document contains proprietary and confidential information that belongs to Winwap Technolo- gies Oy. The recipient agrees to maintain this information in confidence and to not reproduce or otherwise disclose this information to any person outside of the group directly responsible for the evaluation of the content. Revision history Date Author Description 06-Jan-2006 S Markelov Initial version of the WAP Stack ActiveX API specification. Preamble The reader of this document should be familiar with all or some of the following in order to fully understand and evaluate the information in this document: • Basic knowledge in programming techniques. • Basic understanding of networking connections and client/server architecture where user- agents retrieve and render information (e.g. Internet browsers and servers with services). • The interaction between a WAP user-agent, a WAP Gateway and a WEB Server. • Basic knowledge in ActiveX technique. c Winwap Technologies Oy 1 WAP Stack ActiveX http://www.winwap.com Contents 1 Normative references2 2 Getting started3 2.1 What is the WAP Stack ActiveX?...........................3 2.2 System requirements..................................4 2.3 Installation.......................................5 2.4 Simple program for Microsoft Visual Basic 6.0....................6 2.5 Simple program for Microsoft Visual C++ 6.0....................8 2.6 Simple program for Microsoft .NET/C#....................... 12 2.7 Simple program for Borland Delphi 7.0........................ 14 3 API specification 16 3.1 Declarations...................................... 16 3.2 Session establishing.................................. 17 3.2.1 Properties................................... 17 3.2.2 Methods.................................... 21 3.2.3 Events..................................... 23 3.3 Requesting....................................... 24 3.3.1 Methods.................................... 24 3.3.2 Events..................................... 27 3.4 WAP specific events.................................. 31 3.5 Tuning......................................... 33 3.5.1 Properties................................... 33 3.5.2 Methods.................................... 40 3.6 Diagnostic....................................... 42 3.6.1 Last error code................................. 42 3.6.2 Logging.................................... 43 A Appendix 44 A.1 List of error codes................................... 44 A.2 List of server certificate validation codes....................... 45 1 Normative references RFC-2616 “Hypertext Transfer Protocol – HTTP/1.1”, ftp://ftp.isi.edu/in-notes/rfc2616.txt. WP-HTTP “Wireless Profiled HTTP”, http://www.openmobilealliance.org/. WSP “Wireless Session Protocol”, http://www.openmobilealliance.org/. WTLS “Wireless Transport Layer Security Protocol”, http://www.openmobilealliance.org/. WTP “Wireless Transaction Protocol Specification”, http://www.openmobilealliance.org/. c Winwap Technologies Oy 2 WAP Stack ActiveX http://www.winwap.com 2 Getting started 2.1 What is the WAP Stack ActiveX? The WAP Stack ActiveX is an ActiveX component based on the WAP Stack SDK, the complete library for using WAP connections. The WAP Stack ActiveX provides both WSP/WTP (WAP Gateway) and WP-HTTP (direct and HTTP proxy) connections, and is quickly implemented into your own software application. By using the WAP Stack ActiveX from your own application you get full WAP connection function- ality from within your own software. An extensive set of methods, functions and events provides full control over the WAP connections so you can build your own browser, testing, measuring or assurance applications. It is a quick and simple process to begin using the WAP Stack ActiveX. The WAP Stack ActiveX comes with source code samples and API documentation that show exactly how to use it so that you can get quickly started even without having much knowledge about WAP. You can create a wide array of tools for automatically or manually opening WAP connections and retrieving data. All features are well documented and the methods, functions and events are easy to use. c Winwap Technologies Oy 3 WAP Stack ActiveX http://www.winwap.com 2.2 System requirements • OS Microsoft Windows 98/ME, Microsoft Windows NT 4/2000, Microsoft Windows XP/2003. • Microsoft CAPICOM 2.0 or later — COM interface to Microsoft CryptoAPI. It is a new security technology from Microsoft that allows Microsoft Visual Basic, Visual Basic Script, ASP, and C++ programmers to easily incorporate digital signing and encryption into their application. CAPICOM is available today for download from the MSDN Web site. CAPICOM is deliv- ered with the Platform SDK and is redistributable free of charge. The CAPICOM can be downloaded from the following URL: http://www.microsoft.com/msdownload/platformsdk/setuplauncher.asp To register CAPICOM.dll, at the command prompt, change directories to the directory where CAPICOM.dll is stored, and enter the command: regsvr32 CAPICOM.dll. • For both CAPICOM 1.0 and CAPICOM 2.0, Microsoft Internet Explorer 5 or later is required. • OpenSSL libraries — the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. The OpenSSL libraries can be download as an installation package from the following official OpenSSL site: http://www.openssl.org/ If the OpenSSL libraries are not installed in the system, the HTTPS protocol will not be available. c Winwap Technologies Oy 4 WAP Stack ActiveX http://www.winwap.com 2.3 Installation Simply run the installation program setup.exe and follow the installation procedure. It will copy needed files and register the WAP Stack ActiveX type library in the system. c Winwap Technologies Oy 5 WAP Stack ActiveX http://www.winwap.com 2.4 Simple program for Microsoft Visual Basic 6.0 1. Run the Microsoft Visual Basic 6.0 and create new “Standard EXE” project. 2. Add the WAP Stack ActiveX component into the project: select the menu command Project j Components, find the item “WPSClient 1.0 Type Library” in the list of the available ActiveX controls and click on the check box, press the “OK” button. The component shall appear on the Toolbox. 3. Select the WAP Stack ActiveX component on the Toolbox and place it on the form. 4. Place three labels, four text boxes, one button and change its names and captions as it shown in the Fig.1 on this page. Figure 1: Visual Basic form designer 5. Add the next event handlers for events “Connect”, “Reply” of the object WPS_Client1 and for event “Click” of the button CommandGo!: Private Sub CommandGo_Click() ’ Clear previous output TextResult.Text = "" ’ Set connection/session type WPS_Client1.Mode = WPS_MODE_HTTP ’ Set proxy settings WPS_Client1.ProxyAddress = TextProxyAddress.Text WPS_Client1.ProxyPort = TextProxyPort.Text Call WPS_Client1.Connect("") End Sub Private Sub WPS_Client1_Connect( _ ByVal code As WPSClientCtl.TxWPS_ConnectCode, _ ByVal description As String) c Winwap Technologies Oy 6 WAP Stack ActiveX http://www.winwap.com TextResult = "Connected" & Chr(13) & Chr(10) ’ Load resource Call WPS_Client1.Get(TextURL.Text, "Accept: text/vnd.wap.wml") End Sub Private Sub WPS_Client1_Reply(ByVal hRequest As Long, _ ByVal data As Variant, ByVal contentType As String,_ ByVal Headers As String, ByVal status As Long) TextResult.Text = TextResult.Text & _ "Received data is of content type " & _ contentType & Chr(13) & Chr(10) & Chr(13) & Chr(10) TextResult.Text = TextResult.Text & data End Sub 6. Run the application, input proxy settings if it is needed and press the button “Go!”. In the “TextResult” text box you should see the received data as in the Fig.2 on the current page. Figure 2: Result output in the Visual Basic application c Winwap Technologies Oy 7 WAP Stack ActiveX http://www.winwap.com 2.5 Simple program for Microsoft Visual C++ 6.0 1. Run the Microsoft Visual C++ and create in the MFC Application wizard new dialog based application with the name “vc”. 2. Add the WAP Stack ActiveX component into the project. Select the menu command Project j Add To Project j Components and Controls. Choose the “Registered ActiveX Controls” folder, find the item “WPSClient Class” in the list of the available ActiveX controls, press the“Insert” and two times “OK” buttons. The component shall appear on the “Controls” toolbox. Then press the “Close” button to close the “Components and Controls Gallery” dialog. 3. Select the WAP Stack ActiveX component on the “Controls” toolbox and place it on the dialog. 4. Place three static texts, four edit boxes, one button and change its identifiers, captions ans styles as it shown in the Fig.3 on this page. Figure 3: Visual C++ dialog designer 5. Open the MFC ClassWizard (Ctrl+W) and associate the controls with the variables as shown in the Fig.4 on the next page. 6. Initialize the proxy port and default URL in the dialog constructor: m_proxy_port = _T("3128"); m_url = _T("http://wap.winwap.com/"); 7. Add the next event handlers for the message BN_CLICKED of the button m_gofor and for events “Connect”, “Reply” of the object m_wps_client: void CVcDlg::OnGo() { const int WPS_MODE_HTTP = 10; const int WPS_STATE_NULL = 0; c Winwap Technologies Oy 8 WAP Stack ActiveX http://www.winwap.com Figure 4: Visual C++ MFC ClassWizard
Recommended publications
  • Cisco Subscriber Edge Services Manager Web Developer Guide SESM Release 3.1(9) April 2003
    Cisco Subscriber Edge Services Manager Web Developer Guide SESM Release 3.1(9) April 2003 Corporate Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 526-4100 Text Part Number: OL-2068-03 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL ARE BELIEVED TO BE ACCURATE BUT ARE PRESENTED WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED. USERS MUST TAKE FULL RESPONSIBILITY FOR THEIR APPLICATION OF ANY PRODUCTS. THE SOFTWARE LICENSE AND LIMITED WARRANTY FOR THE ACCOMPANYING PRODUCT ARE SET FORTH IN THE INFORMATION PACKET THAT SHIPPED WITH THE PRODUCT AND ARE INCORPORATED HEREIN BY THIS REFERENCE. IF YOU ARE UNABLE TO LOCATE THE SOFTWARE LICENSE OR LIMITED WARRANTY, CONTACT YOUR CISCO REPRESENTATIVE FOR A COPY. The Cisco implementation of TCP header compression is an adaptation of a program developed by the University of California, Berkeley (UCB) as part of UCB’s public domain version of the UNIX operating system. All rights reserved. Copyright © 1981, Regents of the University of California. NOTWITHSTANDING ANY OTHER WARRANTY HEREIN, ALL DOCUMENT FILES AND SOFTWARE OF THESE SUPPLIERS ARE PROVIDED “AS IS” WITH ALL FAULTS. CISCO AND THE ABOVE-NAMED SUPPLIERS DISCLAIM ALL WARRANTIES, EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THOSE OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OR ARISING FROM A COURSE OF DEALING, USAGE, OR TRADE PRACTICE. IN NO EVENT SHALL CISCO OR ITS SUPPLIERS BE LIABLE FOR ANY INDIRECT, SPECIAL, CONSEQUENTIAL, OR INCIDENTAL DAMAGES, INCLUDING, WITHOUT LIMITATION, LOST PROFITS OR LOSS OR DAMAGE TO DATA ARISING OUT OF THE USE OR INABILITY TO USE THIS MANUAL, EVEN IF CISCO OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
    [Show full text]
  • Servicio Fitosanitario Del Estado Risk Advisory
    Servicio Fitosanitario del Estado Risk Advisory Informe de Control Interno “Resultados del estudio de auditoría relativo a la evaluación del sistema de control interno en materia de tecnologías de la información, implementado para cumplir con lo dispuesto en el Decreto Ejecutivo N.° 37549-JP (Reglamento para la Protección de los Programas de Cómputo en los Ministerios e Instituciones adscritas al Gobierno Central)” Ref.: N° AI-SFE-SA-INF-005-2016 00 Servicio Fitosanitario del Estado | Tabla de contenido Tabla de contenido Tabla de contenido 1 Resumen ejecutivo 3 Introducción 4 Resultados del estado de los inventarios y del licenciamiento 14 Seguimiento al informe AI-SFE-SA-INF-005- 2015 34 Resultados - Hallazgos 36 Anexos 61 01 Servicio Fitosanitario del Estado | TablaInforme de decontenido Control Interno “Resultados del estudio de auditoría relativo a la evaluación del sistema de control interno en materia de tecnologías de la información, implementado para cumplir con lo dispuesto en el Decreto Ejecutivo N. 37549-JP (Reglamento Informe de Control Interno “Resultados del estudio de auditoría relativo a la evaluación del sistema de control interno en materia de tecnologías de la información, implementado para cumplir con lo dispuesto en el Decreto Ejecutivo N.° 37549-JP (Reglamento para la Protección de los Programas de Cómputo en los Ministerios e Instituciones adscritas al Gobierno Central)” 02 Servicio Fitosanitario del Estado | Resumen ejecutivo Resumen ejecutivo Objetivo El presente estudio de auditoría relacionado con la “Evaluación del sistema de control interno en materia de tecnologías de la información, implementado para cumplir con lo dispuesto en el Decreto Ejecutivo N.° 37549-JP (Reglamento para la Protección de los Programas de Cómputo en los Ministerios e Instituciones Adscritas al Gobierno Central)”, se llevó a cabo en atención al Plan Anual de Labores (2016) de la Auditoría Interna del Servicio Fitosanitario del Estado (SFE).
    [Show full text]
  • Middleware in Action 2007
    Technology Assessment from Ken North Computing, LLC Middleware in Action Industrial Strength Data Access May 2007 Middleware in Action: Industrial Strength Data Access Table of Contents 1.0 Introduction ............................................................................................................. 2 Mature Technology .........................................................................................................3 Scalability, Interoperability, High Availability ...................................................................5 Components, XML and Services-Oriented Architecture..................................................6 Best-of-Breed Middleware...............................................................................................7 Pay Now or Pay Later .....................................................................................................7 2.0 Architectures for Distributed Computing.................................................................. 8 2.1 Leveraging Infrastructure ........................................................................................ 8 2.2 Multi-Tier, N-Tier Architecture ................................................................................. 9 2.3 Persistence, Client-Server Databases, Distributed Data ....................................... 10 Client-Server SQL Processing ......................................................................................10 Client Libraries ..............................................................................................................
    [Show full text]
  • Opera Software the Best Browsing Experience on Any Device
    Opera Software The best browsing experience on any device The best Internet experience on any device Web Standards for the Future – Bruce Lawson, Opera.com • Web Evangelist, Opera • Tech lead, Law Society & Solicitors Regulation Authority (2004-8) • Author 2 books on Web Standards, edited 2 • Committee member for British Standards Institution (BSI) for the new standard for accessible websites • Member of Web Standards Project: Accessibility Task Force • Member of W3C Mobile Best Practices Working Group Web Standards for the Future – Bruce Lawson, Opera.com B.A., Honours English Literature and Language with Drama Theresa is blind But she can use the Web if made with standards The big picture WWW The big picture Western Western Web A web (pre)history • 1989 TBL proposes a project • 1992 <img> in Mosaic beta. Now 99.57% (MAMA) • 1994 W3C started at MIT • 1996 The Browser Wars • 1999 WAP, Web Content Accessibility Guidelines (WCAG) • 2000 Flash Modern web history • 2000-ish .com Crash - Time to grow up... • 2002 Opera Mobile with Small Screen Rendering • 2005 WHAT-WG founded, W3C Mobile Web Initiative starts • 2007 W3C adopts WHAT-WG spec as basis for HTML 5 • January 22, 2008 First public working draft of HTML 5 Standards at Opera • 25 employees work on standards • Mostly at W3C - a big player • Working on many standards • Bringing new work to W3C • Implementing Standards properly (us and you!) (Web Standards Curriculum www.opera.com/wsc) Why standards? The Web works everywhere - The Web is the platform • Good standards help developers: validate; separate content and presentation - means specialisation and maintainability.
    [Show full text]
  • HTTP Cookie - Wikipedia, the Free Encyclopedia 14/05/2014
    HTTP cookie - Wikipedia, the free encyclopedia 14/05/2014 Create account Log in Article Talk Read Edit View history Search HTTP cookie From Wikipedia, the free encyclopedia Navigation A cookie, also known as an HTTP cookie, web cookie, or browser HTTP Main page cookie, is a small piece of data sent from a website and stored in a Persistence · Compression · HTTPS · Contents user's web browser while the user is browsing that website. Every time Request methods Featured content the user loads the website, the browser sends the cookie back to the OPTIONS · GET · HEAD · POST · PUT · Current events server to notify the website of the user's previous activity.[1] Cookies DELETE · TRACE · CONNECT · PATCH · Random article Donate to Wikipedia were designed to be a reliable mechanism for websites to remember Header fields Wikimedia Shop stateful information (such as items in a shopping cart) or to record the Cookie · ETag · Location · HTTP referer · DNT user's browsing activity (including clicking particular buttons, logging in, · X-Forwarded-For · Interaction or recording which pages were visited by the user as far back as months Status codes or years ago). 301 Moved Permanently · 302 Found · Help 303 See Other · 403 Forbidden · About Wikipedia Although cookies cannot carry viruses, and cannot install malware on 404 Not Found · [2] Community portal the host computer, tracking cookies and especially third-party v · t · e · Recent changes tracking cookies are commonly used as ways to compile long-term Contact page records of individuals' browsing histories—a potential privacy concern that prompted European[3] and U.S.
    [Show full text]
  • Hello WAP! Johan Montelius
    Hello WAP! Johan Montelius Introduction In this laboration you will create a simple WAP site using WML. 1 Before the session Before attending the session you should have accessed your home directory and created a directory called 2g1722 under your public html directory. Make sure that the directory is readable by the web-server. In this directory you should add a document called index.wml with the following content: <?xml version="1.0" ?> <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd"> <wml> <card> <p>2G1722</p> </card> </wml> Before the session you should send me an email with your name and the url to the page. 2 Getting started As a reference to WML you should use the WML specifications found in the WAP-191-WML document from the WAP Forum. There are more easy to read tutorials and more accessible reference material but reading the definition from the source will help you to understand and navigate WAP Forum and OMA standards. In order to proceed you will need a text editor and a WML capable browser. I’m using Emacs and Opera but you can of course use any system you like. The WinWAP emulator is one popular choice but you will also find emulators from the different phone manufacturer. If you’re using Firefox, there is an add-on that renders WML. The WML pages that you will create can either be accessed as local files on your computer or over a web server that has access to the pages.
    [Show full text]
  • TYPO3-Tsref-4.7.Pdf
    TypoScript Reference Extension Key: doc_core_tsref Language: en Version: 4.7.0 Keywords: forAdmins, forIntermediates o!yrig"t 2000-201#, Documentation Team, <documentation)typo*.org+ '"is document is publis"ed under t"e Open Content License a/ailable from http:/0www.opencontent.org0opl.s"tm- '"e content of t"is document is related to T12.* - a G45032L C6708ramework a/ailable from www.typo*.org Official documentation This document is included as part of the ofcial TYPO3 documentation. It has been approved by the TYPO3 Documentation Team following a peer review process. The reader should expect the information in this document to be accurate - please report discrepancies to the Documentation Team "documentation#typo3.org$. Ofcial documents are kept up-to date to the best of the Documentation Team&s abilities. Core Manual This document is a Core Manual. Core Manuals address the built in functionality of TYPO3 and are designed to provide the reader with in depth information. Each Core Manual addresses a particular process or function and how it is implemented within the TYPO3 source code. These may include information on available APIs+ speci,c con,guration options+ etc. Core Manuals are written as reference manuals. The reader should rely on the Table of Contents to identify what particular section will best address the task at hand. 'y!oScri!t Reference - doc_core_tsref 'y!oScri!t Reference Table of Contents TypoScript Reference..............................1 B6E45..........................................................................
    [Show full text]
  • PB029 Elektronická Príprava Dokumentu
    “Anyone who would letterspace the lowercase would steal sheep.” Frederick Goudy (1894–1945) “You cannot not communicate” Paul Watzlawick (1921– ) Lidé komunikují prostřednictvím dokumentů připravovaných elektronicky yA| PB029 Elektronická příprava dokumentů Fakulta informatiky MU, Brno Draft PB029 Elektronická příprava dokumentů Petr Sojka Fakulta informatiky MU, Brno podzim 2012 yA| PB029 Elektronická příprava dokumentů Fakulta informatiky MU, Brno Draft Osnova dnešní přednášky Agenda (úkoly do cvičení, prémiové úkoly, Bienále, bakalářské, diplomové či doktorské práce,. ). Á XML? XML! Â Aplikace SGML: HTML, XHTML, WML. Ã ISO/IEC 10646, Unicode. Ä Formáty a normy související s XML (XLink, XPointer, RDF, XTM). AJAX. DOM. Å Návrh/design (webový): úvod. Æ Webový design prakticky 27. 10. 2012 (Martin Kacvinský). yA| PB029 Elektronická příprava dokumentů Fakulta informatiky MU, Brno Draft SGML – validace a parsing + Validace. Parsery. SP a sgmls/nsgmls Jamese Clarka. + Výstup parseru: Element Structure Information Set (ESIS) formát. + Ukázky validace, chyb, ladění, ESIS. + Třídy dokumentů. CATALOG. /packages/share/sgml-catalogs/ + Další příklady DTD – informace o studijním předmětu. O yA| PB029 Elektronická příprava dokumentů Fakulta informatiky MU, Brno Draft Vytváření značkovaných dokumentů + Běžný ascii editor (emacs, joe nebo i notepad). + PSGML mód emacsu: příklad stránky předmětu. + Komerční systémy: Arbortext (Epic), SoftQuad, Corel XMetal . + (X)HTML svět: Mozilla/Firefox, MSIE, Amaya, HomeSite, Netscape, FrontPage, . yA| PB029 Elektronická
    [Show full text]
  • Microsoft Windows Server 2008 PKI and Deploying the Ncipher Hardware Security Module
    This is a joint nCipher and IdentIT authored whitepaper Microsoft Windows Server 2008 PKI and Deploying the nCipher Hardware Security Module Abstract This paper discusses the benefits that are unique to deploying the integrated solution of the Windows Server 2008 PKI and the nCipher nShield and netHSM hardware security modules (HSM). This includes the essential concepts and technologies used to deploy a PKI and the best practice security and life cycle key management features provided by nCipher HSMs.. MicrosofT WIndoWs server 2008 PKI and dePloyIng The nCipher hardWare seCurity Module Introduction...............................................................................................................................................................................................3 PKI – A Crucial Component to Securing e-commerce ......................................................................................................................4 Microsoft Windows Server 2008 ...............................................................................................................................................................4 nCipher Hardware Security Modules ......................................................................................................................................................4 Best.Practice.Security.–.nCipher.HSMs.with.Windows.Server.2008.PKI................................................................................5 Overview...............................................................................................................................................................................................................5
    [Show full text]
  • Descargar Y Compilar Gambas, ¡ Lea CUIDADOSAMENTE Las Usted Debe Tener Privilegios Para Escribir El Siguientes Recomendaciones !
    Tercera edición digital de MYGNET-MAGAZINE Enero 2006 Les deseamos que este año se para todos de muchas oportunidades y que se cumplan todos nuestros sueños y propósitos. También queremos reconocer el excelente trabajo de los colaboradores que han brindado los contenidos de este número, así pues agradecemos el enorme apoyo que hemos recibido de parte de todos los colaboradores como lectores. Es muy alentador recibir sus comentarios y opiniones para continuar este esfuerzo y generar un producto de gran valor para todos. Les reiteramos la invitación para que participen con nosotros. Editores Martín Roberto Mondragón Sotelo. [email protected] Gustavo Santiago Lázaro. [email protected] Escríbenos a [email protected] Visítanos a http://www.mygnet.com o http://www.mygnet.org Aplicaciones Backup y recuperación en frió................................................................................................................................................... 3 DotGNU Portable.NET................................................................................................................................................................... 4 Instalación de Gambas – Notas importantes ........................................................................................................................ 6 Gambas – Compilación e instalación ..................................................................................................................................... 7 Tablas externas en Oracle 9i.....................................................................................................................................................
    [Show full text]
  • Patch Management Vendor and Application List
    Patch Management Vendor and Application List Vendor Application 7-Zip 7-Zip 7-Zip 3 7-Zip 7-Zip 4 7-Zip 7-Zip 9 7-Zip 7-Zip 15 7-Zip 7-Zip 16 7-Zip 7-Zip 18 Acro Software Acro Software CutePDF Writer 2 Acro Software CutePDF Writer 3 Adobe Adobe Acrobat 5 Adobe Acrobat 6 Adobe Acrobat 7 Adobe Acrobat 8 Adobe Acrobat 9 Adobe Acrobat X Adobe Acrobat XI Adobe Acrobat DC Adobe Acrobat DC 17 Adobe Acrobat DC 18 Adobe Acrobat DC 19 Adobe Adobe Photoshop 11 Adobe Adobe Photoshop 12 Adobe Adobe Photoshop 13 Adobe Adobe Photoshop 15 Adobe Adobe Photoshop 16 Adobe After Effects 13.5 Adobe AIR Adobe AIR 2 Adobe AIR 3 Adobe AIR 4 Adobe AIR 13 Adobe AIR 14 Adobe AIR 15 Adobe AIR 16 Adobe AIR 17 Adobe AIR 18 Adobe AIR 19 Adobe AIR 20 Adobe AIR 21 Adobe AIR 22 Adobe AIR 23 Adobe AIR 24 Adobe AIR 25 Adobe AIR 26 Adobe AIR 27 Adobe AIR 28 Adobe AIR 30 Adobe AIR 31 Adobe AIR 32 Adobe Bridge 4 Adobe Bridge 5 Adobe Bridge CC Adobe Creative Cloud 3 Adobe Creative Cloud 4 Adobe Digital Editions 1 Adobe Digital Editions 2 Adobe Digital Editions 3 Adobe Digital Editions 4 Adobe Distiller 5 Adobe Distiller 6 Adobe Distiller 7 Adobe Dreamweaver 16 Adobe Elements 5 Adobe Elements 6 Adobe Elements 7 Adobe Fireworks CS6 Adobe Flash PPAPI MSI Adobe Flash Plugin MSI Adobe Flash MSI Adobe Flash Plugin Adobe Flash 5 Adobe Flash 6 Adobe Flash Plugin 6 Adobe Flash 7 Adobe Flash Plugin 7 Adobe Flash 8 Adobe Flash Plugin 8 Adobe Flash 9 Adobe Flash Plugin 9 Adobe Flash 10 Adobe Flash Plugin 10 Adobe Flash 11 Adobe Flash Plugin 11 Adobe Flash 12 Adobe Flash Plugin 12 Adobe
    [Show full text]
  • An Internet Framework to Bring Coherence Between WAP and HTTP Ensuring Better Mobile Internet Security
    An Internet Framework to Bring Coherence between WAP and HTTP Ensuring Better Mobile Internet Security Al-Mukaddim Khan Pathan, Md. Abdul Mottalib and Minhaz Fahim Zibran* Department of Computer Science and Information Technology, Islamic University of Technology, Bangladesh. * Department of Mathematics and Computer Science, University of Lethbridge, Alberta, Canada E-mail: [email protected], [email protected], [email protected] Abstract To bring coherence between Wireless Access Language (WML) content of a WML page. The web browser Protocol (WAP) and Hyper Text Transfer Protocol (HTTP), in cannot render the contents of WML page and in the same this paper, we have proposed an enhanced Internet framework, way the micro-browser cannot render the contents of an which incorporates a new markup language and a browser HTML page. compatible with both of the access control protocols. This Thus the knowledge domain of World Wide Web is Markup Language and the browser enables co-existence of both Hyper Text Markup Language (HTML) and Wireless Markup partitioned into two separate subsets: wired domain and Language (WML) contents in a single source file, whereas the wireless domain. But it would have been evidently better if browser incorporates the ability to hold contents compliant with the HTML pages could be readable using small handheld both HTTP and WAP. The proposed framework also bridges devices and the WML contents could be rendered by the PC the security gap that is present in the existing mobile Internet web-browsers. To make this facility available, several framework. endeavors have been taken in the software industry and by the research groups.
    [Show full text]