Dataset region in div loaded by loadContent

WIth the forum search functionality not working, it is
difficult to see if this issue has been answered somewhere. Any
help would be greatly apreciated.
I hae a div area defined on the page which I would like to
dyanmically load using the loadContent() method from a URL that
contains a snippet of HTML. The snippet of HTML contains a div
array defined as a region bound to a dataset. The dataset region
does not appear to be working when it is dynamicaly loaded, but the
exact same code works when not dynamically loaded.
Should page content dynamically loaded using an HTMLPanel
widget be able to include spry tags to display a region bound to a
dataset?
Thanks
SHenrie

That did the trick! Thanks so much for the help and it
certainly makes sense why that is needed.
I am curious, is the requirement to do that documented
anywhere, because I did spend a couple days searching the doc for a
resolution for this.

Similar Messages

  • Region Position 01 loads before 'Before Regions' processes?

    Bug?
    I'm using HTML DB 2.0 and it appears that the region in Region Position 01 loads before my 'Before Regions' process. The process sets a page item's value to null and all the regions on the page are conditional for 'Item not null' for that item. All of them are hidden except for the region in Region Position 01 until the next page load where the item is already null -- only then all the regions are hidden. I'm using 'Before Header' now instead, but that has a nasty implication.
    Pavel

    I think I have an idea of what's causing it and how you can reproduce it.
    Edit your template and have it contain the following:
    #REGION_POSITION_01#
    #BOX_BODY#
    #REGION_POSITION_02#
    Note that region position 01 is before #BOX_BODY#.
    Try it now :)
    Pavel
    ---- Update:
    Ordered them like this: body, reg1, reg2, .... and no longer using 'body' on that page. That fixed the problem.
    Pavel

  • Clear data in sql report region on page load....

    I have a sql report region.when i run the page the data getting populate on the screen because of the sql query. On page load i dont want to populate the data in screen.
    i have created the page process to clear cahe the page. but the data is not clearing from the screen.
    How to resolve this?
    Thanks & regards,
    Skud.

    Skud,
    you can create condition in report region query e.g. where 1 = :PXX_ITEM, and populate that item on click and then refresh report.
    Bt,
    Marko

  • Div loading issue.

    Sir,
    i have been using drag drop menu made in fireworks and inserted in dreamweaver..since i was facing problem in using frames as my menu was cutting of....so instead of frames i inserted div...there are around 100 divs on my page(at a time only one div is visible)...so could u please tell me it will load all 100 of divs at a time or the visible one only...and by using this concept it will affect the loading speed of page or not.

    I don't know about anyone else, but I'm thoroughly confused. 
    Do you have 100 html pages or 1 HTML page with 100 divisions?  Actually, I have bookmarked a site that uses one huge page with 20 or 30 divisions  plotted to specific coordinates.   It's a fun site but it's not exactly a practical approach so let's hope you're not doing something like that.
    Back to Frames which are not a good choice for 99.99% of websites.  I can tell you from personal experience, the one framed site I built many years ago provided me with daily grief and despair until I took it down.  Do not make the mistakes I made by using frames hoping they will make your site less complicated.  Nothing could be worse than frames.
    http://apptools.com/rants/framesevil.php
    As an alternative to frames, consider using DW Templates, Server-side includes (SSI) or even Library Items.   Guidance  on when to use DW Templates, Library Items and SSIs -
    http://www.adobe.com/devnet/dreamweaver/articles/ssi_lbi_template.html
    Please post a URL to your live web page so we can see what you have so far and look at your code.  That is the best way to get help in these forums.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • ADF Regions - Embedding region pagedef & Page load

    Hi,
    I'm working with regions in JDev 10.1.3.2. The problem I'm having is this: I have a page that uses a region with its own pagedef. So, I added a <page> element in the parent page's pagedef referencing the pagedef of the region and set the 'value' attribute in the <af:region> tag to the page element in the binding container.
    So far so good, the inclusion of the pagedef works fine. The thing is that the region has some "On page load" behavior, implemented following one of Steve Muench's not yet documented apps. In the pagedef of the region I specify the 'ControllerClass' attribute to a backing bean with an EL. If I run the page every thing is rendered but an error appears saying "Missing class #{...}" and therefore the onPageLoad behavior is not executed. If I specify the ControllerClass with the fully qualified name of the class a "ClassCastException" is thrown.
    If I run the page as a stand-alone jsp it works fine, the problem must have something to do with the whole pagedef embedding business...
    Any help or insight is appreciated.
    Thanks,
    Yoel

    Third repost.
    I'm starting to get the feeling that I'm being completely and utterly ignored. Either I didn't explain the problem well or the problem isn't solvable. I just want anyone, and I mean anyone at all to tell me:
    a) "The problem has no solution, wait for the production release of JDev 11"
    b) "I'm having the same problem"
    c) "We are working on it"
    d) "Please don't ask anything else about regions, we released them without proper testing. So some things are going to work and the others may work or not."
    Yoel

  • Hide Button or region on page load

    Hi,
    I have a page with button. my request is to check an attribute from VO if its value e.g. N the button will be hidden, otherwise it will be displayed .

    Hi Meedoo ,
    In Controller PR , get VO , VORowImpl and get the Attribute value
    VORowImpl  row = (VORowImpl)VO.getCurrentRow();// or VO.first();
    row.getAttribute();//The Attribute you want to get
    if("N".equals(row.getAttribute())){
    OAButtonBean button =(OAButtonBean)webBean.findIndexedChildRecursive("Id of Button");
         button.setRendered(Boolean.FALSE);
    sometimes
    OAButtonBean button =(OAButtonBean)webBean.findIndexedChildRecursive("Id of Button"); might throw null pointer exception , if you encounter that use the below code
    OAPageLayoutBean pageBean =(OAPageLayoutBean)pageContext.getPageLayoutBean();
    OAButtonBean buttonBean =(OAButtonBean)pageBean.findIndexedChildRecursive("Id of Button");
    buttonBean.setRendered(Boolean.FALSE);
    Thanks
    Sasikasyap .

  • ADF Dynamic region in a popup does not load

    Hi Experts,
    JDEV version used 11.1.1.5
    I have a page which has a table and each row has a command link on one of the columns.
    When I click on the command link an action listener is invoked which decides the DYNAMIC TF that is to be loaded in a pop up .
    The pop up has a dynamic adf region in it.
    Based on the record clicked (using command link) task flow is loaded in the dynamic region of the the Popup .
    But, when i click the same link for the second time or a different record the popup is displayed as blank , The taskflow in the dynamic region is not loaded at all.(getDynamicTaskFlowId is invoked and is also returing the correct TF to be loaded)
    First time it works as expected  , but its not happening from the second time.
    I have used conditional activation , but later due to the above issue I have tried to put an expression #{true} for the active property to test if it works. It didn't.
    Please note that first time there is no issue.It does not work from the second click on same record or any other record.
    Any other suggestions to fix the above issue  are much appreciated.
    Thanks,
    Vikranth

    Hi Frank,
    I have followed the same approach. However in my case its a dynamic af:region which is causing the issue.
    Any other pointers is much apprecitaed.
    Thanks,
    Vikranth

  • Could not load sync groups for subscription - East Asia Region

    Hi all,
    All my sync group in East Asia region cannot be loaded, and even the "sync" page from SQL DATABASE section inside Azure Manage Portal is missing, anyone else also suffered?
    Could not load sync groups for subscription 716564c9-0ea5-4ccb-af2a-16109bb26119. An unexpected error occured when executing the operation. TracingId=ae4ef3c6-4946-91b0-9406-8234be51564c
    Could not load sync groups for subscription d460448b-1093-4f8d-b5b8-17b427547273. An unexpected error occured when executing the operation. TracingId=4f4e9114-8f8c-9b17-be7e-e4a0dd180168
    Could not load agents for subscription 716564c9-0ea5-4ccb-af2a-16109bb26119. An unexpected error occured when executing the operation. TracingId=6f94bc35-d585-91e7-91ec-6cb86473d755
    Could not load agents for subscription d460448b-1093-4f8d-b5b8-17b427547273. An unexpected error occured when executing the operation. TracingId=16cc51a8-df0c-9dcc-a0b5-088e4fcb8a6a
    Could not load database references for subscription 716564c9-0ea5-4ccb-af2a-16109bb26119. An unexpected error occured when executing the operation. TracingId=1c4ec05a-b507-9c82-b8bb-ecb8b7c0dca0
    Could not load database references for subscription d460448b-1093-4f8d-b5b8-17b427547273. An unexpected error occured when executing the operation. TracingId=a2710118-1928-9f71-82fa-1359e616dab2
    Michael

    Hi Michael
    Could you please check whether you are still encountering this issue? The potential root cause is the below windows azure incident:
    4/30
    SQL Database - North Central US - Partial Performance Degradation
    April 30, 2015
    From 16:20 to 18:15 UTC on 30th Apr, 2015, some customers began experiencing issues with Visual Studio Online, Stream Analytics, Service Bus, Multi-Factor Authentication, HD Insight, API Management, and BizTalk Services, due to an underlying SQL issue in
    North Central US. Engineers have validated that impact to SQL has recovered. A lingering issue remains with Service Bus, which is currently impacting VSO and Multi-Factor Authentication; this will be reflected in a separate post to the Service Health Dashboard.
    This incident is now mitigated.
    You can check more details about this incident here http://azure.microsoft.com/en-us/status/#history
    Regards,
    Bowen

  • CR 11.0 Large DataSet & Load Time

    I'm creating a report on a table which has 250k+ rows and it takes a few minutes for the dataset to load.  The report has 3 parameters, two of which are dynamic and come from two fields in the table.
    I'm trying to delay loading of the full dataset until after the parameters have been chosen during run-time.  I've tried populating the parameters using views which filter the data in the database, but the full datasets are still being loaded prior to the parameter forms.
    Is it possible to get the dynamic parameters first before pulling the rest of the reports data?

    Please re-post if this is still an issue to the Data Connectivity - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Spry Dynamic Tabs - reCAPTCHA is missing when loading external php file

    Hello,
    I have solved all my problems lately on this forum.
    But now im converting my site to use Dynamic tabs, and something goes wrong.
    The dynamic tabs load content from external files. It loads html but i think something goes wrong with php and my buttons.
    You need to know ALL is working perfect on the old site.
    2 problems;
    I dont know how to convert my buttons to this new style.
    I dont know why the reCAP suddently is missing.
    Why is reCAPTCHA missing?
    SOURCE HTML (index.html);
    <?php include("PHP/form.php"); ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
         <title>Wientjes Voegwerk &amp; Renovatie - Home</title>
        <meta http-equiv="Content-Language" content="NL" />
         <meta http-equiv="imagetoolbar" content="no" />
         <meta name="MSSmartTagsPreventParsing" content="true" />
        <meta name="description" content="Wientjes Voegwerk en Renovatie is een voeg- en renovatiebedrijf gespecialiseerd in gevelrenovatie. Dagelijkse werkzaamheden zijn het voegen van nieuwbouwwerk, en alle voorkomende vormen van gevelrenovatie. Ik geef uw woning, garage of schoorsteen de aandacht die het verdient en ben trots op het resultaat van mijn werk!"/>
        <meta name="keywords" content="Voegwerk, Renovatie, Reinigen, Impregneren, Muur, Voegen, Steen, Woning, Garage, Schoorsteen, Bedrijf, Gevel, Wientjes, Uitslijten, Kappen, Fundering, Vorstschade, Metselen, Metselwerk, Vocht" />
        <meta name="author" content="Rob Nijlaan" />
        <link href="CSS/Style2.css" rel="stylesheet" type="text/css" />
        <script src="JAVASCRIPT/SpryTabbedPanels.js" type="text/javascript"></script>
        <script src="JAVASCRIPT/SpryEffects.js" type="text/javascript"></script>
         <script src="JAVASCRIPT/SpryData.js" type="text/javascript"></script>
        <script src="JAVASCRIPT/xpath.js" type="text/javascript"></script>
         <script type="text/javascript">
         <!--
         function FadeAndUpdateContent(ele, url){
              try {
                   Spry.Effect.DoFade(ele,{
                        duration: 500, from: 100, to: 0, finish: function() {
                             Spry.Utils.updateContent(ele, url, function() {
                                  Spry.Effect.DoFade(ele,{ duration: 500, from: 0, to: 100 });
              catch(e){ alert(e); }
         -->
         </script>
    </head>
    <body>
    <div id="WContainer">
      <div id="WHeader" align="center"> <img src="Art/VoegenRenLos.png" width="540" height="58" alt="Voeg en Renovatiebedrijf" /><br />
        <img src="Art/WientLogo.png" width="600" height="136" alt="Wientjes Voegwerk &amp; Renovatie" /> </div>
      <script type="text/javascript">
         var dsTabs = new Spry.Data.XMLDataSet("data/data.xml", "tabs/tab");
         function loadContent(panel,url){
              Spry.Utils.updateContent(panel,url);
         Spry.Data.Region.addObserver("example1Region",dateLoadedCallback);
         function dateLoadedCallback(notificationType, notifier, data){
              if (notificationType =="onPostUpdate"){    
                   row= dsTabs.getRowByRowNumber(0)
                   if(row){
                        loadContent('0',row.url)
         </script>
      <div id="example1Region" spry:region="dsTabs">
        <div id="dynamicTabs" class="TabbedPanels">
          <ul class="TabbedPanelsTabGroup" >
            <li spry:repeat="dsTabs" class="TabbedPanelsTab" onclick="loadContent('{ds_RowID}','{url}');" tabindex="0">{title}</li>
          </ul>
          <div class="TabbedPanelsContentGroup">
            <div spry:repeat="dsTabs" id="{ds_RowID}" class="TabbedPanelsContent"></div>
          </div>
        </div>
        <script type="text/javascript">
                var t1 = new Spry.Widget.TabbedPanels("dynamicTabs");
                 </script>
      </div>
      <div id="WFooter" align="center">
        <p class="footer">Wientjes Voegwerk &amp; Renovatie     ,    03- '02       »      Site by ;    <b>Rob Nijlaan</b></p>
      </div>
    </div>
    </body>
    </html>
    Dont mind the extra javascripts they are not used for now (like SpryEffects.js) its for future use.
    SOURCE XML (data.xml);
    <?xml version="1.0" encoding="UTF-8"?>
    <tabs>
        <tab>
            <title>
              tab 1
              </title>
            <url>../data/HOME.html</url>
        </tab>
        <tab>
            <title>Tab2</title>
            <url>examples/tab2.html</url>
        </tab>
         <tab>
            <title>Tab3</title>
            <url>examples/tab2.html</url>
        </tab>
         <tab>
            <title>Tab4</title>
            <url>../PHP/form.php</url>
        </tab>
    </tabs>
    The html file loads like it should be, but the php form has problems.
    See it yourself: http://www.wientjesvoegwerk.nl/index2.html
    The tab 1 displays a html file like it should.
    The tab 4 displays the contact form but you will see the reCAPTHCA is missing.
    I have really no clue why it happens, exept maybe its a PHP issue.
    Maybe the script isnt compatible with non-html documents...
    Can someone please tell me whats the problem and if there is a solution????
    How do i change this button?
    I used this in my previous site:
    <table class="Button"  >
         <tr>
         <td style="padding-right:0px" title ="Home">
         <a href="#" title="Home" style="background-image:url(/Buttons/Home.png);width:172px;height:75px;display:block;"><br/>
         </a></td>
         </tr>
    </table>
    But the dynamic script uses {title} to get the <title> out of the xml.
    I tryd to put this straight into the title tags in the xml but obviously it wont work.
    And i really dont have a clue how to change this.
    My button has a mouseover img. Basicly its 2 buttons in 1 img stacked on top of each other.
    Like this: http://www.wientjesvoegwerk.nl/Buttons/contact.png
    Because of the CSS script it hovers to the right position.
    Part of SOURCE CSS (Style.css)
    .Button a{display:block;}
    .Button a:hover{background-position:left bottom;}
    a.Button {display:none}
    How can i change the xml and the script so "title" can be replaced with the button.
    Or how can i change the button so the mouseover works and the script still takes the button-img from the xml???
    Any help would be nice, because im finnaly in a postition to finish this site, and this is the only blockade left to conquer...

    Maybe it is not liking that the index page is an HTML page and not a PHP page. Try this way:
    In your form.php, remove the following code:
    <?php
    require_once('recaptchalib.php');
    $publickey = "6LfKNwwAAAAAAEdS6PjiDSHRQBDOYrGcM8R1eQQm"; // you got this from the signup page
    echo recaptcha_get_html($publickey);
    ?>
    Replace it with:
    <script type="text/javascript" src="http://api.recaptcha.net/challenge?k=6LfKNwwAAAAAAEdS6PjiDSHRQBDOYrGcM8R1eQQm"></script>
        <noscript>
              <iframe src="http://api.recaptcha.net/noscript?k=6LfKNwwAAAAAAEdS6PjiDSHRQBDOYrGcM8R1eQQm" height="300" width="500" frameborder="0"></iframe><br/>
              <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
              <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
        </noscript>
    The replacement code is the same code that is outputted from the recaptchalib.php file.

  • SQL Report Region Refresh

    Application Express 4.0.2.00.09
    Oracle 11 XE
    How do I setup a Dynamic Action to refresh my region every X number of seconds? I can refresh the region easy enough on events, but I can't seem to figure out the timing thing. Maybe I just need some sleep...
    Austin

    Joe -
    Interestingly enough, I have not yet found a good way to alter the Report Region title with the last update time. I would think there is a way to do it, but I do not currenlty have that knowledge, nor the time to thoroughly investigate how to do it. I do have a bit to share about the mechanics of the refresh discussed earlier in this thread.
    Consider this code, place in the footer of a SQL Report Region:
    <script type="text/javascript">
    <!--
      var d = new Date();
      document.write("Last Updated: " + d);
      setInterval("jQuery('#INTRADAY_IRR').trigger('apexrefresh');", 2000);
    -->This will place the date as a footer to the SQL report. The javascript will then refresh the report every two seconds. (or whatever timeframe you specify) Now, in my SQL for my report, I added an additional column that is the current time. My SQL would look something like:
    SELECT foo,
            bar,
            to_char(sysdate, 'HH24:MI:SS') update_time
    FROM dualThis SQL will show when the data was last fetched from the database, while the footer of the region shows the time when the region was loaded by the browser.
    If you run the page with these, or similar, parameters, you will notice that the update_time column in the report changes with each refresh, however, the region footer does not change. This is because the script isn't called everytime the data is refreshed. This would indicate that using the methodology mentioned previously in this thread, the entire region is not refreshed but simply the dataset and the report itself. This would mean that you would have a quite difficult time updating the region title from the SQL code alone... I'm not saying it is impossible, I just don't know how to do it...
    Having said that- I do have a work around.
    Consider this as the region title:
    <div id="MyUpdatedReport" ></div>Now consider this code in the region header:
    <script type="text/javascript">
    function getUpdatedDate() {
      var d = new Date();
      document.getElementById('MyUpdatedReport').innerHTML="Region Title - Last Updated: " + d;
      t=setTimeout('getUpdatedDate()',2000);
    </script>And this in the region footer:
    <script type="text/javascript">
    <!--
      setInterval("jQuery('#INTRADAY_IRR').trigger('apexrefresh');", 2000);
      getUpdatedDate();
    -->
    </script>We create a DIV tag as our header. Then we have a function in the header that updates our div tag every two seconds. In the footer, we tell APEX to refresh the data every two seconds, and we tell our function to begin working. Effectively, you have a timestamp indicating when, theoretically, the data should have been refreshed. Now, this timestamp in the Region Title is NOT the true update time, but, theoretically it should be close. You should probably test this to see if you want to use it. Personally, I don't like this solution and I don't think I would ever implement it in any sort of production application. However, in an application that is just for me, I might hack something like this up.
    The key part of this work around would be to keep your times synchronized. It would be of no benefit if APEX was refreshing the data every 60 seconds but the title was refreshing every 6 seconds. Yikes, that could confuse a few people.
    I hope this has been a help.
    Austin

  • Changes to xml dataset not showing up on webpage

    Using spry, I added a spry:region to my home page that uses an xml dataset to post special announcements on the page. Since the people that maintain this are not technical I want to give them an easy way to post their announcement and the xml file makes a lot of sense. It will be easy for them to post their "School CLOSED today due to snow" announcement.
    So the whole spry dataset works great except that when I update the xml file, the new content does not show up on the web page. I assume its something to do with cache. I did select the no cache option. If I delete the temp files from the browser I can see the changes. This is obviously a problem. I need the changes to appear on the website when the xml file is updated. Is there some way to force the webpage to recreate the dataset everytime the page is loaded? or some other work around that will do what we need?
    You can see the page at www.tribecacommunityschool.com. At this moment there is a school closing announcement up. It may not be up tomorrow but the code will still be on the page if you want to view it.
    Thanks for any help. I did see a post from 2007 that asked this same question and there were no responses. I'm hoping for better luck and a slightly faster turn around.

    Thanks for the help... This additional explanation on Phil_W's post gave me what I need and the refresh works great.
    testxml.js
    var dsData = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info", {useCache:false,  method:'GET'});
    var dsOne = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info/one", { subPaths: ["test" ], useCache:false,  method:'GET'});
    function RefreshMe()
         var auctionxml = 'testxml.xml?cache=' + (new Date()).valueOf();
         dsData.setURL(auctionxml);
         dsData.loadData();
          dsOne.setURL(auctionxml);
         dsOne.loadData();
    testxml.xml file -------
    <?xml version="1.0" encoding="UTF-8"?>
    <data>
      <info id="1">
        <one>
          <test>test me sdfsdf</test>
        </one>
      </info>
    </data>
    html file----------
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type='text/javascript' src="jquery.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryEffects.js"></script>
    <script language="JavaScript" type="text/javascript" src="testxml.js"></script>
    </head>
    <body >
    <div class="SpryHiddenRegion" spry:region="dsOne">
      <div id="test">{dsOne::test} </div>
    </div>
    <script language="JavaScript">
    // Switch on Refresh of auction data
    var AuctionInterval = 0;
    AuctionInterval = setInterval ( 'RefreshMe()', 5000 );
    </script>
    </body>
    </html>

  • HOWTO:  Changing the URL and reloading the dataset

    Sometimes, you will need to change the url of your dataset
    and reload the dataset. This is quite easy to do with changing a
    variable and calling a method. Below is the code you would use. I
    use it to page through a set of data which only comes back in 10
    row increments and we do not know the recordcount of. (Yippee,
    Oracle E1). Anyway, here's the code....
    <script type="text/javascript" language="javascript">
    rowCount = 0;
    dsPeople = new
    Spry.Data.XMLDataSet("/spry/?event=peopleSearch&srchRowStart="
    + rowCount,"/orders/row", { useCache: false });
    function changeRowCount()
    rowCount = rowCount+10;
    var spryURL = "/spry/?event=peopleSearch&srchRowStart="
    + rowCount;
    dsPeople.url = spryURL;
    dsPeople.loadData();
    </script>
    <div spry:region="dsPeople">
    <div spry:state="loading"><img
    src="/assets/images/ajax-loader.gif"/></div>
    <div spry:state="error">Error Loading
    Data...</div>
    <div spry:state="ready">
    <div spry:repeat="dsPeople">
    <span spry:content="{dsPeople::NAME}"></span>
    </div>
    <a href="javascript:changeRowCount()"><span
    spry:content="Next 10 Records"></span></b>
    </div>
    </div>

    Enabling SSL for Central Administration is a good idea. Making it so it is only accessible using an IP address doesn't make it any more secure. This is security through obscurity and anyone dedicated enough to attacking Central Administration will find the
    site whether it's an IP address or named.
    For what it's worth an attacker is going to try scanning IP ranges long before they try looking at DNS. And, because of the way SharePoint works if the site is accessible by its IP address and not a specific hostname, anyone who knows the IP address and
    the SSL port (443) can connect. If you have a hostname it won't be immediately accessible.
    Some other thoughts: When you rely just on the IP address, what happens if you want to move Central Administration to another server in the farm, or you want to provide load balancing and have multiple servers hosting Central Administration? What happens
    when the server running Central Administration dies so you create a new Central Administration site on a server with a different IP address? How will you communicate this URL change to all of your administrators?
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights
    Sorry,
    I wasn't clear in my OP.  The IP would be tied to a DN.  So you would go https://abc123.com and it would ask for authentication.  That URL would be tied to a separate IP on the network card of that server.  The IP address association
    is done through IIS.

  • Cross-domain JSON dataset

    Hello, I'm working on an AIR application that needs to get a
    dataset from the internet. Is this possible as is?
    If not, I would like an example of how I would go about
    implementing cross-domain JSON datasets in Spry. I've been playing
    around with JSON injection requests, and that seems to return the
    data just fine, but how do I get the data into spry?
    My recieving function looks like this:
    callback( data )
    .if(data == null){
    ....alert('error');
    .}else{
    ....var imageTitle = data.Image.Title;
    etc etc..
    Thanks in advance

    I'll paste the code here to show you what I'm attempting.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
       <head>
          <title>JSON Dataset Example</title>
          <script language="Javascript" type="text/javascript" src="includes/SpryData.js"></script>
          <script language="Javascript" type="text/javascript" src="includes/SpryJSONDataSet.js"></script>
          <script type="text/javascript">
             var ds1 = new Spry.Data.JSONDataSet("includes/testing.js", {path:"Posts"});
          </script>
       </head>
       <body>
          <div spry:region="ds1">
             <div spry:state="loading">Loading Data...</div>
             <div spry:state="error">Error Loading JSON Data</div>
            <div spry:state="ready" spry:repeat="ds1">
                <p>
                {title} <a href="{link}">Link</a><br/>
                </p>
             </div>
          </div>
       </body>
    </html>
    Above is the working version with the JSON data copied to a file on my server.
    This is the actual link to the JSON that I'm wanting to use:
    http://mcelroy.acquiretm.com/services/CareerCenterJSON.aspx?get=GetActiveJobs
    But of course using this path causes it to fail.
    Thanks again for the help!

  • JSON Spry Dataset Cross Domain

    Hello all,
    I'm trying to use Spry to load a JSON dataset. I can successfully load and display the dataset if copy the content of the JSON using a reader, such as: http://jsonformatter.curiousconcept.com/ and placing it in a file on my server.
    However, if I try to pull directly from the source, it fails. I'm assuming this is because the JSON isn't located my server. Is there a way around this? I've been searching for a while now, and haven't found a solution. Thanks!

    I'll paste the code here to show you what I'm attempting.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:spry="http://ns.adobe.com/spry">
       <head>
          <title>JSON Dataset Example</title>
          <script language="Javascript" type="text/javascript" src="includes/SpryData.js"></script>
          <script language="Javascript" type="text/javascript" src="includes/SpryJSONDataSet.js"></script>
          <script type="text/javascript">
             var ds1 = new Spry.Data.JSONDataSet("includes/testing.js", {path:"Posts"});
          </script>
       </head>
       <body>
          <div spry:region="ds1">
             <div spry:state="loading">Loading Data...</div>
             <div spry:state="error">Error Loading JSON Data</div>
            <div spry:state="ready" spry:repeat="ds1">
                <p>
                {title} <a href="{link}">Link</a><br/>
                </p>
             </div>
          </div>
       </body>
    </html>
    Above is the working version with the JSON data copied to a file on my server.
    This is the actual link to the JSON that I'm wanting to use:
    http://mcelroy.acquiretm.com/services/CareerCenterJSON.aspx?get=GetActiveJobs
    But of course using this path causes it to fail.
    Thanks again for the help!

Maybe you are looking for

  • Camera Raw 5.5 won't install

    I uninstalled and reinstalled Photoshop Extended CS4 on my Mac running Leopard (NOT Snow Leopard).  I went through the Adobe Updater to update my software, and it said it successfully updated my system to ACR 5.5, but it doesn't seem to have. Bridge

  • [SOLVED] Unbound refuses to start

    Hi, I've set up DNSCrypt and Unbound, as explained in the wiki. I've enabled systemd services both for DNSCrypt and Unbound and created configuration file, to have DNSCrypt started before Unbound. Here is my /etc/systemd/system/dnscrypt-proxy.service

  • New activation code for Elements

    Hi, My pc's hard drive recently failed , and I have replaced the pc with a Mac mini. Unfortunately, I cannot access the pc to deactivate the licence to allow me to activate it on the mac. Could you please help with this by providing a new licence cod

  • Cannot download ACR 4.41

    I have been trying for the last hour to download ACr 4.41 from the link given on this page. I have tried three different computers, 2 x Xp1 x Vista, and two different browsers, I.E and Firefox. I get the the download button but all that happens id a

  • When will the workitem be sent to mutiple users' inbox?

    Hi experts, in the workflow step, i assign an organization unit as the responsible agent in this unit, it has mutiple users. . in the task level, it is general task. i am really confused with when the workitem will be sent to mutiple users' inbox or