SlideShare a Scribd company logo
1 of 14
Download to read offline
iWeb B2C
Integration Guide
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 2
History
Date Doc version Description Author
29.05.2009 1.0 Created by Imaxel
04.07.2013 1.2 Last update Imaxel
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 3
TABLE OF CONTENTS
INDEX
INDEX 3
How to integrate iWeb in my web page? 4
Introduction.....................................................................................................................................4
Direct link method...........................................................................................................................4
New window method ......................................................................................................................4
Iframe method.................................................................................................................................5
iWeb calling parameters 6
Forcing language by default for iWeb .............................................................................................6
Start working in a concrete folder...................................................................................................6
Leading end user to a concrete product code.................................................................................8
Starting iWeb with a product name ................................................................................................8
Limiting the navigation to a folder or product................................................................................9
Restrict navigation to a single product..........................................................................................10
Identifying client codes or affiliates ..............................................................................................10
Customizing iWeb logo..................................................................................................................11
Limiting navigation to a single folder ............................................................................................11
Start using iWeb with a predefined image....................................................................................12
Calling iWeb by POST method 14
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 4
How to integrate iWeb in my web page?
Introduction
There’re many ways to integrate iWeb in your web page. In this document we’ll show them, trying to
explain to positive and the negative side of each option.
Direct link method
The easiest way this is to create a link in your web page to the Imaxel iWeb application.
Example:
<a href=”[imaxel provided link]” target=”_self” >Click here to order albums</a>
Advantages: Simple. No Pop-up blocks.
Disadvantages: Client Web context is lost (it could be avoided by defining target = “_blank” to open the
link in the new window). If the end user clicks on the “go back” button, the application may close
unexpectedly.
New window method
This method is the recommended by Imaxel
The recommended size is 1024x768 pixels, and the minimum size accepted 998x629 pixels, but the
window must be resizable, for users with bigger screens can maximize it.
Example:
Enter this code below your section <head></head>:
<script type="text/javascript">
<!--
functionopenNewWindow(theURL,winName,features)
{
window.open(theURL,winName,features);
}
//-->
</script>
And this code in the link:
<a href="javascript:void()" onclick="openNewWindow('[imaxel provided
link]','ImageWeb','resizable=yes,width=1024,height=768')">Click here to order
albums</a>
Tip: You can detect the window size and maximize it according to the end user screen size. For more
information: http://www.javascriptkit.com/howto/newtech3.shtml
Advantages: Do not lose context at client’s web page. Avoids end user clicking in the back button .We
have more room to show the application (Explorer, URL, Favorites, etc. Buttons can’t be seeing)
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 5
Disadvantages: Problems because of popup blocking (It’s necessary to inform the end user that the
application will start in a new window).
Iframe method
Use this method when you want to embed iWeb in your web page. Remember that the minimum size
for the application is 998x629 pixels.
Example:
<iframe src ="[imaxel provided link]" width="1024" height="768">
<p>Your browser does not support iframes.</p>
</iframe>
Advantages: Client web context is not lost.
Disadvantages: Depending on the web design, the user may get a very reduced space for the iWeb
application.
Important: PayPal payment method is not compatible with the iframe method.
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 6
iWeb calling parameters
This is the link we’ll be using to show you the calling parameters we can use for the iWeb application
you can use it to immediately check the examples in the Web browser.
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47
To add new calling parameters, we must always use the character ‘&’ at the end of the link in our
iWeb program, and every time we use a different parameter.
Forcing language by default for iWeb
 lang: This parameter is used to set up the language by default for iWeb
The format to be used must be “es-ES”, “en-EN”, etc… If no parameter has been specified, the end
user will be prompted to choose a language:
We’ll use the parameter lang=en-EN or es_ES at the end of the iWeb link.
For example, to force iWeb to start in English, we’ll do the following:
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN
Start working in a concrete folder
 fnm: Initial folder name
When this parameter has a value, iWeb will show this folder in the beginning. You’ll need to define the
original name of the folder, and not the translated name used in the language section.
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 7
Important: If the folder contains non ASCII characters, such as “ü”, “” o “ñ”, these must be written in
the search chain with its substitutes. In this web http://www.motobit.com/util/url-encoder.asp you’ll
find an interesting utility to find these substitution characters. You’ll need to specify UTF-8 as the
destination character set.
Whenever a blank space must be used for the folder or product name, we’ll have to substitute this
blank space by %20
In this example, we can see the folder structure we created to browse this iWeb
Let’s take as starting folder Photobooks and English as default language:
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN&fnm=Photobooks
Fnm = Photobooks
Fnm = Photo%20Layouts
Fnm = Photo%20Calendars
Fnm = Original%20Ideas
Fnm = Posters
Fnm = Greeting%20Cards
Fnm = CARDS%20%26%20SIGNAGE
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 8
Leading end user to a concrete product code
 pc: Initial product code
When pc is specified, iWeb will start with the product belonging to this code.
In our example, we’re going to use the parameter so that iWeb loads initially an existing product in the
Database with code number 87700
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN&pc=87700
Starting iWeb with a product name
 pnm: Initial product name
When pnm is specified, iWeb will load the product belonging to this name. Notice that you will need to
specify the original product name, not the name in the language translation.
For example, we’re going to use the product name of the previous example, this is Photobooklet A4.
Whenever a blank space must be used for the folder or product name, we’ll have to substitute this
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 9
blank space by %20
For example, to use the product name Photobooklet A4 we’ll have to enter Photobooklet%20 A4
The link we’ll use to show it, this will be:
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-
EN&pnm=Photobooklet%20A4
Limiting the navigation to a folder or product
 lmtcat: Values: true or false
This limits the navigation to the initial folder or to the product code. These parameter only makes
sense when used together with: fnm , pc or pnm.
iWeb will initially show the folder or product specified with its parameters, and can only be opened
those products which are in the same folder or subfolders, but never those in different folders.
In our example, we’ll use the following link to restrict the navigation to other folders different from the
Photobook folder
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-
EN&fnm=Photobooks&lmtcat=true
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 10
Restrict navigation to a single product
 Lmtpr: Values: true or false
In this case, the end user will only have the choice to choose a single product. It only makes sense
when used together with these parameters: pc o pnm.
The aim of this parameter this is to avoid adding new jobs to an order. For example, in the following
link, we’re limiting the navigation to a single product:
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-
EN&pc=87700&lmtpr=true
Identifying client codes or affiliates
 Ref: The parameter ref can be used to identify from which affiliate iWeb was accessed. This
way, a commission can be assigned according to. Usage is as follows: &ref=client name, code,
etc
The value of the parameter ref will be saved in the field Activation Code of the order. This will be very
helpful to manage valuable data concerning this activation code.
It’s important to know that this field doesn´t filter the pick-up points in iWeb.
When the parameter is used, a cookie will be saved for 30 days at the end user web browser software.
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN&ref=3567
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 11
Customizing iWeb logo
 lg: URL image logo (PNG or JPEG size 228x46 pixels)
When using parameter lg, iWeb will be customized with a logotype (usually, the iWeb commercial
brand offering the service). This image must always be 228x46 pixels JPG or PNG format file.
For Flash to load images from a different domain, it will need a file called crossdomain.xml in this
domain. This file must be in a superior level to the folder where we’ll leave these customized logos
images.
Example:
If http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47 tries to load the image from
http://www.mydomail.com/imagenes/logos/logo1.jpg, the following link must be accessible:
http://www.mydomain.com/crossdomain.xml and must have a crossdomain.xml file. You can ask a
crossdomain.xml file to Imaxel.
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lg=http://demo.imaxel.com/almac
en_owm/Laboratorio%20Xerox/Demo%20Xerox/ImageWeb/IMAGES/imaxel.jpg
Limiting navigation to a single folder
 lmtcatfnm: Parameter lmtcatfnm in iWeb will not allow end users to access a folder
outside the specified one
This parameter will be used to limit the offer to some concrete products along with showing a
customized logo. We’ll need to create a folder below the Root with the lmtcatfnm. iWeb will not allow
the end user to access any folder outside it.
Look at the following example:
Imagine you have this folder structure and you want to allow end user accessing the Booklets folder,
but you don’t want end user to go outside the Photobooks folder.
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 12
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lg=http://demo.imaxel.com/almac
en_owm/Laboratorio%20Xerox/Demo%20Xerox/ImageWeb/IMAGES/imaxel.jpg&fnm=Booklets&lmtca
tfnm=Photobooks
Start using iWeb with a predefined image
 imgUrls: When using imgUrls parameter, iWeb application will be shown with a
preloaded image. You may need to add some predefined in iWeb from an external
server. Once the end users have selected a product, they will get the edition screen with this
image to complete and order
For example, this is an image we have in a server:
http://demo.imaxel.com/almacen_owm/Laboratorio%20Xerox/Demo%20Xerox/ImageWeb/IMAGES/5
392204.jpg
http://demosites.imaxmanager.es:8080/WebCounter/WebCounter.aspx?dlrid=47&imgUrls=http://de
mosites.imaxmanager.es:8094/Files/JoomlaFiles/dmdocuments/img/30398729.jpg
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 13
iWeb B2C Integration Guide EN2305
 Imaxel Lab SL 14
Calling iWeb by POST method
As you can see in this document, there’re several parameters to call iWeb. If you’re a Web developer,
we recommend you to use this POST method to call these parameters. The reason is that every time
you add a parameter, the link text is becoming longer, and you may find problems with concrete
Internet Explorer versions.
At the following example, we’ll force the language by default to English, starting with product code
87700, limiting to this single product, and leading end user back to Imaxel main web page when order
is finished. As we can see, the resulting link will be extremely long:
http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-
EN&pc=87700&lmtpr=true&endurl=http://www.imaxel.com
This is an example of the static POST method (example POST.html) using the previous link call:
<html>
<head>
</head>
<body>
<form action="http://demosites.imaxmanager.es:8080/WebCounter/WebCounter.aspx "
method="POST">
<input type="hidden" name="dlrid" value="47" />
<input type="hidden" name="lang" value="en-EN" />
<input type="hidden" name="pc" value="87700" />
<input type="hidden" name="lmtpr" value="true" />
<input type="submit" value="Jump to iWeb" />
</form>
</body>
</html>

More Related Content

What's hot

Eo gaddis java_chapter_14_5e
Eo gaddis java_chapter_14_5eEo gaddis java_chapter_14_5e
Eo gaddis java_chapter_14_5eGina Bullock
 
Web II - 01 - Introduction to server-side development
Web II - 01 - Introduction to server-side developmentWeb II - 01 - Introduction to server-side development
Web II - 01 - Introduction to server-side developmentRandy Connolly
 
Dynamic Web Pages Ch 1 V1.0
Dynamic Web Pages Ch 1 V1.0Dynamic Web Pages Ch 1 V1.0
Dynamic Web Pages Ch 1 V1.0Cathie101
 
Debugging - Figuring it out yourself (WordCamp Dublin 2019)
Debugging - Figuring it out yourself (WordCamp Dublin 2019)Debugging - Figuring it out yourself (WordCamp Dublin 2019)
Debugging - Figuring it out yourself (WordCamp Dublin 2019)Damien Carbery
 
How to Implement Token Authentication Using the Django REST Framework
How to Implement Token Authentication Using the Django REST FrameworkHow to Implement Token Authentication Using the Django REST Framework
How to Implement Token Authentication Using the Django REST FrameworkKaty Slemon
 
BDD in practice based on an open source project
BDD in practice based on an open source projectBDD in practice based on an open source project
BDD in practice based on an open source projectŁukasz Chruściel
 
Mastering WordPress Vol.1
Mastering WordPress Vol.1Mastering WordPress Vol.1
Mastering WordPress Vol.1Wataru OKAMOTO
 

What's hot (9)

Eo gaddis java_chapter_14_5e
Eo gaddis java_chapter_14_5eEo gaddis java_chapter_14_5e
Eo gaddis java_chapter_14_5e
 
Web II - 01 - Introduction to server-side development
Web II - 01 - Introduction to server-side developmentWeb II - 01 - Introduction to server-side development
Web II - 01 - Introduction to server-side development
 
Dynamic Web Pages Ch 1 V1.0
Dynamic Web Pages Ch 1 V1.0Dynamic Web Pages Ch 1 V1.0
Dynamic Web Pages Ch 1 V1.0
 
Looking into HTML5
Looking into HTML5Looking into HTML5
Looking into HTML5
 
Debugging - Figuring it out yourself (WordCamp Dublin 2019)
Debugging - Figuring it out yourself (WordCamp Dublin 2019)Debugging - Figuring it out yourself (WordCamp Dublin 2019)
Debugging - Figuring it out yourself (WordCamp Dublin 2019)
 
How to Implement Token Authentication Using the Django REST Framework
How to Implement Token Authentication Using the Django REST FrameworkHow to Implement Token Authentication Using the Django REST Framework
How to Implement Token Authentication Using the Django REST Framework
 
Processing XML with Java
Processing XML with JavaProcessing XML with Java
Processing XML with Java
 
BDD in practice based on an open source project
BDD in practice based on an open source projectBDD in practice based on an open source project
BDD in practice based on an open source project
 
Mastering WordPress Vol.1
Mastering WordPress Vol.1Mastering WordPress Vol.1
Mastering WordPress Vol.1
 

Similar to iWeb B2C Integration Guide

Rails Plugins - Linux For You, March 2011 Issue
Rails Plugins - Linux For You, March 2011 IssueRails Plugins - Linux For You, March 2011 Issue
Rails Plugins - Linux For You, March 2011 IssueSagar Arlekar
 
IBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance TesterIBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance TesterWinton Winton
 
Web worker in your angular application
Web worker in your angular applicationWeb worker in your angular application
Web worker in your angular applicationSuresh Patidar
 
How to develop a gateway service using code based implementation
How to develop a gateway service using code based implementationHow to develop a gateway service using code based implementation
How to develop a gateway service using code based implementationnitin2517
 
AMIMOTO WordPress + Amazon Web Services Hands-on
AMIMOTO WordPress + Amazon Web Services Hands-on AMIMOTO WordPress + Amazon Web Services Hands-on
AMIMOTO WordPress + Amazon Web Services Hands-on Kel
 
Angular Interview Questions-PDF.pdf
Angular Interview Questions-PDF.pdfAngular Interview Questions-PDF.pdf
Angular Interview Questions-PDF.pdfJohnLeo57
 
Firefox Easily Analyzed by PVS-Studio Standalone
Firefox Easily Analyzed by PVS-Studio StandaloneFirefox Easily Analyzed by PVS-Studio Standalone
Firefox Easily Analyzed by PVS-Studio StandaloneAndrey Karpov
 
Build a video chat application with twilio, rails, and javascript (part 1)
Build a video chat application with twilio, rails, and javascript (part 1)Build a video chat application with twilio, rails, and javascript (part 1)
Build a video chat application with twilio, rails, and javascript (part 1)Katy Slemon
 
Build Your Own Instagram Filters
Build Your Own Instagram FiltersBuild Your Own Instagram Filters
Build Your Own Instagram FiltersTJ Stalcup
 
Setting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntuSetting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntukesavan N B
 
Django tutorial
Django tutorialDjango tutorial
Django tutorialKsd Che
 
Creating first project in mikroC PRO for 8051
Creating first project in mikroC PRO for 8051Creating first project in mikroC PRO for 8051
Creating first project in mikroC PRO for 8051inovabrasil
 
Build and deploy Python Django project
Build and deploy Python Django projectBuild and deploy Python Django project
Build and deploy Python Django projectXiaoqi Zhao
 
Learn Django Tips, Tricks & Techniques for Developers
Learn Django Tips, Tricks & Techniques for DevelopersLearn Django Tips, Tricks & Techniques for Developers
Learn Django Tips, Tricks & Techniques for DevelopersMars Devs
 
WebSphere Portlet Factory: Davalen’s Practical Advice from the Field
WebSphere Portlet Factory: Davalen’s Practical Advice from the Field WebSphere Portlet Factory: Davalen’s Practical Advice from the Field
WebSphere Portlet Factory: Davalen’s Practical Advice from the Field Davalen LLC
 
294151805 end-to-end-o data-service-sapui5-application
294151805 end-to-end-o data-service-sapui5-application294151805 end-to-end-o data-service-sapui5-application
294151805 end-to-end-o data-service-sapui5-applicationFaina Fridman
 

Similar to iWeb B2C Integration Guide (20)

Rails Plugins - Linux For You, March 2011 Issue
Rails Plugins - Linux For You, March 2011 IssueRails Plugins - Linux For You, March 2011 Issue
Rails Plugins - Linux For You, March 2011 Issue
 
IBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance TesterIBM iSeries Terminal Based Performance Testing with Rational Performance Tester
IBM iSeries Terminal Based Performance Testing with Rational Performance Tester
 
Web worker in your angular application
Web worker in your angular applicationWeb worker in your angular application
Web worker in your angular application
 
Kraken.js Lab Primer
Kraken.js Lab PrimerKraken.js Lab Primer
Kraken.js Lab Primer
 
How to develop a gateway service using code based implementation
How to develop a gateway service using code based implementationHow to develop a gateway service using code based implementation
How to develop a gateway service using code based implementation
 
AMIMOTO WordPress + Amazon Web Services Hands-on
AMIMOTO WordPress + Amazon Web Services Hands-on AMIMOTO WordPress + Amazon Web Services Hands-on
AMIMOTO WordPress + Amazon Web Services Hands-on
 
Angular Interview Questions-PDF.pdf
Angular Interview Questions-PDF.pdfAngular Interview Questions-PDF.pdf
Angular Interview Questions-PDF.pdf
 
Django by rj
Django by rjDjango by rj
Django by rj
 
Firefox Easily Analyzed by PVS-Studio Standalone
Firefox Easily Analyzed by PVS-Studio StandaloneFirefox Easily Analyzed by PVS-Studio Standalone
Firefox Easily Analyzed by PVS-Studio Standalone
 
Build a video chat application with twilio, rails, and javascript (part 1)
Build a video chat application with twilio, rails, and javascript (part 1)Build a video chat application with twilio, rails, and javascript (part 1)
Build a video chat application with twilio, rails, and javascript (part 1)
 
Build Your Own Instagram Filters
Build Your Own Instagram FiltersBuild Your Own Instagram Filters
Build Your Own Instagram Filters
 
Multiple odoo with single vue storefront
Multiple odoo with single vue storefrontMultiple odoo with single vue storefront
Multiple odoo with single vue storefront
 
Setting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntuSetting up the hyperledger composer in ubuntu
Setting up the hyperledger composer in ubuntu
 
Django tutorial
Django tutorialDjango tutorial
Django tutorial
 
Creating first project in mikroC PRO for 8051
Creating first project in mikroC PRO for 8051Creating first project in mikroC PRO for 8051
Creating first project in mikroC PRO for 8051
 
Build and deploy Python Django project
Build and deploy Python Django projectBuild and deploy Python Django project
Build and deploy Python Django project
 
Lampstack (1)
Lampstack (1)Lampstack (1)
Lampstack (1)
 
Learn Django Tips, Tricks & Techniques for Developers
Learn Django Tips, Tricks & Techniques for DevelopersLearn Django Tips, Tricks & Techniques for Developers
Learn Django Tips, Tricks & Techniques for Developers
 
WebSphere Portlet Factory: Davalen’s Practical Advice from the Field
WebSphere Portlet Factory: Davalen’s Practical Advice from the Field WebSphere Portlet Factory: Davalen’s Practical Advice from the Field
WebSphere Portlet Factory: Davalen’s Practical Advice from the Field
 
294151805 end-to-end-o data-service-sapui5-application
294151805 end-to-end-o data-service-sapui5-application294151805 end-to-end-o data-service-sapui5-application
294151805 end-to-end-o data-service-sapui5-application
 

More from Heo Gòm

Windows 8 1_power user guide
Windows 8 1_power user guideWindows 8 1_power user guide
Windows 8 1_power user guideHeo Gòm
 
Windows to go a guide for education
Windows to go   a guide for educationWindows to go   a guide for education
Windows to go a guide for educationHeo Gòm
 
Windows store apps a deployment guide for education
Windows store apps   a deployment guide for educationWindows store apps   a deployment guide for education
Windows store apps a deployment guide for educationHeo Gòm
 
Windows 8 1
Windows 8 1Windows 8 1
Windows 8 1Heo Gòm
 
Windows 8.1 deployment to p cs a guide for education
Windows 8.1 deployment to p cs   a guide for educationWindows 8.1 deployment to p cs   a guide for education
Windows 8.1 deployment to p cs a guide for educationHeo Gòm
 
Windows 8.1 deployment planning a guide for education
Windows 8.1 deployment planning   a guide for educationWindows 8.1 deployment planning   a guide for education
Windows 8.1 deployment planning a guide for educationHeo Gòm
 
Windows 8 product guide business english
Windows 8 product guide business englishWindows 8 product guide business english
Windows 8 product guide business englishHeo Gòm
 
Win8 accessibility tutorials
Win8 accessibility tutorialsWin8 accessibility tutorials
Win8 accessibility tutorialsHeo Gòm
 
W8 brochure download
W8 brochure downloadW8 brochure download
W8 brochure downloadHeo Gòm
 
Sharepoint adoption guide
Sharepoint adoption guideSharepoint adoption guide
Sharepoint adoption guideHeo Gòm
 
Office365 midsizebusinessquickdeploymentguide
Office365 midsizebusinessquickdeploymentguideOffice365 midsizebusinessquickdeploymentguide
Office365 midsizebusinessquickdeploymentguideHeo Gòm
 
Moodle plugininstallguide v1
Moodle plugininstallguide v1Moodle plugininstallguide v1
Moodle plugininstallguide v1Heo Gòm
 
Moodle andoffice365withadfs
Moodle andoffice365withadfsMoodle andoffice365withadfs
Moodle andoffice365withadfsHeo Gòm
 
How to recover office doc
How to recover office docHow to recover office doc
How to recover office docHeo Gòm
 
Getting to know_office_365
Getting to know_office_365Getting to know_office_365
Getting to know_office_365Heo Gòm
 
Explore share point-2013
Explore share point-2013Explore share point-2013
Explore share point-2013Heo Gòm
 
Discover share point
Discover share pointDiscover share point
Discover share pointHeo Gòm
 
Deployment guide-for-share point-2013
Deployment guide-for-share point-2013Deployment guide-for-share point-2013
Deployment guide-for-share point-2013Heo Gòm
 
Deployment guide-for-office-2013
Deployment guide-for-office-2013Deployment guide-for-office-2013
Deployment guide-for-office-2013Heo Gòm
 
3671 explore windows-8.1_update_wsg_external
3671 explore windows-8.1_update_wsg_external3671 explore windows-8.1_update_wsg_external
3671 explore windows-8.1_update_wsg_externalHeo Gòm
 

More from Heo Gòm (20)

Windows 8 1_power user guide
Windows 8 1_power user guideWindows 8 1_power user guide
Windows 8 1_power user guide
 
Windows to go a guide for education
Windows to go   a guide for educationWindows to go   a guide for education
Windows to go a guide for education
 
Windows store apps a deployment guide for education
Windows store apps   a deployment guide for educationWindows store apps   a deployment guide for education
Windows store apps a deployment guide for education
 
Windows 8 1
Windows 8 1Windows 8 1
Windows 8 1
 
Windows 8.1 deployment to p cs a guide for education
Windows 8.1 deployment to p cs   a guide for educationWindows 8.1 deployment to p cs   a guide for education
Windows 8.1 deployment to p cs a guide for education
 
Windows 8.1 deployment planning a guide for education
Windows 8.1 deployment planning   a guide for educationWindows 8.1 deployment planning   a guide for education
Windows 8.1 deployment planning a guide for education
 
Windows 8 product guide business english
Windows 8 product guide business englishWindows 8 product guide business english
Windows 8 product guide business english
 
Win8 accessibility tutorials
Win8 accessibility tutorialsWin8 accessibility tutorials
Win8 accessibility tutorials
 
W8 brochure download
W8 brochure downloadW8 brochure download
W8 brochure download
 
Sharepoint adoption guide
Sharepoint adoption guideSharepoint adoption guide
Sharepoint adoption guide
 
Office365 midsizebusinessquickdeploymentguide
Office365 midsizebusinessquickdeploymentguideOffice365 midsizebusinessquickdeploymentguide
Office365 midsizebusinessquickdeploymentguide
 
Moodle plugininstallguide v1
Moodle plugininstallguide v1Moodle plugininstallguide v1
Moodle plugininstallguide v1
 
Moodle andoffice365withadfs
Moodle andoffice365withadfsMoodle andoffice365withadfs
Moodle andoffice365withadfs
 
How to recover office doc
How to recover office docHow to recover office doc
How to recover office doc
 
Getting to know_office_365
Getting to know_office_365Getting to know_office_365
Getting to know_office_365
 
Explore share point-2013
Explore share point-2013Explore share point-2013
Explore share point-2013
 
Discover share point
Discover share pointDiscover share point
Discover share point
 
Deployment guide-for-share point-2013
Deployment guide-for-share point-2013Deployment guide-for-share point-2013
Deployment guide-for-share point-2013
 
Deployment guide-for-office-2013
Deployment guide-for-office-2013Deployment guide-for-office-2013
Deployment guide-for-office-2013
 
3671 explore windows-8.1_update_wsg_external
3671 explore windows-8.1_update_wsg_external3671 explore windows-8.1_update_wsg_external
3671 explore windows-8.1_update_wsg_external
 

Recently uploaded

Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
buds n tech IT solutions
buds n  tech IT                solutionsbuds n  tech IT                solutions
buds n tech IT solutionsmonugehlot87
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyFrank van der Linden
 
What are the features of Vehicle Tracking System?
What are the features of Vehicle Tracking System?What are the features of Vehicle Tracking System?
What are the features of Vehicle Tracking System?Watsoo Telematics
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningVitsRangannavar
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWave PLM
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 

Recently uploaded (20)

Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
buds n tech IT solutions
buds n  tech IT                solutionsbuds n  tech IT                solutions
buds n tech IT solutions
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Engage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The UglyEngage Usergroup 2024 - The Good The Bad_The Ugly
Engage Usergroup 2024 - The Good The Bad_The Ugly
 
What are the features of Vehicle Tracking System?
What are the features of Vehicle Tracking System?What are the features of Vehicle Tracking System?
What are the features of Vehicle Tracking System?
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learning
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need It
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 

iWeb B2C Integration Guide

  • 2. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 2 History Date Doc version Description Author 29.05.2009 1.0 Created by Imaxel 04.07.2013 1.2 Last update Imaxel
  • 3. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 3 TABLE OF CONTENTS INDEX INDEX 3 How to integrate iWeb in my web page? 4 Introduction.....................................................................................................................................4 Direct link method...........................................................................................................................4 New window method ......................................................................................................................4 Iframe method.................................................................................................................................5 iWeb calling parameters 6 Forcing language by default for iWeb .............................................................................................6 Start working in a concrete folder...................................................................................................6 Leading end user to a concrete product code.................................................................................8 Starting iWeb with a product name ................................................................................................8 Limiting the navigation to a folder or product................................................................................9 Restrict navigation to a single product..........................................................................................10 Identifying client codes or affiliates ..............................................................................................10 Customizing iWeb logo..................................................................................................................11 Limiting navigation to a single folder ............................................................................................11 Start using iWeb with a predefined image....................................................................................12 Calling iWeb by POST method 14
  • 4. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 4 How to integrate iWeb in my web page? Introduction There’re many ways to integrate iWeb in your web page. In this document we’ll show them, trying to explain to positive and the negative side of each option. Direct link method The easiest way this is to create a link in your web page to the Imaxel iWeb application. Example: <a href=”[imaxel provided link]” target=”_self” >Click here to order albums</a> Advantages: Simple. No Pop-up blocks. Disadvantages: Client Web context is lost (it could be avoided by defining target = “_blank” to open the link in the new window). If the end user clicks on the “go back” button, the application may close unexpectedly. New window method This method is the recommended by Imaxel The recommended size is 1024x768 pixels, and the minimum size accepted 998x629 pixels, but the window must be resizable, for users with bigger screens can maximize it. Example: Enter this code below your section <head></head>: <script type="text/javascript"> <!-- functionopenNewWindow(theURL,winName,features) { window.open(theURL,winName,features); } //--> </script> And this code in the link: <a href="javascript:void()" onclick="openNewWindow('[imaxel provided link]','ImageWeb','resizable=yes,width=1024,height=768')">Click here to order albums</a> Tip: You can detect the window size and maximize it according to the end user screen size. For more information: http://www.javascriptkit.com/howto/newtech3.shtml Advantages: Do not lose context at client’s web page. Avoids end user clicking in the back button .We have more room to show the application (Explorer, URL, Favorites, etc. Buttons can’t be seeing)
  • 5. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 5 Disadvantages: Problems because of popup blocking (It’s necessary to inform the end user that the application will start in a new window). Iframe method Use this method when you want to embed iWeb in your web page. Remember that the minimum size for the application is 998x629 pixels. Example: <iframe src ="[imaxel provided link]" width="1024" height="768"> <p>Your browser does not support iframes.</p> </iframe> Advantages: Client web context is not lost. Disadvantages: Depending on the web design, the user may get a very reduced space for the iWeb application. Important: PayPal payment method is not compatible with the iframe method.
  • 6. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 6 iWeb calling parameters This is the link we’ll be using to show you the calling parameters we can use for the iWeb application you can use it to immediately check the examples in the Web browser. http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47 To add new calling parameters, we must always use the character ‘&’ at the end of the link in our iWeb program, and every time we use a different parameter. Forcing language by default for iWeb  lang: This parameter is used to set up the language by default for iWeb The format to be used must be “es-ES”, “en-EN”, etc… If no parameter has been specified, the end user will be prompted to choose a language: We’ll use the parameter lang=en-EN or es_ES at the end of the iWeb link. For example, to force iWeb to start in English, we’ll do the following: http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN Start working in a concrete folder  fnm: Initial folder name When this parameter has a value, iWeb will show this folder in the beginning. You’ll need to define the original name of the folder, and not the translated name used in the language section.
  • 7. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 7 Important: If the folder contains non ASCII characters, such as “ü”, “” o “ñ”, these must be written in the search chain with its substitutes. In this web http://www.motobit.com/util/url-encoder.asp you’ll find an interesting utility to find these substitution characters. You’ll need to specify UTF-8 as the destination character set. Whenever a blank space must be used for the folder or product name, we’ll have to substitute this blank space by %20 In this example, we can see the folder structure we created to browse this iWeb Let’s take as starting folder Photobooks and English as default language: http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN&fnm=Photobooks Fnm = Photobooks Fnm = Photo%20Layouts Fnm = Photo%20Calendars Fnm = Original%20Ideas Fnm = Posters Fnm = Greeting%20Cards Fnm = CARDS%20%26%20SIGNAGE
  • 8. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 8 Leading end user to a concrete product code  pc: Initial product code When pc is specified, iWeb will start with the product belonging to this code. In our example, we’re going to use the parameter so that iWeb loads initially an existing product in the Database with code number 87700 http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN&pc=87700 Starting iWeb with a product name  pnm: Initial product name When pnm is specified, iWeb will load the product belonging to this name. Notice that you will need to specify the original product name, not the name in the language translation. For example, we’re going to use the product name of the previous example, this is Photobooklet A4. Whenever a blank space must be used for the folder or product name, we’ll have to substitute this
  • 9. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 9 blank space by %20 For example, to use the product name Photobooklet A4 we’ll have to enter Photobooklet%20 A4 The link we’ll use to show it, this will be: http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en- EN&pnm=Photobooklet%20A4 Limiting the navigation to a folder or product  lmtcat: Values: true or false This limits the navigation to the initial folder or to the product code. These parameter only makes sense when used together with: fnm , pc or pnm. iWeb will initially show the folder or product specified with its parameters, and can only be opened those products which are in the same folder or subfolders, but never those in different folders. In our example, we’ll use the following link to restrict the navigation to other folders different from the Photobook folder http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en- EN&fnm=Photobooks&lmtcat=true
  • 10. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 10 Restrict navigation to a single product  Lmtpr: Values: true or false In this case, the end user will only have the choice to choose a single product. It only makes sense when used together with these parameters: pc o pnm. The aim of this parameter this is to avoid adding new jobs to an order. For example, in the following link, we’re limiting the navigation to a single product: http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en- EN&pc=87700&lmtpr=true Identifying client codes or affiliates  Ref: The parameter ref can be used to identify from which affiliate iWeb was accessed. This way, a commission can be assigned according to. Usage is as follows: &ref=client name, code, etc The value of the parameter ref will be saved in the field Activation Code of the order. This will be very helpful to manage valuable data concerning this activation code. It’s important to know that this field doesn´t filter the pick-up points in iWeb. When the parameter is used, a cookie will be saved for 30 days at the end user web browser software. http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en-EN&ref=3567
  • 11. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 11 Customizing iWeb logo  lg: URL image logo (PNG or JPEG size 228x46 pixels) When using parameter lg, iWeb will be customized with a logotype (usually, the iWeb commercial brand offering the service). This image must always be 228x46 pixels JPG or PNG format file. For Flash to load images from a different domain, it will need a file called crossdomain.xml in this domain. This file must be in a superior level to the folder where we’ll leave these customized logos images. Example: If http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47 tries to load the image from http://www.mydomail.com/imagenes/logos/logo1.jpg, the following link must be accessible: http://www.mydomain.com/crossdomain.xml and must have a crossdomain.xml file. You can ask a crossdomain.xml file to Imaxel. http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lg=http://demo.imaxel.com/almac en_owm/Laboratorio%20Xerox/Demo%20Xerox/ImageWeb/IMAGES/imaxel.jpg Limiting navigation to a single folder  lmtcatfnm: Parameter lmtcatfnm in iWeb will not allow end users to access a folder outside the specified one This parameter will be used to limit the offer to some concrete products along with showing a customized logo. We’ll need to create a folder below the Root with the lmtcatfnm. iWeb will not allow the end user to access any folder outside it. Look at the following example: Imagine you have this folder structure and you want to allow end user accessing the Booklets folder, but you don’t want end user to go outside the Photobooks folder.
  • 12. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 12 http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lg=http://demo.imaxel.com/almac en_owm/Laboratorio%20Xerox/Demo%20Xerox/ImageWeb/IMAGES/imaxel.jpg&fnm=Booklets&lmtca tfnm=Photobooks Start using iWeb with a predefined image  imgUrls: When using imgUrls parameter, iWeb application will be shown with a preloaded image. You may need to add some predefined in iWeb from an external server. Once the end users have selected a product, they will get the edition screen with this image to complete and order For example, this is an image we have in a server: http://demo.imaxel.com/almacen_owm/Laboratorio%20Xerox/Demo%20Xerox/ImageWeb/IMAGES/5 392204.jpg http://demosites.imaxmanager.es:8080/WebCounter/WebCounter.aspx?dlrid=47&imgUrls=http://de mosites.imaxmanager.es:8094/Files/JoomlaFiles/dmdocuments/img/30398729.jpg
  • 13. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 13
  • 14. iWeb B2C Integration Guide EN2305  Imaxel Lab SL 14 Calling iWeb by POST method As you can see in this document, there’re several parameters to call iWeb. If you’re a Web developer, we recommend you to use this POST method to call these parameters. The reason is that every time you add a parameter, the link text is becoming longer, and you may find problems with concrete Internet Explorer versions. At the following example, we’ll force the language by default to English, starting with product code 87700, limiting to this single product, and leading end user back to Imaxel main web page when order is finished. As we can see, the resulting link will be extremely long: http://demo.imaxel.com/WebCounter/WebCounter.aspx?dlrid=47&lang=en- EN&pc=87700&lmtpr=true&endurl=http://www.imaxel.com This is an example of the static POST method (example POST.html) using the previous link call: <html> <head> </head> <body> <form action="http://demosites.imaxmanager.es:8080/WebCounter/WebCounter.aspx " method="POST"> <input type="hidden" name="dlrid" value="47" /> <input type="hidden" name="lang" value="en-EN" /> <input type="hidden" name="pc" value="87700" /> <input type="hidden" name="lmtpr" value="true" /> <input type="submit" value="Jump to iWeb" /> </form> </body> </html>