download button step_by_step

8
CONNECTION GUIDE CODE GENERATION FOR SERVER TREND MICRO BUSINESS PLUGIN

Upload: smichiel

Post on 27-May-2015

152 views

Category:

Documents


3 download

DESCRIPTION

knsdl

TRANSCRIPT

Page 1: Download button step_by_step

CONNECTION GUIDE

CODE GENERATION FOR SERVER

TREND MICRO BUSINESS PLUGIN

Page 2: Download button step_by_step

S t e p b y S t e p : B u s i n e s s P l u g i n

2 /8

TABLE OF CONTENTS

TABLE OF CONTENTS...................................................................................................................................... 2

HOW TO GENERATE THE CODE FOR THE SERVER.............................................................................................3

PHP............................................................................................................................................................... 6

SERVER CONFIGURATION..........................................................................................................................................6INSERTING THE PLUGIN BUSINESS IN YOUR PORTAL.........................................................................................................6

ASP.NET......................................................................................................................................................... 7

INSERTING THE PLUGIN BUSINESS IN YOUR PORTAL.........................................................................................................7

EDSA Estratégias Diferenciadas I www.edsa.com.ar [email protected] I tel. (+54) 2293 428824

abril de 2023

Page 3: Download button step_by_step

S t e p b y S t e p : B u s i n e s s P l u g i n

3 /8

HOW TO GENERATE THE CODE FOR THE SERVER

Enter business web console Plugin

Select “Step 3 – Custom Plugin”

EDSA Estratégias Diferenciadas I www.edsa.com.ar [email protected] I tel. (+54) 2293 428824

abril de 2023

Page 4: Download button step_by_step

S t e p b y S t e p : B u s i n e s s P l u g i n

4 /8

Select a product to generate the server code. You must download the server code for each product you want to market. This means that you must download a button for each product.

Select web server technology you need: PHP or ASP.NET.

EDSA Estratégias Diferenciadas I www.edsa.com.ar [email protected] I tel. (+54) 2293 428824

abril de 2023

Page 5: Download button step_by_step

S t e p b y S t e p : B u s i n e s s P l u g i n

5 /8

Click the Download button to download the server code.

EDSA Estratégias Diferenciadas I www.edsa.com.ar [email protected] I tel. (+54) 2293 428824

abril de 2023

Page 6: Download button step_by_step

S t e p b y S t e p : B u s i n e s s P l u g i n

6 /8

PHP

SERVER CONFIGURATION

Remember that to access the backend web services Trend Micro, the server must have PHP enabled access to SOAP and SSL enabling extensions and php_openssl.dll php_soap.dll.

INSERTING THE PLUGIN BUSINESS IN YOUR PORTAL

The Business Plug-in you can insert on any web page of your site by adding only one line of Code. PHP Example:

include ("tmic_plugin.php");

EDSA Estratégias Diferenciadas I www.edsa.com.ar [email protected] I tel. (+54) 2293 428824

abril de 2023

Page 7: Download button step_by_step

S t e p b y S t e p : B u s i n e s s P l u g i n

7 /8

ASP.NET

INSERTING THE PLUGIN BUSINESS IN YOUR PORTAL

Descomprimir el archivo de código ASP.NET descargado desde el sistema Anaconda Business Plugin.Copiar los archivos descomprimidos (ascx y ascx.cs) al directorio virtual donde se encuentra alojado el portal.Dentro de Visual Studio, se visualizará el nuevo control:

En el formulario donde se quiera incluir el plugin se debe registrar el Assembly del mismo en el encabezado de la página:

Code:<%@ Register TagPrefix="trend" TagName="BusinessPlugin3" Src="3.ascx" %>

Luego se debe agregar la siguiente porción de código dentro de la página donde se quiera incluir el plugin.

Code:<trend:BusinessPlugin3 ID="BusinessPlugin3" runat="server"/>

De esta manera el plugin ya está insertado y funcionando en la página:

EDSA Estratégias Diferenciadas I www.edsa.com.ar [email protected] I tel. (+54) 2293 428824

abril de 2023

Page 8: Download button step_by_step

S t e p b y S t e p : B u s i n e s s P l u g i n

8 /8

EDSA Estratégias Diferenciadas I www.edsa.com.ar [email protected] I tel. (+54) 2293 428824

abril de 2023