Xml on server not loading consistently

I have a project in which I'm loading an xml file of about
70kb in size. When testing, I'm finding that sometimes it loads
properly, and sometime the user needs to click the browser's
Refresh button before the xml will load.
I'm using what I think is fairly common code:
myData.onLoad = function(success) {
if (success) {
//code here parses the xml
myData.load("myxmlfile.xml");
The file always plays perfectly fine when played directly off
of my PC, but I receive the inconsistent results when the files are
loaded to the server. I assume that the xml file isn't being loaded
properly or quickly enough all the time, but I can't figure out
what the issuemight be. Any help would be appreciated. Thanks!
Bill

>>and sometime the user needs to click the browser's
Refresh button before
>>the xml will load.
Hi Bill, the code you have looks ok. Is the movie doing the
loading of the
XML, being loaded by another movie - a preloader perhaps? If
that's the case
you probably need to delay the load call until the movie is
fully loaded.
Dave -
www.offroadfire.com
Head Developer
http://www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/

Similar Messages

  • JDEV 10.1.3  XML Editor does not load XML file

    I am trying to edit a large (300MB+) xml file with JDEV 10.1.3 running on a Windows XP Pro workstation with a 2.8 ghz processor and 1GB of memory. The XML file has application data in it. The file loads just fine into the Oracle database using the XML Developer's toolkit so I don't thing there is anything wrong with the XML.
    I'm finding that the XML editor does not load the file. Many minutes elapse, then JDEV appears to simply give up - JDEV is no longer busy. There's no XML data to edit - that window is empty. There are no error messages displayed.
    I'm new to JDEV so I need to know if there is an error log file I should examine.
    BTW, other XML editors (XML Spy, Stylus Studio, etc) simply run out of memory and lock up the machine - it appears they are tryign to convert the XML file contents into 32-bit unicode in memory, build a list of pointers to impose a DOM-like structure, and then load their editor.

    Do you really want to manually edit the 300MB file? how much scrolling will you need to do to get to the last row?
    In any case it is likely that JDeveloper also runs out of memory - you can try running the [jdev-root]\jdev\bin\jdev.exe file and see if you get any error message in the log window.

  • XML grid gallery not loading full images(except for one)

    hi,
    I just created my first flash website, but one of my XML image galleries is not working properly. I am using the same (code, layout, just different pics and xml files) gallery on 4 of my pages, however, one("products")  of the 4 will not load the "full" images. The thumbnails load, they decrease opacity when moused over, but once you click on one, the progress bar loads till complete and just stops. You can see the problem in action atwww.erikhigbee.com on the "Products" page. This problem, however, only occurred after I hosted it on iPage.com. When I test it (Ctrl+Enter) in Flash, test it in Dreamweaver or open the .html of it from my computer, everything works perfectly. It is only after I FTP upload all the files to iPage's server that this problem occurs. I made sure to keep the filetree the same and everything. Is it a problem with Ipage? Are too many images trying to load??
    Furthermore, for some odd reason the 1st image(left), 4th row down on the s"Products" page DOES load the full image but the others still dont and I can't for the life of me figure out why. All the code is exactly the same as on the other pages.
    Thanks for any and all help/advice you can give me!
    one thought(from posts on other forums) could be inefficient code.  Error #2044: Unhandled IOErrorEvent:. text=Error #2036: Load Never Completed. pops up whenever the thumbs are clicked.  idk if that helps.
    below is the code i used for the gallery. Could anyone take a quick look over it and see if any problems/inefficiencies jump out at ya??
    [CODE]import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.events.MouseEvent;
    import fl.controls.ProgressBar;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    var columns:Number;
    var my_x:Number;
    var my_y:Number;
    var my_thumb_width:Number;
    var my_thumb_height:Number;
    var my_images:XMLList;
    var my_total:Number;
    var container_mc:MovieClip;
    var preloaders_mc:MovieClip;
    var full_mc:MovieClip;
    var x_counter:Number = 0;
    var y_counter:Number = 0;
    var my_tweens:Array = [];
    var container_mc_tween:Tween;
    var full_tween:Tween;
    var myXMLLoader:URLLoader = new URLLoader();
    myXMLLoader.load(new URLRequest("gallery_hats.xml"));
    myXMLLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void{
    var myXML:XML = new XML(e.target.data);
    columns = myXML.@COLUMNS;
    my_x = myXML.@XPOSITION;
    my_y = myXML.@YPOSITION;
    my_thumb_width = myXML.@WIDTH;
    my_thumb_height = myXML.@HEIGHT;
    my_images = myXML.IMAGE;
    my_total = my_images.length();
    createContainer();
    callThumbs();
    myXMLLoader.removeEventListener(Event.COMPLETE, processXML);
    myXMLLoader = null;
    function createContainer():void{
    container_mc = new MovieClip();
    container_mc.x = my_x;
    container_mc.y = my_y;
    addChild(container_mc);
    container_mc.addEventListener(MouseEvent.CLICK, callFull);
    container_mc.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    container_mc.buttonMode = true;
    preloaders_mc = new MovieClip();
    preloaders_mc.x = container_mc.x;
    preloaders_mc.y = container_mc.y;
    addChild(preloaders_mc);
    function callThumbs():void{
    for (var i:Number = 0; i < my_total; i++){
    var thumb_url = my_images[i].@THUMB;;
    var thumb_loader = new Loader();
    thumb_loader.load(new URLRequest(thumb_url));
    thumb_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
    thumb_loader.name = i;
    thumb_loader.x = (my_thumb_width+10)*x_counter;
    thumb_loader.y = (my_thumb_height+10)*y_counter;
    if (x_counter+1 < columns){
    x_counter++;
    } else {
    x_counter = 0;
    y_counter++;
    var preloader_pb:ProgressBar = new ProgressBar();
    preloader_pb.source = thumb_loader.contentLoaderInfo;
    preloader_pb.x = thumb_loader.x;
    preloader_pb.y = thumb_loader.y;
    preloader_pb.width = my_thumb_width;
    preloader_pb.height = my_thumb_height/10;
    preloaders_mc.addChild(preloader_pb);
    preloader_pb.addEventListener(Event.COMPLETE, donePb);
    function thumbLoaded(e:Event):void{
    var my_thumb:Loader = Loader(e.target.loader);
    container_mc.addChild(my_thumb);
    my_tweens[Number(my_thumb.name)]=new Tween(my_thumb, "alpha", Strong.easeIn, 0,1,0.5, true);
    my_thumb.contentLoaderInfo.removeEventListener(Event.COMPLETE, thumbLoaded);
    function callFull(e:MouseEvent):void{
    var full_loader = new Loader();
    var full_url = my_images[e.target.name].@FULL;
    full_loader.load(new URLRequest(full_url));
    full_loader.contentLoaderInfo.addEventListener(Event.INIT, fullLoaded);
    var full_pb:ProgressBar = new ProgressBar();
    full_pb.source = full_loader.contentLoaderInfo;
    full_pb.x = (stage.stageWidth - full_pb.width)/2;
    full_pb.y = (stage.stageHeight - full_pb.height)/2;
    preloaders_mc.addChild(full_pb);
    full_pb.addEventListener(Event.COMPLETE, donePb);
    container_mc.removeEventListener(MouseEvent.CLICK, callFull);
    container_mc.buttonMode = false;
    container_mc.removeEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.removeEventListener(MouseEvent.MOUSE_OUT, onOut);
    container_mc_tween = new Tween(container_mc, "alpha", Strong.easeIn, 1,0.5,0.5, true);
    function fullLoaded(e:Event):void{
    full_mc = new MovieClip();
    full_mc.buttonMode = true;
    addChild(full_mc);
    var my_loader:Loader = Loader(e.target.loader);
    full_mc.addChild(my_loader);
    full_tween = new Tween(my_loader, "alpha", Strong.easeIn, 0,1,0.5, true);
    my_loader.x = (stage.stageWidth - my_loader.width)/2;
    my_loader.y = (stage.stageHeight - my_loader.height)/2;
    my_loader.addEventListener(MouseEvent.CLICK, removeFull);
    my_loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, fullLoaded);
    function removeFull(e:MouseEvent):void{
    var my_loader:Loader = Loader (e.currentTarget);
    full_tween = new Tween(my_loader, "alpha", Strong.easeOut, 1,0,0.5, true);
    full_tween.addEventListener(TweenEvent.MOTION_FINISH, tweenFinished);
    container_mc_tween = new Tween(container_mc, "alpha", Strong.easeOut, 0.5,1,0.5, true);
    function donePb(e:Event):void{
    var my_pb:ProgressBar = ProgressBar(e.target);
    preloaders_mc.removeChild(my_pb);
    my_pb.removeEventListener(Event.COMPLETE, donePb);
    function tweenFinished(e:TweenEvent):void{
    var my_loader:Loader = Loader (e.target.obj);
    my_loader.unload();
    full_mc.removeChild(my_loader);
    removeChild(full_mc);
    full_mc = null;
    container_mc.addEventListener(MouseEvent.CLICK, callFull);
    container_mc.buttonMode = true;
    container_mc.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    container_mc.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    var my_tween:Tween = Tween(e.target);
    my_tween.removeEventListener(TweenEvent.MOTION_FINISH, tweenFinished);
    function onOver(e:MouseEvent):void{
    var my_thumb:Loader = Loader(e.target);
    my_thumb.alpha = 0.5;
    function onOut(e:MouseEvent):void{
    var my_thumb:Loader = Loader(e.target);
    my_thumb.alpha = 1;
    [/CODE]

    Hi,
    at www.lynda.com there is a great video tutorial.
    Search for Create and Embed a Photo Gallery in a PDF

  • Images not loading consistently

    Hi,
    we have an J2EE application which has been deployed in production server. The specs are:
    Server OS: Sun Solaris 9
    Web Server: Resin pro-3.0.14
    Application Server: IBM Websphere Express 6.0.0.1.
    The problem is sometimes the images are not loaded, but if we refresh the page or use back button and click again or use forward button again, the images are loading. Sometimes the javascript as well as the css files are also not loaded.
    But the peculiar problem is that if we are in a LAN connection, everything is working fine. But if we have a static IP or browse in a internet browsing center or browse from home, then this problem occurs.
    I am at complete loss over this issue. Any help would be appreciated.
    P.S. The application includes jsp, html, java classes, EJB and DB2 database.
    Thanks in advance.

    I am also having similar problem. In my case, I have a simple web application made of html and jsp. My html is trying to load some images from folder webapps/example/images. The code I have used is <img src="images/logo.jpg" width="500" height="70">.
    The problem is only 1 or 2 images gets loaded and rest are blank. Can anyone help on this. If one image is loading properly why can't the rest do the same if all are present in same folder.

  • XML data is not loading inside buttons !

    Hi there... it is an urgent issue: My application only loads
    the XML data to the "main" dynamic text fieds.. but all the rest
    which are "inside" a button do not load them !!! why ? is there any
    special way to load them ?
    the way I loaded to the "main" text fields is:
    promo01title_txt.text =
    obj_xml.firstChild.childNodes[0].firstChild.nodeValue;
    I do the same for the buttons but it does not work.. am I
    supposed to type a prefix or something like that before the text
    field ??? I will appreciate your answer, thanks in advance.
    Jiten

    If I understand your post you have dynamic text fields on the
    stage that you are loading string values from an XML file into the
    text property. It sounds like you are trying to take XML strings
    and then load them to a text field that is part of another movie
    clip. Based on your code it would be simply
    myButton.mytextfield.text =
    xml.firstchild.childNodes[0].firstchild.nodeValue
    You need to give the complete movieclip path of the
    textfield. If it is part of another movie clip then you need to
    start with that movieclips name then the name of the
    textfield.

  • Mac OS X Server not loading

    I rebooted my mac mini server and now the OS is not loading: all I see is a gray screen with the Apple logo and a rotating cursor. I've tried to load it in the command line (Cmd + S) and ran fsck -fy. Found no issues, reboot, got the same gray screen with a rotating cursor.
    Help!

    I ended up reinstalling the OS. Called Apple's support, that the best they could do.

  • ACE: if one server is loaded and it want to use the server not loaded? how?

    Hello,
    I have 2 real Servers (10.24.8.200 and 10.24.8.201) in loadbalance (HTTP and HTTPS) with VIP 10.24.16.10, and the type of loadbalance is round robin, but when the server (10.24.8.200) has high proccessing for example memory or hard disk and users try to access to server (10.24.8.200) this is more slow. if this server is too loaded? how can the ACE switch to another real server? in 10 seconds for example?
    Best Regards
    My configuration is:
    ACE-MOD6/integracion1# sh runn
    Generating configuration....
    access-list anyone line 8 extended permit ip any any
    probe http get-index
    interval 4
    open 2
    recieve 2
    faildetect 2
    passdetect interval 10
    expect status 200 200
    rserver host Srv1
    ip address 10.24.8.200
    probe get-index
    inservice
    rserver host Srv2
    ip address 10.24.8.201
    probe get-index
    inservice
    serverfarm host servers
    rserver Srv1
    inservice
    rserver Srv2
    inservice
    class-map type management match-any ADM-CONTEX-SERV1
    2 match protocol telnet any
    3 match protocol ssh any
    4 match protocol icmp any
    class-map type http loadbalance match-all Check-Headers
    2 match http url .*
    3 match http header Host header-value "10.24.16.*"
    4 match http header User-Agent header-value ".*MSIE.*"
    class-map match-all VIP-10-HTTP
    2 match virtual-address 10.24.16.10 tcp eq www
    class-map type http loadbalance match-all other-HTTP
    2 match http url .*
    policy-map type management first-match ADM-CTX-SERV1
    class ADM-CONTEX-SERV1
    permit
    policy-map type loadbalance first-match L7-logic
    class Check-Headers
    serverfarm servers
    class other-HTTP
    serverfarm servers
    policy-map type loadbalance first-match lb-logic
    class class-default
    serverfarm servers
    policy-map multi-match client-vips
    class VIP-10-HTTP
    loadbalance vip inservice
    loadbalance policy L7-logic
    loadbalance vip icmp-reply active
    interface vlan 60
    description inside
    ip address 10.24.8.5 255.255.255.0
    access-group input anyone
    access-group output anyone
    service-policy input ADM-CTX-SERV1
    no shutdown
    interface vlan 233
    description outside
    ip address 10.24.16.5 255.255.255.0
    access-group input anyone
    access-group output anyone
    service-policy input ADM-CTX-SERV1
    service-policy input client-vips
    no shutdown
    ip route 0.0.0.0 0.0.0.0 10.24.16.1

    If your server is running an SNMP agent, the ACE can use SNMP to pull stats from the server. You'll just need the correct OID. For instance, if you were using Linux, you might use something like the following as a probe:
    probe snmp linux-stats
    interval 10
    community public
    oid .1.3.6.1.4.1.2021.10.1.5.1
    threshold 75
    .1.3.6.1.4.1.2021.10.1.5.1 is the OID for CPU load average (for Linux, Windows would have a different OID). If it goes above 75, the server is marked as out. When used with the least-loaded predictor, it will also divert more traffic to the least loaded server, as defined by that OID. You can use multiple OIDs in conjunctions and give them different weights.
    However, judging from your timeout value of your get-http health check, I would check to see if the issue isn't that your servers are flapping because of a too-low receive threshold. Each server has 2 seconds to respond to the ACE, which may not enough time given that the servers may be getting a lot of traffic and you're doing these checks every 4 seconds.
    If one fails, the other gets all the traffic, until it is overloaded, and it fails. By this time, your other servers has calmed down, and gets all the traffic, and the cycle repeats itself. Check SNMP traps or SYSLOG to see if this is the case.
    Either way, you might want to change the timeout to 5 or 10, to give them more breathing room.

  • Browser fill not loading consistently in Chrome - is there preferences conflict?

    http://mayandco.com/grazzini/index.html
    Sometimes the browser fill loads and other times it doesn't. I have asked this question before, but I was using and older computer with an older OS. I now have a new computer and am running Mavericks, so that's not the problem. This happens in Chrome (Version 39.0.2171.95) only when I navigate from page to page. If I hit refresh then the background appears.
    Can there be a conflict if both the Site prefs and the Page prefs have redundant settings?
    -DM

    Oh! This also happens on multiple sites.

  • Video thumbnail in muse not loading consistantly in diffrent browsers

    Hi
    I think this question relating youtube more then it relating Muse...
    when embed youtube video in Muse (Muse widget) i get different thumbnail view in different browsers.
    I Change the thumbnail in youtube with a JPG of the company logo. in safari (mac) and IE (PC) i see this logo. in Chrome (PC+Mac) i see the default thumbnail that youtube generate in the upload process.
    I clean caches. I even go to a computer that never opened the site before - same thing
    How can i force my thumbnail in chrome too??
    Thanks
    Ori

    This seems more related to browser cookie stored , please try to clear the cache and do a hard refresh for the page.
    You can provide the page url if still same issue.
    Thanks,
    Sanjit

  • XML Files Won't Load Into AIR Correctly

    Hi,
    I am having a wierd problem. I am using FB 4.6, and have created a small web project swf file that loads in an xml file and creates a thumbnail gallery. It works fine. When I load this same swf file into my AIR project at runtime, the same xml file will not load correctly into it. Instead, it appears to be loading as gibberish, and the XML parser says it is malformed. I have attached a screen shot of it in the debugger. This is what it looks like after the xml load complete event fires.
    Has anyone seen this issue before?
    thx

    It appears that if I run the generated swf file from the AIR project in the stand alone Flash player, everything works as it should. However, if I run it in AIR using the FB run command, I have the issues mentioned above. What would cause that?

  • Xml file not loading from different server

    Hi,
    I have a simple flash banner that is pulling a number from an xml file on a different server. When it gets to the frame where the number should be it just says "transferring data from eckul.com" and will not actually pull in the number. Unfortunately I can't put the files on the same servers. Any help would be much appreciated, below are the links and the xml code I'm using followed by the action script. Cheers
    http://www.sainters.net/newsletters/2010/flash_test_membership2.html
    http://www.eckul.com/number.xml
    <?xml version="1.0"?>
    <inventors>
        <person>
            <name>892</name>
            </inventors>
    function loadXML(loaded) {
    if (loaded) {
    _root.inventor = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
    _root.comments = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
    name_txt.text = _root.inventor;
    comment_txt.text = _root.comments;
    } else {
      trace("file not loaded!");
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("http://www.eckul.com/number.xml");

    so, in frame 1 of your fla before you execute that cross-domain load method, use:
    System.security.loadPolicyFile("http:www.yourcrossdomain.com/subdirectoriesIfNeeded/crossd omain2.xml");
    where the following (crossdomain.xml) is in www.yourcrossdomain.com's root (IF you want to allow allow subdirectory policy files):
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="all"/>
    </cross-domain-policy>
    and in the subdirectory (and its descendents) that you want to allow access put crossdomain2.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-access-from domain="www.thedomainthatstryingtoloadcrossdomaindata.com" />
    </cross-domain-policy>

  • XML file not loading in FF from server

    I've created a web page that loads an external XML file and
    then uses javascript code to parse the file for requested
    information. I know it's not the best way to do this, but I'm
    trying to get this working before I move on to "better" methods.
    When I run the page using the "Preview/Debug in browser"
    funtionality of DW everything works great both in IE and FF. But
    when I load the page to the server and then load the page in a
    browser, it works in IE but not in FF. It looks as though FF is
    just not loading the XML file. I can't figure out why the page
    would work if launched from DW, but not work if the page is loaded
    on the server and then run from there, and only in FF.
    The code I'm using to load the XML file is supposed to be
    cross-browser compatible. I've seen many versions like from various
    sources, so it should be OK. I'm pretty new to all of this so I'm
    hoping that I'm just missing something simple. Does anyone have any
    idea why this is behaving this way?
    Thanks for any help.

    so, in frame 1 of your fla before you execute that cross-domain load method, use:
    System.security.loadPolicyFile("http:www.yourcrossdomain.com/subdirectoriesIfNeeded/crossd omain2.xml");
    where the following (crossdomain.xml) is in www.yourcrossdomain.com's root (IF you want to allow allow subdirectory policy files):
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="all"/>
    </cross-domain-policy>
    and in the subdirectory (and its descendents) that you want to allow access put crossdomain2.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-access-from domain="www.thedomainthatstryingtoloadcrossdomaindata.com" />
    </cross-domain-policy>

  • Workspace  page in not loading in EPM 11.1.1.3  on windows 2003 server

    Workspace page is not loading , means i'm not able to see the admin, password and log on tab on page
    i'm able to open planning through url , EAS console and shared services consol working fine
    i'm installed EPM 11.1.1.3 on Windows server and configured it successfully.
    i checked the log files for workspace here i give the details of log file below
    08 Aug 2012 22:46:39,249 ALWAYS [main] tools.config.RegistryConfig - RegistryConfig: starts logging at 1344491199249 (Wed Aug 08 22:46:39 PDT 2012)
    08 Aug 2012 22:46:39,249 ALWAYS [main] tools.config.RegistryConfig - Parsing products file: /conf/WSProducts.xml
    08 Aug 2012 22:46:39,671 ALWAYS [main] tools.config.RegistryConfig - Products file parsed without errors.
    08 Aug 2012 22:46:39,686 ALWAYS [main] tools.config.RegistryConfig - Attempting registry connection using hyperion.home=C:\Hyperion
    08 Aug 2012 22:46:39,686 ALWAYS [main] tools.config.RegistryConfig - Got Registry handle: com.hyperion.hit.registry.Registry@369fdc
    08 Aug 2012 22:46:39,686 ALWAYS [main] tools.config.RegistryConfig - Looking for the Workspace Product node (type: WORKSPACE)
    08 Aug 2012 22:46:39,686 ALWAYS [main] tools.config.RegistryConfig - Found node: com.hyperion.hit.registry.ProductComponentImpl@e5c5b90f
    08 Aug 2012 22:46:39,686 ALWAYS [main] tools.config.RegistryConfig - Looking for Workspace Logical Webapp (child of Workspace Product, type: LOGICAL_WEB_APP)
    08 Aug 2012 22:46:42,030 ALWAYS [main] tools.config.RegistryConfig - Found node: com.hyperion.hit.registry.LogicalWebAppComponentImpl@e5c4f0f4
    08 Aug 2012 22:46:42,030 ALWAYS [main] tools.config.RegistryConfig - Looking for Workspace Web Server (child of Workspace product, type: WEB_SERVER)
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Found 8 webapps integrated into Workspace.
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - WebAppType: FINANCIAL_REPORTING_WEB_APP
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Product file configuration matches version 9.5.0.0
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - NOTE: Product version for display is 11.1.1.3.0.0238
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - WebAppType: WORKSPACE_WEBAPP
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - WebAppType: PLANNING_WEBAPP
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Product file configuration is for version(s): 9.2,9.3 but registered product version is 9.5.0.0
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Discarding old configuration.
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Setting product to use external configuration.
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - NOTE: Product version for display is 11.1.1.3
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - WebAppType: ADMIN_SERVICES_WEB_APP
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - WebAppType: CALC_WEBAPP
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Product not in static configuration file, initializing.
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - NOTE: Product version for display is 11.1.1.3
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - WebAppType: EPMA_WEB_APP
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Product file configuration is for version(s): 9.3 but registered product version is 9.5.0.0
    08 Aug 2012 22:46:42,093 ALWAYS [main] tools.config.RegistryConfig - Discarding old configuration.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Setting product to use external configuration.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - NOTE: Product version for display is 11.1.1.3.00.711
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - WebAppType: PROVIDER_SERVICES_WEB_APP
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Found webapp: Default
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - WebAppType: SHARED_SERVICES_WEBAPP
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Skipping integration for this product.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Product HPS-9.3 was not registered. Deactivating.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Product Analyzer-9.5 was not registered. Deactivating.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Product biee-9.5 was not registered. Deactivating.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Product HFM-9.2,9.3 was not registered. Deactivating.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Product HMB-9.2,9.3 was not registered. Deactivating.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Loading configurations from Shared Services as needed.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Missing product context CALC
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Checking HSS for context under product code CALC-9.5.0
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Attempting Workspace Services connection for HSS.
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - GSM count: 1
    08 Aug 2012 22:46:42,108 ALWAYS [main] tools.config.RegistryConfig - Client factory instance: com.brio.one.client.ClientFactory@1b45ddc
    08 Aug 2012 22:46:42,796 ALWAYS [main] tools.config.RegistryConfig - Recovered 1502 bytes from HSS.
    08 Aug 2012 22:46:42,796 ALWAYS [main] tools.config.RegistryConfig - Product file parsed without errors.
    08 Aug 2012 22:46:42,796 ALWAYS [main] tools.config.RegistryConfig - Found and loaded context for CALC
    08 Aug 2012 22:46:42,796 ALWAYS [main] tools.config.RegistryConfig - Missing product context HP
    08 Aug 2012 22:46:42,796 ALWAYS [main] tools.config.RegistryConfig - Checking HSS for context under product code HP-9.5.0
    08 Aug 2012 22:46:43,561 ALWAYS [main] tools.config.RegistryConfig - Recovered 37129 bytes from HSS.
    08 Aug 2012 22:46:43,561 ALWAYS [main] tools.config.RegistryConfig - Product file parsed without errors.
    08 Aug 2012 22:46:43,561 ALWAYS [main] tools.config.RegistryConfig - Found and loaded context for HP
    08 Aug 2012 22:46:43,561 ALWAYS [main] tools.config.RegistryConfig - Missing product context BPMA
    08 Aug 2012 22:46:43,561 ALWAYS [main] tools.config.RegistryConfig - Checking HSS for context under product code BPMA-9.5.0
    08 Aug 2012 22:46:44,014 ALWAYS [main] tools.config.RegistryConfig - Recovered 46940 bytes from HSS.
    08 Aug 2012 22:46:44,046 ALWAYS [main] tools.config.RegistryConfig - Product file parsed without errors.
    08 Aug 2012 22:46:44,046 ALWAYS [main] tools.config.RegistryConfig - Found and loaded context for BPMA
    08 Aug 2012 22:46:44,046 ALWAYS [main] tools.config.RegistryConfig - Finished loading needed Shared Services configurations.
    waiting for reply,
    thanks,
    vishal.

    Hi,
    Check if your web server/ Apache service is running ?
    Regards.

  • Site does not load after some minutes of creation or after restart the server

    Hello,
    I have been asked to create a test enviroment identical to the production enviroment. So, what I did was:
    Backed up the production web application's content database: Prod_WSS_ContentDB
    Created new test servers (domain controller, sql server and sharepoint 2013 server) in a new, completely isolated, network environment, without any connection with the production environment (specifically Azure)
    Created a new web application in test environment with a new content database.
    Dismounted the new content database with powershell: Dismount-spcontentdatabase Test_WSS_Content
    Copy the Prod_WSS_ContentDB database to the test sql server and restored it with Management Studio.
    Mount the Prod_WSS_ContentDB databe to the web application with powershell:
    Mount-spcontentdatabse Prod_WSS_ContentDB -WebApplication http://testsp/
    Then, when I type http://testsp in the browser it redirects me to http://testsp/SitePages/Home.aspx
    and the site loads exactly as the production environment.
    But, after some minutes, or if I restart the Sharepoint Server, when I navigate to
    http://sitesp I am redirected to http://testsp/SitePages/Home.aspx
    as expected, but the site does not load, the browser just show a complety blank page.
    The Central Administration site loads normally.
    Trying to fix it I found that if I dismount the content database Prod_WSS_ContentDB, then mount the test database Test_WSS_Content,
    then navigate to the site, dismount Test_WSS_Content and finally mount again Prod_WSS_ContentDB, the site loads normally, no blank page, but after some minutes or if I restart the same happens again.
    For the error event I receice in event viewer it seems that the problem is related to database. I have not found a solution for this error... How can I solve  this?
    The error is:
    Log Name:      Application
    Source:        Microsoft-SharePoint Products-SharePoint Foundation
    Date:          6/27/2014 2:44:22 PM
    Event ID:      5586
    Task Category: Database
    Level:         Error
    Keywords:      
    User:          UCETEST\spaccount
    Computer:      TESTSP01.ucetest.edu.do
    Description:
    Unknown SQL Exception -2146893055 occurred. Additional error information from SQL Server is included below.
    A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The handle specified is invalid)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-SharePoint Products-SharePoint Foundation" Guid="{6FB7E0CD-52E7-47DD-997A-241563931FC2}" />
        <EventID>5586</EventID>
        <Version>15</Version>
        <Level>2</Level>
        <Task>3</Task>
        <Opcode>0</Opcode>
        <Keywords>0x4000000000000000</Keywords>
        <TimeCreated SystemTime="2014-06-27T14:44:22.743159500Z" />
        <EventRecordID>4742</EventRecordID>
        <Correlation />
        <Execution ProcessID="1688" ThreadID="1692" />
        <Channel>Application</Channel>
        <Computer>TESTSP01.ucetest.edu.do</Computer>
        <Security UserID="S-1-5-21-2552298216-324766354-3392103171-1108" />
      </System>
      <EventData>
        <Data Name="int0">-2146893055</Data>
        <Data Name="string1">A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The handle specified is invalid)</Data>
      </EventData>
    </Event>
    Melvintt
    MCTS, Windows Server 2008 R2: Network Infrastructure
    MCTS, Windows Server 2008 R2: Active Directory, Configuring

    Hi,
    According to your post, my understanding is that Site does not load after some minutes of creation or after restart the server.
    Please make sure you create a test environment for existing production site correctly.
    Here are some great articles for your reference:
    Moving content between SharePoint environments
    Copy SharePoint production data to a test environment
    Build a SharePoint 2010 Test/Development Farm
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support
    Hello Linda Li,
    I follwed that steps to create my test enviroment... and I have recreated it some times using that same steps, but the problem persits. After some minutes or after I restart the SharePoint server the site does not load.
    Melvintt
    MCTS, Windows Server 2008 R2: Network Infrastructure
    MCTS, Windows Server 2008 R2: Active Directory, Configuring

  • XML Form Builder does not load

    I am having the following problem, when executing the Form Builder tool under Content Management, it does not load and i get the following error message:
    CONNECTION ERROR: couldn't read response code*
    And sometimes the window gets freezed.
    I have read some previous Threads regarding this issue but the solution did not work to me.
    Someting really strange is happening because if i log to port 80 (http://...) it works, but when I log to port 50000 (https://...) it does not, and that error message pops up.
    I have alredy run the Enviroment check Tool and results were OK in both urls, as follows:
    <i><b>https://*****.net/irj/portal
    Test Environment: XML Forms Builder Environment Check *
    Start Time: 2006-12-05 13:12:48                       *
    End Time: 2006-12-05 13:12:04                         *
    - Test: Java Environment
    - OK
    -      Start Time: 2006-12-05 13:12:48
    -      End Time: 2006-12-05 13:12:48
    -      Java Runtime Version is 1.4.2_13
    - Test: Connection Tests
    - OK
    -      Start Time: 2006-12-05 13:12:48
    -      End Time: 2006-12-05 13:12:04
         - Test: Download XML Forms Builder Jar
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:13
         -      Successfully loaded XML Forms Builder Jar from https://***net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/km.appl.xmlforms.xfbuilder_core.jar, Version 6.4.1
         - Test: Download SAP XML Toolkit Jar
         - OK
         -      Start Time: 2006-12-05 13:12:13
         -      End Time: 2006-12-05 13:12:47
         -      Successfully loaded SAP XML Toolkit Jar from https://****/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/sapxmltoolkit.jar
         - Test: XML Forms Builder Version
         - OK
         -      Start Time: 2006-12-05 13:12:47
         -      End Time: 2006-12-05 13:12:48
         -      XML Forms Builder client version is 6.4.1, server version is 6.4.1
         - Test: Load Global Settings
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:48
         -      Successfully loaded XML Forms Builder settings
         - Test: Load Project List
         - OK
         -      Start Time: 2006-12-05 13:12:48
         -      End Time: 2006-12-05 13:12:03
         -      Successfully loaded project list:
    http://*******.net/irj/portal
    Test Environment: XML Forms Builder Environment Check *
    Start Time: 2006-12-05 14:12:33                       *
    End Time: 2006-12-05 14:12:46                         *
    - Test: Java Environment
    - OK
    -      Start Time: 2006-12-05 14:12:33
    -      End Time: 2006-12-05 14:12:33
    -      Java Runtime Version is 1.4.2_13
    - Test: Connection Tests
    - OK
    -      Start Time: 2006-12-05 14:12:33
    -      End Time: 2006-12-05 14:12:46
         - Test: Download XML Forms Builder Jar
         - OK
         -      Start Time: 2006-12-05 14:12:33
         -      End Time: 2006-12-05 14:12:23
         -      Successfully loaded XML Forms Builder Jar from http://****.net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/km.appl.xmlforms.xfbuilder_core.jar, Version 6.4.1
         - Test: Download SAP XML Toolkit Jar
         - OK
         -      Start Time: 2006-12-05 14:12:23
         -      End Time: 2006-12-05 14:12:27
         -      Successfully loaded SAP XML Toolkit Jar from http://*******.net/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/etc/xmlforms/sapxmltoolkit.jar
         - Test: XML Forms Builder Version
         - OK
         -      Start Time: 2006-12-05 14:12:27
         -      End Time: 2006-12-05 14:12:28
         -      XML Forms Builder client version is 6.4.1, server version is 6.4.1
         - Test: Load Global Settings
         - OK
         -      Start Time: 2006-12-05 14:12:28
         -      End Time: 2006-12-05 14:12:29
         -      Successfully loaded XML Forms Builder settings
         - Test: Load Project List
         - OK
         -      Start Time: 2006-12-05 14:12:29
         -      End Time: 2006-12-05 14:12:46
         -      Successfully loaded project list:
    </b></i>
    Don't know what can be, so if anyone has any idea it would be very helpful.
    Cheers,
    Ivan Milkovic

    Hello,
    Immediately after opening the XML forms editor from the Content Manager page, you will get a link Start Environment Check Tool.... Click on that and proceed for a check. It will take some 5-10 mins based on your connection speed.If every thing is successful, clear the browser cache and restart the browser and open forms editor again. It will open the data schema and properties filed and project browser and all.
    I was having this problem just now and i resolved it with the above steps.
    My JRE version is 1.6 and portal is EP 7 SPS 21 patched.
    Regards
    BP

Maybe you are looking for

  • JSR 172: error while invoking methods of same signature

    Hi I am facing a peculiar problem which is not making sense to me. This is what I have done: 1. Written a simple web service that has two methods: sayHello and sayHellToMe. Both these methods have same signatures. They do not take in any parameter an

  • ANT error while doing a setup-bpm from the OBPM documentation - antlib err

    Hi, Have anyone see this particular error and found a solution for the following problem: I've tried using the samples in OBPM Enterprise version for weblogic. It has samples under OBPMWlHome directory samples/interop. Setup my environment settings s

  • Installed Skype and now Flash Player won't open in new window

    I installed the latest version of Skype and now Flash Player does not work properly. I just bought a new laptop, it has Windows 7, 32 bit, IE 9, and Flash 10. A website that I go to all the time uses Flash Player so when you click on a link in the si

  • Plain Text Warning with Notes

    Whenever I write a note in Mail and I attempt to add a To-Do, change the font, or add any amount of formatting to it, I get a dialog that says: "Convert this note to rich text format? Changing the style or formatting requires that this note be conver

  • No user exists with SNC name

    Hi, We have configured the SSO with kerberos, while trying to login getting the below error Please advice. Regards, Sam