Module: nagvis Branch: master Commit: 4f8fb406194b40b3ece56188576b15006b41019c URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=4f8fb406194b40b3ece56188576b15006b41019c
Author: Andriy Skuratov <[email protected]> Date: Tue Aug 18 12:50:03 2009 +0300 gmap: Now work over http as well as over https. --- uifx/src/modules/gmap/GMapModule.mxml | 2 ++ uifx/src/services-config.xml | 11 +++++++++++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/uifx/src/modules/gmap/GMapModule.mxml b/uifx/src/modules/gmap/GMapModule.mxml index 319cec8..dc3d887 100644 --- a/uifx/src/modules/gmap/GMapModule.mxml +++ b/uifx/src/modules/gmap/GMapModule.mxml @@ -17,6 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. --> + <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:gmap="modules.gmap.*" xmlns:view="modules.gmap.view.*" @@ -36,4 +37,5 @@ <mx:Style source="css/Main.css" /> <view:MainView width="100%" height="100%"/> + </mx:Module> diff --git a/uifx/src/services-config.xml b/uifx/src/services-config.xml index 530532d..d454efb 100644 --- a/uifx/src/services-config.xml +++ b/uifx/src/services-config.xml @@ -16,9 +16,20 @@ </services> <channels> <channel-definition id="zend-endpoint" + class="mx.messaging.channels.AMFChannel"> + <endpoint uri="http://{server.name}:{server.port}/nagvis/netmap/amf-server.php" + class="flex.messaging.endpoints.SecureAMFEndpoint"/> + <properties> + <add-no-cache-headers>false</add-no-cache-headers> + </properties> + </channel-definition> + <channel-definition id="zend-endpoint-secure" class="mx.messaging.channels.SecureAMFChannel"> <endpoint uri="https://{server.name}:{server.port}/nagvis/netmap/amf-server.php" class="flex.messaging.endpoints.SecureAMFEndpoint"/> + <properties> + <add-no-cache-headers>false</add-no-cache-headers> + </properties> </channel-definition> </channels> </services-config> ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
