Change of HTML content with a persistent Navigation SWF (always busy)

I need to develop a site with navigation SWF file that modifies the contents of an HTML page, WITHOUT reloading itself and lose its current state.

Is what I think I should do to have smooth transitions of keep the swf file loaded, while having, it changes the contents of the page below it.

I have complex to include in pages html content that is not supported by the tags available in the dynamic Flash text boxes. I looked at the idea of iframes, but I don't know how to load iframes using flash, or how to use it without refreshing the page.

Any help is appreciated, thanks!

iframes would be the easiest option.  you target the framework with the 2nd parameter to the getURL() function.

Tags: Adobe Animate

Similar Questions

  • CTRL + S changes HTML content

    When I press ctrl + s (or navigate to the menu item to 'save'), the browser saves the page to a file. This is the expected behavior, and I love it! However, it seems to change the HTML content.

    For example:

    If I save a page that contains the links like this:

    < a href = "google.com" > < /a > Google

    They turn out like this:

    "< a href ="google.com"> < /a > Google.

    Do not see the difference? The quotes to change of single-phase double. Although often it is not serious, I'm performing a regex search on the file and I downloaded it so I wouldn't have to go search for it on the server each time. It would be nice if there was an option to create an exact copy of the page.

    Is it available? Or could it be created?

    Thank you!

    36.0a2 Firefox Developer Edition - however, the same thing happens with all versions of Firefox
    Aurora update channel

    If you use the "Web Page, complete" Firefox needs to change the source because that link to files saved locally must be corrected and therefore Firefox links formats.
    If you use "Web Page, HTML only" while Firefox does not need to do.

  • Cannot target a framework navigation.swf html

    I can't do the Flash actionscript 'getURL' link to a HTML framework.
    It's 4 days now that I'm breaking my head trying to understand this.

    I'm working on:
    -Windows XP - with Flash MX Pro.
    -Dreamweaver for HTML.
    -Browsers: Internet Explorer 6 and 7.

    I am trying to create a set of HTML frames with 2 images ('navigation' and 'hand', in one of them ("browsing") it is a Flash navigation panel and the other frame ('hand') is the target Frame to load HTML code in.)

    Whenever I target my file (in Flash, using "getURL") of "_self", "_top" or "_parent", it works very well and load the file in the right frame.
    Whenever I change the targeting to the frame name ("hand", as indicated), it loads the file in a new browser window (which means it cannot find the target - 'main')

    The design of the hole site depends on this construction.

    I ve got this local and remote problem

    Please can anyone help me - I m going to show this site
    tomorrow on the job interview

    as my SIG. Haha, read the link I provided for more information on active content

  • Interaction with the existing HTML content - how?

    I'm treying to build a Facebbok connect app that will enter the name and email address of FB and then complete a subscription by email automatically.

    I got the job part of Facebook. Because I don't know how to add the element of form within the EA I have it in the HTML code I create before staring with EA.

    The form code is:

    " < form action =" http://someUrl.list-manage.com/Subscribe/post "method ="post"> "

    < input type = "hidden" name = "u" value = "33a31e512f3b54d8f0db234f6" >

    < input type = "hidden" name = "id" value = "40ecd723418" >

    "< input type ="text"name ="MERGE1"id ="MERGE1"size ="25"value =" * | MERGE1 | "*" class = "edgeLoad-EDGE-467457915" / >

    "< input type ="text"autocapitalize ="off"= automatic correction 'off' name ="MERGE0"id ="MERGE0"size ="25"value =" * | MERGE0 | "*" class = "edgeLoad-EDGE-467457915" / >

    < input type = "submit" value = "Subscribe" class = "edgeLoad-EDGE-467457915" / >

    < / make >

    I can see the fields in the EA and move

    However, I can not pass values to the fields.

    For example, for text with id: MERGE1 I am doing

    S('MERGE1').html ("value"); but he throws and error at run time. I guess since creation EA MERGE1 out I need to reference another way.

    But how?

    So 2 questions:

    1. how to reference items that are found in the existing HTML code from within the EA (as in the above case)?

    2. how to create the entire form inside the EA?  I know how to do the input elements, but not the form element.

    1. how to reference items that are found in the existing HTML code from within the EA (as in the above case)?

    You can use the notation of jQuery to select an existing element. If the element has an ID, then it is very simple to do:

    $("#theElementID")

    There are certainly other ways to select items, in the case where using an ID is not practical. See this page for more information: http://api.jquery.com/category/selectors/

    As an example of using your code above, you can change the value of the entry of text MERGE1 by adding jQuery something like this as a trigger on board animate:

    $("#MERGE1").attr ('value', 'Text');

    2. how to create the entire form inside the EA?  I know how to do the input elements, but not the form element.

    You can add HTML content dynamically using jQuery, most probably using either using the. append() or. prepend().

    See this page for info: http://api.jquery.com/category/manipulation/dom-insertion-inside/

  • change the value of an object in the content of the persistent object

    Hello

    I'm triyin to make a customizable menu, saving the preferences of the user as a custom class in a hash table which is the content of my persistent object.

    the custom class "Favoritos" is like this:

    public class Favoritos implements Persistable {
          private Boolean[] misFavoritos = new Boolean[10];
    
          public Favoritos() {
            super();
        }
    
        public Boolean[] getMisFavoritos() {
            return misFavoritos;
        }
    
        public void setMisFavoritos(Boolean[] misFavoritos) {
            this.misFavoritos = misFavoritos;
        }
    }
    

    and the hash table custom:

    public class CustomHashtable extends Hashtable implements Persistable {
    
    }
    

    in my menu configuration screen, I show the options selected as Favorites, which are defined as true in Boolean Favoritos object table in the hashtable. I retrieve the values or set them all as false if they have not been registered before, like this:

    PersistentObject persistentObject = PersistentStore.getPersistentObject(KEY);
    if(persistentObject.getContents() != null){
        CustomHashtable persistentHashtable = (CustomHashtable) persistentObject.getContents();
        if(persistentHashtable.containsKey("misFavoritos")){
        misFavoritos = ((Favoritos) persistentHashtable.get("misFavoritos"));
        }
        else{
        misFavoritos = new Favoritos();
        Boolean[] f = {new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false),
                  new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false), new Boolean(false)};
        misFavoritos.setMisFavoritos(f);
        persistentHashtable.put("misFavoritos", misFavoritos);
        persistentObject.commit();
        }
    }
    

    So I give to the user the possibility to define as true certain values and Boolean table, I try to change them this way:

    misFavoritos.getMisFavoritos()[i] = new Boolean(true);
    persistentHashtable.put("misFavoritos", misFavoritos);
    persistentObject.commit();
    

    Changes are persisted as I navigate the application, I want to say, if I close the configuration screen and open another configuration screen, changes of this show, but I I close application it loosse changes made a show all the elements of the array as false. What I do wrong?

    RuntimeStore is the other location people will such things, but it is cleared to restart the device, not the app.

    If you want to have something that you have to restart the application, then keep your storage apps and turn it off when leaving.

  • Pop Up with HTML content

    Hello

    I have the following requirement to achieve. Please let me know if any of you have a solution for this.

    The requirement is:
    User click on the PRINT (this is an af:commandButton) button. When the user clicks this button, the... managed bean we prepare the HTML content. And then a pop up should get opened with the prepared HTML content in the managed bean. And we do not want to use, in this case adf:popUp. Because the content should be displayed in the popup browser(IE/MOZILLA).
    Content will be < reports > list. And we want to separate each report by a page break. So, it should be as follows.
    > Open a popup.
    > Report 1
    > Page break
    > Report 2... etc.

    I would like to know if the question is unclear

    Thank you and best regards,
    Kiran kristelle

    Put an af:outputText in the pop-up window and set its value to the HTML of the managed bean its escape property set to false.

  • The images are not display with html content in browserfield

    Hi friends, I am display local html content in the browserfield. It is are display fine but pictures are not display is also local resources stored in the project. I use jde 5.0. Whats to display pictures.

    After so much, I solved it and the images are displayed correctly. I had the habit now of base64 class and image data are passed to the base64 format.

  • Pavilion p6 2378. : you have upgrade to 8.1 Windows or is it a corridor of contention with no option?

    I finally got my computer run without any problem and all my programs work very well, the last time I upgraded to 8.1 Windows, I had all sorts of questions. So my question is; you have to upgrade to 8.1 Windows or is it a corridor of contention with no option? Right now I can decide if I want to use Skydrive or not, but with Windows 8.1 with Onedrive it automaticlly load my photos and documents with my knowledge and I have to go sreaching to see where they went. Don't forget I'm old and want to do it my way. Pavilion p6 2378, with Windows 8, 64-bit.

    You are not required to update to 8.1, but it is beneficial because it is more stable.  With 8.1, you will be eligible to get the free Windows 10 update when it comes out at the end of the year.

    As far as Onedive goes you can disable the download of your files by changing the parameters, see also this:

    http://www.eightforums.com/tutorials/29426-onedrive-integration-Windows-8-1-enable-disable.html

  • Content of article and navigating capacity AEMM app demos

    The Manager of Adobe Mobile blog experience there are examples that illustrate the AEMM features, but I am not following article content and navigation of these applications, or maybe why they were created with AEMM (as opposed to Córdoba, SE).

    Are these apps HTML page unique. or navigation are used as a Storyboard?

    Axis41 has a hotel booking application.  What are the contents of the article of this app?  There are no table of contents, or which don't has been customized as the "M" in the corner at the top left?

    Axis41_feature-image.jpeg

    Perficient has a commitment patient app.  Table of contents disappeared from the login screen, then appears in other screenshots.  What are the articles here, or what is shown in the table of contents?

    Perficient_feature-image.jpeg

    Similarly, in the application of DuPont agricultural products, I can understand how the articles can be used; However, the navigation in the demo does not seem to use the table of contents, featuring highly personalized navigation:

    Screen Shot 2016-08-24 at 9.51.14 AM.png

    Screen Shot 2016-08-24 at 9.51.20 AM.png

    For not to bite too much here, but I'm not quite sure I'm following more precisely why AEMM is operated as the solution for these applications.  It seems as much functionality as content highlighted in these demos.

    But more importantly, how the articles and navigation of the AEMM app models used in these solutions?  At no time I don't see someone knocked on the table of contents slide in navigation.

    There are a couple of different UI paradigms going on in these demos.

    Apps Mobile AEM on demand (MOD) can enjoy building browse Page UI to navigate through the content.   This enables the content owner to define a page layout that uses the metadata of the content of the app to generate a user interface of navigation maps.   The Dupont UI is a good example of this.  Cards shown in the photos are displayed according to the rules defined in the layout of the application and are led by articles and collections of the app.

    You can also define a user interface completely customized in an HTML article.   In this case, the entire user interface is created in a single article HTML using the API of available content.   Article then overrides the browse Page default UI by being the first thing in the default collection.  Axis41 demo works this way

  • How can I preview the changes in HTML or CSS on the fly?

    Can't see the files on my local machine? How can I see the changes in HTML or CSS, I'm doing with Chrome development tools?

    Thank you!

    Inspect edge is designed to get an overview of your content with multiple mobile devices. Therefore, you can make synchronous Preview in your local computer as local machine cannot be coupled with the application.

    Inspect dashboard provides a Weinre server in the cloud of Creative Adobe that offers the possibility of inspection remotely debug your content on the devices remotely.

  • Not able to send HTML content in E-mail Apex

    Hello

    I use Oracle Apex 4.2 and Oracle 11g XE

    I am trying to add HTML content into the procedure of apex_send mail. But it gives me the error below.

    > > •ORA-06502: PL/SQL: digital error or value: specified incorrect LOB Locator: ORA-22275


    Here is the code I am trying to add in the mail to apex_send


    DECLARE
    l_from varchar2 (1000);
    l_body CLOB.
    l_body_html CLOB.

    BEGIN
    l_body: = null;

    l_body_html: = '
    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    < html >
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; Charset = UTF-8 "/ >"
    < property meta = "og: title" content = "Seasons Greetings from sudhir networks" / >

    < title > Seasons Greetings of sudhir networks < /title >
    < style type = "text/css" >
    / * Client-specific styles * /.
    #outlook {padding: 0 ;} / * Force Outlook to provide a "view in browser" button.} */
    Body {width: 100%! important;}. ReadMsgBody {width: 100%;}. ExternalClass {width: 100% ;} / * Force Hotmail to display the emails to full-width * /}
    body {- webkit - text-size-adjust: none ;} / * platforms Webkit preventing to change the default text sizes.} */

    / * Reset Styles * /.
    Body {margin: 0; padding: 0 ;}}
    IMG {border: 0; height: auto; line-height: 100%; border: none; text-decoration: none ;}}
    table td {border-collapse: collapse ;}}
    #backgroundTable {height: 100%! important; margin: 0; padding: 0; width: 100%! important ;}}

    body {#backgroundTable}
    /*@Editable*/ background-color: #FAFAFA;
    }
    {#templateContainer}
    /*@Editable*/ border: 1px solid #DDDDDD;
    }
    H1, .h1 {}
    /*@Editable*/ color: #202020;
    Display: block;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ font-size: 34px;
    /*@Editable*/ make-weight: bold;
    /*@Editable*/ line-height: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 0;
    /*@Editable*/ text-align: left;
    }
    H2, .h2 {}
    /*@Editable*/ color: #202020;
    Display: block;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ font-size: 30px;
    /*@Editable*/ make-weight: bold;
    /*@Editable*/ line-height: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 0;
    /*@Editable*/ text-align: left;
    }
    H3, .h3 {}
    /*@Editable*/ color: #202020;
    Display: block;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ font-size: 26px;
    /*@Editable*/ make-weight: bold;
    /*@Editable*/ line-height: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 0;
    /*@Editable*/ text-align: left;
    }
    H4 {.h4}
    /*@Editable*/ color: #202020;
    Display: block;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ do-size: 22px;
    /*@Editable*/ make-weight: bold;
    /*@Editable*/ line-height: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 0;
    /*@Editable*/ text-align: left;
    }
    {#templatePreheader}
    /*@Editable*/ background-color: #FAFAFA;
    }
    .preheaderContent div {}
    /*@Editable*/ color: #505050;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ do-size: 10px;
    /*@Editable*/ line-height: 100%;
    /*@Editable*/ text-align: left;
    }
    .preheaderContent div one: link, .preheaderContent div one: visited, / * substitute Yahoo! Mail * / div .preheaderContent a .yshortcuts / * substitute Yahoo! Mail * / {}
    /*@Editable*/ color: #336699;
    /*@Editable*/ police-weight: normal;
    /*@Editable*/ text-decoration: underline;
    }
    {#templateHeader}
    /*@Editable*/-Couleur background: #FFFFFF;
    /*@Editable*/ border-bottom: 0;
    }
    {.headerContent}
    /*@Editable*/ color: #202020;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ font-size: 34px;
    /*@Editable*/ make-weight: bold;
    /*@Editable*/ line-height: 100%;
    /*@Editable*/ padding: 0;
    /*@Editable*/ text-align: center;
    /*@Editable*/ vertical-align: middle;
    }
    .headerContent a: link, .headerContent a: visited, / * substitute Yahoo! Mail * / .headerContent a .yshortcuts / * substitute Yahoo! Mail * / {}
    /*@Editable*/ color: #336699;
    /*@Editable*/ police-weight: normal;
    /*@Editable*/ text-decoration: underline;
    }

    {#headerImage}
    height: auto;
    Max-width: 600px;
    }
    #templateContainer, {.bodyContent}
    /*@Editable*/-Couleur background: #FFFFFF;
    }
    .bodyContent div {}
    /*@Editable*/ color: #505050;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ do-size: 14px;
    /*@Editable*/ line-height: 150%;
    /*@Editable*/ text-align: left;
    }
    .bodyContent div one: link, .bodyContent div one: visited, / * substitute Yahoo! Mail * / div .bodyContent a .yshortcuts / * substitute Yahoo! Mail * / {}
    /*@Editable*/ color: #336699;
    /*@Editable*/ police-weight: normal;
    /*@Editable*/ text-decoration: underline;
    }

    .bodyContent img {}
    Display: inline;
    height: auto;
    }
    {#templateFooter}
    /*@Editable*/-Couleur background: #FFFFFF;
    /*@Editable*/ border-top: 0;
    }

    .footerContent div {}
    /*@Editable*/ color: #707070;
    /*@Editable*/ do-family: Arial;
    /*@Editable*/ do-size: 12px;
    line /*@editable*/-hauteur: 125%;
    /*@Editable*/ text-align: left;
    }
    .footerContent div one: link, .footerContent div one: visited, / * substitute Yahoo! Mail * / div .footerContent a .yshortcuts / * substitute Yahoo! Mail * / {}
    /*@Editable*/ color: #336699;
    /*@Editable*/ police-weight: normal;
    /*@Editable*/ text-decoration: underline;
    }

    .footerContent img {}
    Display: inline;
    }

    {#social}
    /*@Editable*/ background-color: #FAFAFA;
    /*@Editable*/ border: 0;
    }

    #social div {}
    /*@Editable*/ text-align: center;
    }

    {#utility}
    /*@Editable*/-Couleur background: #FFFFFF;
    /*@Editable*/ border: 0;
    }
    #utility div {}
    /*@Editable*/ text-align: center;
    }

    #monkeyRewards img {}
    Max-width: 190px;
    }
    < / style >
    < / head >
    < body leftmargin = "0" marginWidth don't = "0" topmargin = "0" marginheight = "0" offset = "0" >
    < center >
    < table border = "0" cellpadding = "0" cellspacing = "0" height = "100%" width = "100%" id = "backgroundTable" >
    < b >
    < td align = "center" valign = "top" >

    < table border = "0" cellpadding = "0" cellspacing = "0" width = "600" id = "templateContainer" >
    < b >
    < td align = "center" valign = "top" >
    <!-/ / start model header------->
    < table border = "0" cellpadding = "0" cellspacing = "0" width = "600" id = "templateHeader" >
    < b >
    < class td 'headerContent' = >
    < img src = "http://www.sudhirnetworks.com/i/logo/sudhir-logo.png" style = "max-width: 600px;" padding-top: 20px; "id ="headerImage campaign-icon"mc:label ="header_image"mc:edit ="header_image"mc:allowdesigner mc:allowtext / >
    < table >
    < /tr >
    < /table >
    <!-/ / end Header Template------->
    < table >
    < /tr >
    < b >
    < td align = "center" valign = "top" >
    <!-/ / start model body--->
    < table border = "0" cellpadding = "0" cellspacing = "0" width = "600" id = "templateBody" >
    < b >
    < td valign = "top" class = "bodyContent" >

    <!-/ / start Module: Content Standard postal card------->
    < table border = "0" cellpadding = "20" cellspacing = "0" width = "100%" >
    < tr mc: repeatable >
    < td valign = "top" >
    < img src = "http://www1.sudhirnetworks.com/ecard/sudhir_holidaycard_clickhere.jpg" style = "width: 560px;" mc:label = "postcard_image" mc:edit = mc:allowtext "postcard_image" / >
    < div mc:edit = "std_content00" >
    < Facilities > < strong > custom message goes here.


    < / div >
    < table >
    < /tr >
    < /table >
    <!-/ / end of Module: Content Standard postal card------->

    < table >
    < /tr >
    < /table >
    <!-/ / end of model body--->
    < table >
    < /tr >
    < /table >

    < table >
    < /tr >
    < /table >
    < /Center >
    < / body >
    < / html >
    ';

    l_from: = lower(:app_user) | Lower('@sudhirnetworks.com');

    () apex_mail. Send
    p_to = >: P1_TO,.
    P_FROM = > l_from,.
    p_body = > l_body,
    p_body_html = > L_BODY_HTML,
    p_subj = >: P1_SUBJECT);

    APEX_MAIL. PUSH_QUEUE;

    END;


    Please suggest me how to solve this problem.

    Thank you
    Sudhir

    Sudhir_Meru wrote:
    I'll add the message in the body, the question do face is now with html code. Please address this question. not the text of the aircraft.

    Please read carefully the answers before answer you.

    Trent has clearly mentioned that you must fill in the p_body parameter

    And also read the documentation for the parameters for the send procedure

    You must pass a value in p_body and it's not question of what format you want to send your email.

    See you soon,.
    Vikram

  • I changed the my imac with a new drive and I lost the original CD/DVD which came with the new Mac.

    I changed the my imac with a new drive and I lost the original CD/DVD which came with the new Mac.

    and when I go to install the mac lion antiracism apple with reticle logo means error

    what can I do with these

    Please help money

    You can get the replacement system install & Restore CD/DVD of the customer support of Apple - to the United States, (800) 767-2775-for a sum low S & h. you will need to have the model or the serial number of your Mac available.

    If you are not in the United States, you may need to go through the regional Apple Store that serves your location to find the phone number. Here is a list of links to all - http://store.apple.com/Catalog/US/Images/intlstoreroutingpage.html , another resource: International Support Phone #s.

  • Display HTML content in the field of browser Blackberry eception illegalstateexception?

    My code what I do wrong here please help me?

    String content = ("< police =" verdana"size ="1"> SUREBUILD is a general purpose cement.) Typical applications are of concrete, mortar, plaster, masonry, paving, precast, grout, shotcrete products, the stabilization of soils and other general home and DIY applications. & nbsp; < br / > < br / > SUREBUILD is & nbsp; a proven product that has been designed to achieve a constant and appropriate performance. SUREBUILD is & nbsp; compatible with commercial chemical admixtures. ("< / police > < br / > ');

    BrowserFieldConfig config = new BrowserFieldConfig();
    HttpHeaders headers = new HttpHeaders();
    headers.addProperty (HttpHeaders.HEADER_CONTENT_TYPE, HttpHeaders.CONTENT_TYPE_TEXT_HTML);
    headers.addProperty (HttpHeaders.HEADER_ACCEPT_CHARSET, "UTF - 8");
    config.setProperty (BrowserFieldConfig.HTTP_HEADERS, headers);
    BrowserField contentField = new BrowserField (config);
    This.Add (contentField); Add to the form
    contentField.displayContent (content, "http://localhost"); content-> your HTML content
    listVfm.add (contentField);

    I posted an answer to this on StackOverflow, and now the question seems to have been deleted...  In summary, the comments that have been included:

    (a) the code provided does not fail, can we have an extract that makes?

    (b) it would be useful to have additional information, such as the environment of the failuire, the detailed message for the Exception and the line to wich that failure occurred.

    (c) when you try to view an html page, it should be a full html page.

  • Field of browser pointing to html content in my device

    Hi all

    I'm currently exploring the field of browser and its related APIs and met an interesting query.

    Scenario: I have a file HTML bundled with my cod file, and when the browser field is called, that the HTML content must be displayed in the field of the browser instead of seek it from the internet.

    Can this be achieved? If so, how can I go about it?

    Thank you...

    Thanks for all the suggestions, guys...  They really helped me sort this one out... Just to sum everything up, there are 3 ways to make the HTML content in the browser field.

    1. Using the "cod://ProjectName/FileName.html" as the url for establishing the HttpConnection where the name of the file is placed in my project .cod file.
    2. Provide the HTML in a string, convert it to a ByteArrayOutputStream, encode it with the Base64OutputStream and challenges in the form of url for the opening of HttpConnection.
    3. Simulate an implementation of the HttpConnection and use it instead of the original HttpConnection. (However, this only works for static HTML content, it is to say no links or references should be included in this happy)

    All of these solutions have worked with JDE 4.0.0 and I used the BrowserContentManagerDemo and the BrowserFieldSampleApplication (packed in the JDE) as reference implementations.

    I hope this helps everyone who crosses with the same requirement...

    See you soon,.

    Solène...

  • Centralized content with ASA filtering

    Hi all

    I was wondering if it is possible to install an ASA with CSC-SSM-20 module and license of 500 users in central administration, to allow him to meet with Microsoft AD and funcion as a proxy for the filtering of content for remote sites and mobile users. Basically what we need to achieve is remote sites users authenticate with AD via VPN and before going out through web surfing their local ISP would need through content in HQ on ASA filtering.

    In this case all the remote site Internet traffic would need to come out by the FAI in HQ?

    Another solution is to implement the filtering of content with TrendMicro on 800 routers in each site, but the license would be very costly for the 60 + wise sites.

    Thanks for your suggestions.

    So from what you say, you'll have the ASA terminate your VPN for remote users, and then, you want the ASA with the CSC to make the URL filtering based on AD.

    Well that might work if all of your web traffic of your users hit the ASA (turn around it). If you perform the tunneling split for the web, it will not work because the ASA does not see traffic navigation.

    I hope that makes sense.

    PK

Maybe you are looking for