Service Status RSS Feed

Hi..
i'm a new customer to BT Broadband (very happy with everything so far) and I was wondering if BT have an RSS feed for service status issues.
Can anyone shed some light on that please?
Thanks..
Nick

Is this any good?
You can click the white star next to this message if you think it was helpful.

Similar Messages

  • KM Repository Listener Service for RSS Feed Generator

    Hi,
    I would like to generate the RSS Feed for the KM respository to get the latest modified and created documents.
    Do we have any service listener to generate the .xml file (RSS Feed )?
    I would like to read the data from above .xml file through XML iView.
    Please let me know the solution.
    Thanks

    hello, if you have solution can you send it to me , [[email protected]]
    thanks
    Edited by: Nikita Kravtsov on Aug 1, 2008 3:59 PM

  • Issue with RSS Feed Service-Urgent

    Hi,
    1. I am using the service provided by UCM for using extracting details from the RSS feed.I tried using the service with a RSS feed url i.e.("http://rss.news.yahoo.com/rss/topstories") works fine and displays all results on my custom page.
    2. The same piece of code, I moved my client instance but found nothing happens not even I am getting any error. Only the thing I can see is a page loading and loading for long time.
    3. I found a document related to RSS feed it has mentioned to upload fragments into the SS which i did in my and client instance. The names are RSS_Feed.Zip and RSS FEEDS_FRAGMENT_LIB.zip.
    4. The feed URL provided when executed from browser in client and my instance displays feed, but when use it with service works on development instance works fine, but
    doesn't work on client instance.
    5. Below mentioned is the sample page which I am using to execute the feed.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><!--$include ss_layout_head_info-->
    <title><!--$dDocTitle--></title>
    <script id="ssInfo" type="text/xml" warning="DO NOT MODIFY!">
    <ssinfo >
    </ssinfo>
    </script>
    </head>
    <body>
         <!--$feedUrl="http://rss.news.yahoo.com/rss/topstories",parseXml="true"-->
         <!--$executeService("GET_REMOTE_FEED")-->
              <ul class="userlist">
              <!--$loop RSS_ENTRIES-->
                   <li class="notopborder">
                        <span class="userdetails">
                             <span class="username"><!--$title--></span>
                             <span><!--$description--></span>
                             <span class="hours"><!--$pubDate--></span>
                        </span>
                        <div class="clear"></div>
                   </li>
              <!--$endloop-->
              <ul>
    </body>
    </html>
    Any kind of help is highly appreciated.
    Thanks,
    Abhijit
    Edited by: AbhijijitPr on Oct 12, 2010 12:47 PM
    Edited by: AbhijijitPr on Oct 12, 2010 12:58 PM

    I found the issue, the service provided by UCM i.e. the GET_REMOTE_FEED as when checked in the source code found doesn't support https. So any request made on https will give no result.
    Thanks,
    Abhijit

  • RSS Feed Generator with KM Repository Listener Service

    Hi,
    I would like to generate the RSS Feed for the KM respository to get the latest modified and created documents.
    Do we have any service listener to generate the .xml file (RSS Feed )?
    And this RSS Feed has to be updated when ever the content changed in KM Folder.
    I would like to read the data from above .xml file through XML iView.
    Please, let me know  the solution if anybody have.
    Thanks

    No info

  • RSS Feed service on IP Phone

    Hi
    Can someone share with me on how to configure the Stock Quotes Application or RSS Feed for the IP Phone?
    Model:7975G
    CUCM 7.0
    Regards
    Karthik

    PhoneTop Messenger reads RSS weather feed from National Weather Service, and pushes it out to an IP phone group if the issued alert meets a criteria. May be it can be expanded to include other types of RSS feeds. Do you have a specific feed you want to read?

  • Web Services/RSS Feed to Share Content

    We are using Netweaver 2004s and have some KM Content that I would like to share with other sites.  The other sites are likely to be ASP written with Visual Studio 2008.  The KM Content consists of some WPC Paragraphs and some custom XML Forms created with Forms builder. 
    I was thinking we could maybe supply the content to the other sites via RSS Feeds or a Web Service of some sort and while I can find information about consuming both within portal I haven't had any luck determining how to share this information from the portal.
    Any advice or pointers to information regarding this subject are highly appreciated.

    Hi TA,
    Not sure if this will help you, but SAP KM is a WebDAV server as well as client. Perhaps you can publish this content using WebDAV? I know WPC pages have an RSS link on them that you can configure... so maybe that is something you could use for the WPC content you describe.
    Sorry I can't be of more help. You coud I suppose develop a custom portal component using the KM API the returned an RSS stream, you would probably have to make it anonymous access as I don't think RSS handles authentication.
    BRgds,
    Simon

  • When I try to read my rss-feed through yandex service, the browser and the whole system freeze for a significant amount of time. This started with Firefor 5 and is very unpleasant. Thank you in advance.

    When I try to download (and especially renew) a page with my rss-feed that I read with Yandex service, the browser freezes, and then the whole system freezes. It typically takes about 5-7 minutes to load a very minimalistic page, and I can't use my browser or my system during that time.
    This started with the release of Firefox 5. I use it on Ubuntu. I haven't experienced similar problems with any other websites.
    I have already contacted the Yandex team about the matter.
    I guess it's just a little weird that one of the Yandex services won't work in Firefox, as Firefox comes with a built-in yandex-bar in many cases. And it sure is frustrating.
    Thank you very much and I am looking forward to your reply.

    Firefox Hangs
    https://support.mozilla.com/en-US/kb/Firefox%20hangs
    Check and tell if its working.

  • Web Service call to update RSS feed

    Is there any webservice method to force an iTunesU RSS feed update?

    Yes, that is the way we are currently doing it now.
    Since we are storing content locally, our faculty members can just "drag and drop" their mp3 files into the appropriate directories on a server. We are trying to eliminate the step of having a faculty member touch the feed.
    Hopefully this feature will be added soon.
    Thanks
    -Andy

  • Problem with loading rss feed in flash

    I wrote the following simple code to get started with loading
    rss feed:
    var document = new XML();
    document.onload = myLoadHandler;
    document.load("
    http://www.nytimes.com/services/xml/rss/nyt/Business.xml");
    trace(document.status);
    trace(document.loaded);
    trace(success.toString());
    But the result I got is always this:
    0
    false
    undefined
    It is the same even for local xml files saved in the same
    directory as the flash file.
    Could someone please help me?
    Thanks so much~

    It's necessary to discard the white spaces.
    Set the ignoreWhite property to true.
    document.ignoreWhite = true;
    Regards,
    Erick Souza | ericksouza.com

  • RSS Feed is giving An unexpected error has occurred. on Blog Sites

    /_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1}
    Sorry, something went wrong
    An unexpected error has occurred.
    This is only an on Blog sites.  I am able to use RSS Feed on Calendars, Task, and any other lists.

    Category EventID Message
    Logging Correlation Data xmnv Name=Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring nasq Entering monitored scope (BeginRequestHandler). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (BeginRequestHandler). Execution Time=0.864704871708555
    Monitoring nass ____CPU Cycles=2121383
    Monitoring nass ____Execution Time=0.864704871708555
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (SPFederationAuthenticationModule.OnAuthenticateRequest::WifCodeCall). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (SPFederationAuthenticationModule.OnAuthenticateRequest::WifCodeCall). Execution Time=0.144990494601968
    Monitoring nass ____CPU Cycles=313400
    Monitoring nass ____Execution Time=0.144990494601968
    Monitoring nasq Entering monitored scope (SPClaimsCounterScope). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring nasq Entering monitored scope (SPSam.OnAuthenticateRequest::WifCodeCall). Parent SPClaimsCounterScope
    Monitoring nasq Entering monitored scope (SPChunkedCookieHandler.ReadCore::WifCodeCall). Parent SPSam.OnAuthenticateRequest::WifCodeCall
    Monitoring b4ly Leaving Monitored Scope (SPChunkedCookieHandler.ReadCore::WifCodeCall). Execution Time=0.0226984155807512
    Monitoring nass ____CPU Cycles=37634
    Monitoring nass ____Execution Time=0.0226984155807512
    Monitoring nasq Entering monitored scope (SPChunkedCookieHandler.ReadCore). Parent SPSam.OnAuthenticateRequest::WifCodeCall
    Claims Authentication af3z9 SPTokenCache.ReadTokenXml: Successfully read token XML 'domain\user'.
    Monitoring b4ly Leaving Monitored Scope (SPChunkedCookieHandler.ReadCore). Execution Time=1.02289536798671
    Monitoring nass ____CPU Cycles=1590982
    Monitoring nass ____Execution Time=1.02289536798671
    Monitoring nasq Entering monitored scope (GetWindowsUserKey: Translate NTAccount to SecurityIdentifier). Parent SPSam.OnAuthenticateRequest::WifCodeCall
    Monitoring b4ly Leaving Monitored Scope (GetWindowsUserKey: Translate NTAccount to SecurityIdentifier). Execution Time=0.589879439984691
    Monitoring nass ____CPU Cycles=659699
    Monitoring nass ____Execution Time=0.589879439984691
    General 6t8b Looking up context site https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D in the farm SP2013_SharePoint_Config
    General 6t8d Looking up the additional information about the typical site https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D.
    General 6t8f Site lookup is replacing https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D with the alternate access url https://domain.com.
    General 6t8g Looking up typical site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D in web application SPWebApplication Name=Team Hamra Internal Site.
    General 6t8h Found typical site /sites/about (580448c7-854b-4132-8d1d-7fe218049615) in web application SPWebApplication Name=Team Hamra Internal Site.
    DistributedCache ad4i2 Weak Reference Cache is enabled....
    Monitoring nasq Entering monitored scope (SPSam.OnSessionSecurityTokenReceived::WifCodeCall). Parent SPSam.OnAuthenticateRequest::WifCodeCall
    Monitoring b4ly Leaving Monitored Scope (SPSam.OnSessionSecurityTokenReceived::WifCodeCall). Execution Time=0.0234666696465612
    Monitoring nass ____CPU Cycles=29816
    Monitoring nass ____Execution Time=0.0234666696465612
    Monitoring nasq Entering monitored scope (SPSam.AuthenticateSessionSecurityToken::WifCodeCall). Parent SPSam.OnAuthenticateRequest::WifCodeCall
    Monitoring nasq Entering monitored scope (SPSam.SetPrincipalFromSessionToken::WifCodeCall). Parent SPSam.AuthenticateSessionSecurityToken::WifCodeCall
    Monitoring b4ly Leaving Monitored Scope (SPSam.SetPrincipalFromSessionToken::WifCodeCall). Execution Time=0.235155585416582
    Monitoring nass ____CPU Cycles=554267
    Monitoring nass ____Execution Time=0.235155585416582
    Monitoring b4ly Leaving Monitored Scope (SPSam.AuthenticateSessionSecurityToken::WifCodeCall). Execution Time=0.515638160715957
    Monitoring nass ____CPU Cycles=1254209
    Monitoring nass ____Execution Time=0.515638160715957
    Monitoring b4ly Leaving Monitored Scope (SPSam.OnAuthenticateRequest::WifCodeCall). Execution Time=4.09828623470301
    Monitoring nass ____CPU Cycles=8539189
    Monitoring nass ____Execution Time=4.09828623470301
    Monitoring b4ly Leaving Monitored Scope (SPClaimsCounterScope). Execution Time=4.27931482911934
    Monitoring nass ____CPU Cycles=8987173
    Monitoring nass ____Execution Time=4.27931482911934
    Monitoring nasq Entering monitored scope (SPClaimsCounterScope). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (SPClaimsCounterScope). Execution Time=0.168457164248529
    Monitoring nass ____CPU Cycles=394625
    Monitoring nass ____Execution Time=0.168457164248529
    Application Authentication ajezy "SPApplicationAuthenticationModule: There is no Authorization header, can't try to perform application authentication."
    General 6t8b Looking up context site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D in the farm SP2013_SharePoint_Config
    General 6t8d Looking up the additional information about the typical site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D.
    General 6t8f Site lookup is replacing https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D with the alternate access url https://domain.com.
    General 6t8g Looking up typical site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D in web application SPWebApplication Name=Team Hamra Internal Site.
    General 6t8h Found typical site /sites/about (580448c7-854b-4132-8d1d-7fe218049615) in web application SPWebApplication Name=Team Hamra Internal Site.
    Monitoring nasq Entering monitored scope (Matching per user conditions for ULS boosting). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (Matching per user conditions for ULS boosting). Execution Time=0.0694920723164536
    Monitoring nass ____CPU Cycles=36009
    Monitoring nass ____Execution Time=0.0694920723164536
    Authentication Authorization agb9s "Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|domain\user, ClaimsCount=40"
    Asp Runtime aj1kq SPRequestModule.PostAuthenticateRequestHandler
    Monitoring nasq Entering monitored scope (PostAuthenticateRequestHandler). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Runtime ajd6k Value for isAnonymousAllowed is : False
    Runtime ajd6l Value for checkAuthenticationCookie is : True
    Monitoring b4ly Leaving Monitored Scope (PostAuthenticateRequestHandler). Execution Time=0.251149238241173
    Monitoring nass ____CPU Cycles=595291
    Monitoring nass ____Execution Time=0.251149238241173
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (SPFederationAuthenticationModule.OnPostAuthenticateRequest::WifCodeCall). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (SPFederationAuthenticationModule.OnPostAuthenticateRequest::WifCodeCall). Execution Time=0.0220698440723612
    Monitoring nass ____CPU Cycles=29316
    Monitoring nass ____Execution Time=0.0220698440723612
    Monitoring nasq Entering monitored scope (SPSam.OnPostAuthenticateRequest::WifCodeCall). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (SPSam.OnPostAuthenticateRequest::WifCodeCall). Execution Time=0.0169015894478209
    Monitoring nass ____CPU Cycles=21467
    Monitoring nass ____Execution Time=0.0169015894478209
    Monitoring nasq Entering monitored scope (PictureHttpModule: ProcessPictureRequest). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (PictureHttpModule: ProcessPictureRequest). Execution Time=0.0287047655498115
    Monitoring nass ____CPU Cycles=47650
    Monitoring nass ____Execution Time=0.0287047655498115
    Monitoring nass ____SQL Query Count=0
    Asp Runtime aj1kr SPRequestModule.PostAuthorizeRequestHandler
    Monitoring nasq Entering monitored scope (PublishingHttpModule: PostAuthorizeRequestHandler). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (PublishingHttpModule: PostAuthorizeRequestHandler). Execution Time=0.102457155867575
    Monitoring nass ____CPU Cycles=225416
    Monitoring nass ____Execution Time=0.102457155867575
    Monitoring nass ____SQL Query Count=0
    Asp Runtime aj1km SPRequestModule.PostResolveRequestCacheHandler
    Monitoring nasq Entering monitored scope (PostResolveRequestCacheHandler). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Request Management aitsz The Request Management Service is offline or unprovisioned. Request Management is disabled. Status = Disabled
    Monitoring b4ly Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=0.121384142397986
    Monitoring nass ____CPU Cycles=274959
    Monitoring nass ____Execution Time=0.121384142397986
    Monitoring nass ____SQL Query Count=0
    Asp Runtime aj1kn SPRequestModule.AcquireRequestStateHandler
    Asp Runtime aj1ko SPRequestModule.PostAcquireRequestStateHandler
    Asp Runtime aj1kl SPRequestModule.PreRequestExecuteAppHandler
    General 6t8b Looking up context site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D in the farm SP2013_SharePoint_Config
    General 6t8d Looking up the additional information about the typical site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D.
    General 6t8f Site lookup is replacing https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D with the alternate access url https://domain.com.
    General 6t8g Looking up typical site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D in web application SPWebApplication Name=Team Hamra Internal Site.
    General 6t8h Found typical site /sites/about (580448c7-854b-4132-8d1d-7fe218049615) in web application SPWebApplication Name=Team Hamra Internal Site.
    Upgrade ajyiy 02/21/2014 09:18:35.54 w3wp (0x2B74) 0x2668 SharePoint Foundation Upgrade SPManager ajyiy VERBOSE Using cached [SPContentDatabase Name=Team_HamraNet_ContentDB] NeedsUpgrade value: False. 3a73769c-68f0-8064-09c0-6c639c6aa698
    Upgrade ajyix 02/21/2014 09:18:35.54 w3wp (0x2B74) 0x2668 SharePoint Foundation Upgrade SPManager ajyix VERBOSE Using cached [SPContentDatabase Name=Team_HamraNet_ContentDB] IsBackwardsCompatible value: True. 3a73769c-68f0-8064-09c0-6c639c6aa698
    Logging Correlation Data xmnv Site=/sites/about
    Monitoring nasq Entering monitored scope (SPSqlClient). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Database tkeb Setting database session for 1d16ed94-0966-483e-aed1-11fc74309105 and site 580448c7-854b-4132-8d1d-7fe218049615.
    Database tzku ConnectionString: 'Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]' Partition: 580448c7-854b-4132-8d1d-7fe218049615 ConnectionState: Closed ConnectionTimeout: 15
    Database ahjqp SQL connection time: 0.167898434018849 for Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]
    Monitoring b4ly Leaving Monitored Scope (SPSqlClient). Execution Time=10.4776584733535
    Monitoring nass ____CPU Cycles=11892543
    Monitoring nass ____Execution Time=10.4776584733535
    Stack Trace Collection 0 "Returning hr=0x81020026: owssvr.dll: (unresolved symbol, module offset=0000000000052E16) at 0x000007FAE9C02E16 owssvr.dll: (unresolved symbol, module offset=0000000000053938) at 0x000007FAE9C03938 owssvr.dll: (unresolved symbol, module offset=00000000000517C8) at 0x000007FAE9C017C8 owssvr.dll: (unresolved symbol, module offset=000000000000922F) at 0x000007FAE9BB922F Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=000000000009DA2C) at 0x000007FAEC1BDA2C"
    General 8kh7 List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user.
    General 8kh7 "Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A249B) at 0x000007FAF438249B onetutil.dll: (unresolved symbol, module offset=00000000000A23E5) at 0x000007FAF43823E5 owssvr.dll: (unresolved symbol, module offset=0000000000054DDD) at 0x000007FAE9C04DDD owssvr.dll: (unresolved symbol, module offset=000000000000AF82) at 0x000007FAE9BBAF82 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=000000000009DA2C) at 0x000007FAEC1BDA2C"
    General aix9j "SPRequest.GetListsWithCallback: UserPrincipalName=i:0).w|s-1-5-21-1200228122-2768674105-1448006261-8675, AppPrincipalName= ,bstrUrl=https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} ,foreignWebId=00000000-0000-0000-0000-000000000000 ,bstrListInternalName={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} ,dwBaseType=-1 ,dwBaseTypeAlt=-1 ,dwServerTemplate=-1 ,dwGetListFlags=0 ,dwListFilterFlags=4294967295 ,bPrefetchMetaData=True ,bSecurityTrimmed=True ,bGetSecurityData=True ,bPrefetchRelatedFields=False"
    General ai1wu "System.Runtime.InteropServices.COMException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user., StackTrace: at Microsoft.SharePoint.SPListCollection.EnsureListsData(Guid webId, String strListName) at Microsoft.SharePoint.SPListCollection.ItemByInternalName(String strInternalName, Boolean bThrowException) at Microsoft.SharePoint.SPListCollection.GetListById(Guid uniqueID, Boolean bThrowException) at Microsoft.SharePoint.ApplicationPages.ListFeed.get_List() at Microsoft.SharePoint.ApplicationPages.ListFeed.OnPreInit(EventArgs e) at System.Web.UI.Page.PerformPreInit() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at Sy..."
    General ai1wu "...stem.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPt..."
    General ai1wu "...r rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr..."
    General ai1wu "... moduleData, Int32 flags)"
    General 6t8b Looking up context site https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} in the farm SP2013_SharePoint_Config
    General 6t8d Looking up the additional information about the typical site https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1}.
    General 6t8f Site lookup is replacing https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} with the alternate access url https://domain.com.
    General 6t8g Looking up typical site https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D in web application SPWebApplication Name=Team Hamra Internal Site.
    General 6t8h Found typical site /sites/about (580448c7-854b-4132-8d1d-7fe218049615) in web application SPWebApplication Name=Team Hamra Internal Site.
    Upgrade ajyiy 02/21/2014 09:18:35.55 w3wp (0x2B74) 0x2668 SharePoint Foundation Upgrade SPManager ajyiy VERBOSE Using cached [SPContentDatabase Name=Team_HamraNet_ContentDB] NeedsUpgrade value: False. 3a73769c-68f0-8064-09c0-6c639c6aa698
    Upgrade ajyix 02/21/2014 09:18:35.55 w3wp (0x2B74) 0x2668 SharePoint Foundation Upgrade SPManager ajyix VERBOSE Using cached [SPContentDatabase Name=Team_HamraNet_ContentDB] IsBackwardsCompatible value: True. 3a73769c-68f0-8064-09c0-6c639c6aa698
    Monitoring nasq Entering monitored scope (SPSqlClient). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Database tkeb Setting database session for 1d16ed94-0966-483e-aed1-11fc74309105 and site 580448c7-854b-4132-8d1d-7fe218049615.
    Database tzku ConnectionString: 'Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]' Partition: 580448c7-854b-4132-8d1d-7fe218049615 ConnectionState: Closed ConnectionTimeout: 15
    Database ahjqp SQL connection time: 0.0872317571087946 for Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]
    Monitoring b4ly Leaving Monitored Scope (SPSqlClient). Execution Time=5.2264324097057
    Monitoring nass ____CPU Cycles=5900774
    Monitoring nass ____Execution Time=5.2264324097057
    Monitoring nasq Entering monitored scope (SPSqlClient). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Database tkeb Setting database session for 1d16ed94-0966-483e-aed1-11fc74309105 and site 580448c7-854b-4132-8d1d-7fe218049615.
    Database tzku ConnectionString: 'Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]' Partition: 580448c7-854b-4132-8d1d-7fe218049615 ConnectionState: Closed ConnectionTimeout: 15
    Database ahjqp SQL connection time: 0.0838793757307144 for Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]
    Monitoring b4ly Leaving Monitored Scope (SPSqlClient). Execution Time=3.08551785212925
    Monitoring nass ____CPU Cycles=2889701
    Monitoring nass ____Execution Time=3.08551785212925
    Stack Trace Collection 0 "Returning hr=0x81020026: owssvr.dll: (unresolved symbol, module offset=000000000012189F) at 0x000007FAE9CD189F owssvr.dll: (unresolved symbol, module offset=0000000000052004) at 0x000007FAE9C02004 owssvr.dll: (unresolved symbol, module offset=0000000000051AC1) at 0x000007FAE9C01AC1 owssvr.dll: (unresolved symbol, module offset=000000000000922F) at 0x000007FAE9BB922F Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=000000000009DA2C) at 0x000007FAEC1BDA2C"
    General 8kh7 List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user.
    General 8kh7 "Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A249B) at 0x000007FAF438249B onetutil.dll: (unresolved symbol, module offset=00000000000A23E5) at 0x000007FAF43823E5 owssvr.dll: (unresolved symbol, module offset=0000000000054DDD) at 0x000007FAE9C04DDD owssvr.dll: (unresolved symbol, module offset=000000000000AF82) at 0x000007FAE9BBAF82 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=000000000009DA2C) at 0x000007FAEC1BDA2C"
    General aix9j "SPRequest.GetListsWithCallback: UserPrincipalName=i:0).w|s-1-5-21-1200228122-2768674105-1448006261-8675, AppPrincipalName= ,bstrUrl=https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} ,foreignWebId=00000000-0000-0000-0000-000000000000 ,bstrListInternalName={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} ,dwBaseType=-1 ,dwBaseTypeAlt=-1 ,dwServerTemplate=-1 ,dwGetListFlags=0 ,dwListFilterFlags=4294967295 ,bPrefetchMetaData=True ,bSecurityTrimmed=True ,bGetSecurityData=True ,bPrefetchRelatedFields=False"
    General ai1wu "System.Runtime.InteropServices.COMException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user., StackTrace: at Microsoft.SharePoint.SPListCollection.EnsureListsData(Guid webId, String strListName) at Microsoft.SharePoint.SPListCollection.ItemByInternalName(String strInternalName, Boolean bThrowException) at Microsoft.SharePoint.SPListCollection.GetListById(Guid uniqueID, Boolean bThrowException) at Microsoft.SharePoint.ApplicationPages.ListFeed.get_List() at Microsoft.SharePoint.ApplicationPages.ListFeed.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBef..."
    General ai1wu "...oreAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web...."
    General ai1wu "...Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(In..."
    General ai1wu "...tPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)"
    General 8nca "Application error when access /_layouts/15/listfeed.aspx, Error=Object reference not set to an instance of an object. at Microsoft.SharePoint.ApplicationPages.ListFeed.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)"
    Runtime tkau "System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.ApplicationPages.ListFeed.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)"
    General ajlz0 "Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.ApplicationPages.ListFeed.Render(HtmlTextWriter writer) at System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boo..."
    General ajlz0 "...lean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)"
    Monitoring nasq Entering monitored scope (PublishingMobile: Resolve the default or non-default channel custom master url token.). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (PublishingMobile: Resolve the default or non-default channel custom master url token.). Execution Time=0.0459555613911824
    Monitoring nass ____CPU Cycles=85709
    Monitoring nass ____Execution Time=0.0459555613911824
    Monitoring nass ____SQL Query Count=0
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    General aat87
    Web Controls ad9g2 QoS data point list: []
    Monitoring nasq Entering monitored scope (SPSqlClient). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Database tkeb Setting database session for 1d16ed94-0966-483e-aed1-11fc74309105 and site 580448c7-854b-4132-8d1d-7fe218049615.
    Database tzku ConnectionString: 'Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]' Partition: 580448c7-854b-4132-8d1d-7fe218049615 ConnectionState: Closed ConnectionTimeout: 15
    Database ahjqp SQL connection time: 0.0855555664197545 for Data Source=SPSQL2013;Initial Catalog=Team_HamraNet_ContentDB;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Asynchronous Processing=True;Connect Timeout=15;Application Name=SharePoint[w3wp][2][Team_HamraNet_ContentDB]
    Monitoring b4ly Leaving Monitored Scope (SPSqlClient). Execution Time=3.46720044027942
    Monitoring nass ____CPU Cycles=2954751
    Monitoring nass ____Execution Time=3.46720044027942
    Stack Trace Collection 0 "Returning hr=0x81020026: owssvr.dll: (unresolved symbol, module offset=000000000012189F) at 0x000007FAE9CD189F owssvr.dll: (unresolved symbol, module offset=0000000000052004) at 0x000007FAE9C02004 owssvr.dll: (unresolved symbol, module offset=0000000000051AC1) at 0x000007FAE9C01AC1 owssvr.dll: (unresolved symbol, module offset=000000000000922F) at 0x000007FAE9BB922F Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=000000000009DA2C) at 0x000007FAEC1BDA2C"
    General 8kh7 List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user.
    General 8kh7 "Stack trace: onetutil.dll: (unresolved symbol, module offset=00000000000A249B) at 0x000007FAF438249B onetutil.dll: (unresolved symbol, module offset=00000000000A23E5) at 0x000007FAF43823E5 owssvr.dll: (unresolved symbol, module offset=0000000000054DDD) at 0x000007FAE9C04DDD owssvr.dll: (unresolved symbol, module offset=000000000000AF82) at 0x000007FAE9BBAF82 Microsoft.SharePoint.Library.ni.dll: (unresolved symbol, module offset=000000000009DA2C) at 0x000007FAEC1BDA2C"
    General aix9j "SPRequest.GetListsWithCallback: UserPrincipalName=i:0).w|s-1-5-21-1200228122-2768674105-1448006261-8675, AppPrincipalName= ,bstrUrl=https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} ,foreignWebId=00000000-0000-0000-0000-000000000000 ,bstrListInternalName={F5A8C10C-02BD-4366-B964-03A3F4E79DD1} ,dwBaseType=-1 ,dwBaseTypeAlt=-1 ,dwServerTemplate=-1 ,dwGetListFlags=0 ,dwListFilterFlags=4294967295 ,bPrefetchMetaData=True ,bSecurityTrimmed=True ,bGetSecurityData=True ,bPrefetchRelatedFields=False"
    General ai1wu "System.Runtime.InteropServices.COMException: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user., StackTrace: at Microsoft.SharePoint.SPListCollection.EnsureListsData(Guid webId, String strListName) at Microsoft.SharePoint.SPListCollection.ItemByInternalName(String strInternalName, Boolean bThrowException) at Microsoft.SharePoint.SPListCollection.GetListById(Guid uniqueID, Boolean bThrowException) at Microsoft.SharePoint.SPContext.get_List() at Microsoft.SharePoint.WebControls.ScriptLink.InitJs_Register(Page page) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language, Boolean..."
    General ai1wu "... injectNoDefer, Boolean controlRegistration, Boolean loadInlineLast, Boolean ignoreFileNotFound) at Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language, String uiVersion, String ctag) at Microsoft.SharePoint.WebControls.ScriptLink.Register(String uiVersion, Control ctrl, Page page, String name, Boolean localizable, Boolean defer) at Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page, String name, Boolean localizable, Boolean defer) at Microsoft.SharePoint.WebControls.ScriptLink.GetOnDemandScriptKey(String strKey, String strFile, Boolean registerDependencies, Control ctrl, Page page) at Microsoft.SharePoint.WebControls.ScriptLink.Regis..."
    General ai1wu "...terOnDemand(Control ctrl, Page page, String strKey, String strFile, Boolean localizable) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Page page, String strFile, Boolean localizable) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterForControl(Control ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language, Boolean injectNoDefer, Boolean controlRegistration, Boolean loadInlineLast, Boolean ignoreFileNotFound) at Microsoft.SharePoint.WebControls.ScriptLink.Register(Control ctrl, Page page, String name, Boolean localizable, Boolean defer, Boolean loadAfterUI, String language, String uiVersion, String ctag) at Microsoft.SharePoint.WebControls.ScriptLink.RegisterOnDemand(Control ctrl, Page page, String strKey..."
    General ai1wu "..., String strFile, Boolean localizable) at Microsoft.SharePoint.WebControls.ScriptLink.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpServerUtility.ExecuteInternal(IHttpHandler handler, TextWriter writer, Boolean preserveForm, Boole..."
    General ai1wu "...an setPreviousPage, VirtualPath path, VirtualPath filePath, String physPath, Exception error, String queryStringOverride) at System.Web.HttpServerUtility.Execute(String path, TextWriter writer, Boolean preserveForm) at System.Web.HttpServerUtility.Transfer(String path) at Microsoft.SharePoint.Utilities.SPUtility.TransferToErrorPage(String message, String linkText, String linkUrl) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.ErrorHandler(HttpApplication app, Boolean errorIsOnErrorPage) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.ErrorAppHandler(Object oSender, EventArgs ea) at System.EventHandler.Invoke(Object sender, EventArgs e) at System.Web.HttpApplication.RaiseOnError() at System.Web.HttpApplication.PipelineStepManager.Resume..."
    General ai1wu "...Steps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& not..."
    General ai1wu "...ificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)"
    General af4yd TenantAppEtag record requested but there is no sitesubscription or tenantId for site 580448c7-854b-4132-8d1d-7fe218049615 so we will use the WebApp Id for the cache.
    General af4yd TenantAppEtag record requested but there is no sitesubscription or tenantId for site 580448c7-854b-4132-8d1d-7fe218049615 so we will use the WebApp Id for the cache.
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    DistributedCache agyfw "Unexpected error occurred in method 'Put' , usage 'SPViewStateCache' - Exception 'Microsoft.ApplicationServer.Caching.DataCacheException: ErrorCode<ERRCA0018>:SubStatus<ES0001>:The request timed out.. Additional Information : The client was trying to communicate with the server : net.tcp://JeanGreyProd.domain.com:22233 at Microsoft.ApplicationServer.Caching.DataCache.ThrowException(ResponseBody respBody, RequestBody reqBody) at Microsoft.ApplicationServer.Caching.DataCache.InternalPut(String key, Object value, DataCacheItemVersion oldVersion, TimeSpan timeout, DataCacheTag[] tags, String region, IMonitoringListener listener) at Microsoft.ApplicationServer.Caching.DataCache.<>c__DisplayClass25.<Put>b__24() at Microsoft.ApplicationServer.Caching.DataCache.Put(String key, Obj..."
    DistributedCache agyfw "...ect value, TimeSpan timeout) at Microsoft.SharePoint.DistributedCaching.SPDistributedCache.Put(String key, Object value)'."
    Usage Infrastructure d0hz Starting write trace for type Microsoft.SharePoint.DistributedCaching.Utilities.SPDistributedCacheUsageEntry with correlationID 3a73769c-68f0-8064-09c0-6c639c6aa698
    Usage Infrastructure d0i0 Successful wrote trace for type Microsoft.SharePoint.DistributedCaching.Utilities.SPDistributedCacheUsageEntry with correlationID 3a73769c-68f0-8064-09c0-6c639c6aa698
    General ajb4s ViewStateLog: Failed to write to the velocity cache: https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1}
    Monitoring nasq Entering monitored scope (IEVersionMetaTag Control Render). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (IEVersionMetaTag Control Render). Execution Time=0.0585269915589831
    Monitoring nass ____CPU Cycles=91867
    Monitoring nass ____Execution Time=0.0585269915589831
    Monitoring nass ____SPRequest Objects=0
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (CSSLink Control Render). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (CSSLink Control Render). Execution Time=0.536800068165088
    Monitoring nass ____CPU Cycles=1273442
    Monitoring nass ____Execution Time=0.536800068165088
    Monitoring nass ____SPRequest Objects=0
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (CSSRegistration Control Render). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (CSSRegistration Control Render). Execution Time=0.0405079416518021
    Monitoring nass ____CPU Cycles=58908
    Monitoring nass ____Execution Time=0.0405079416518021
    Monitoring nass ____SPRequest Objects=0
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (CSSRegistration Control Render). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (CSSRegistration Control Render). Execution Time=0.0421841323408422
    Monitoring nass ____CPU Cycles=59225
    Monitoring nass ____Execution Time=0.0421841323408422
    Monitoring nass ____SPRequest Objects=0
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (ULSClientConfig Control Render). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (ULSClientConfig Control Render). Execution Time=0.0597841345757631
    Monitoring nass ____CPU Cycles=94683
    Monitoring nass ____Execution Time=0.0597841345757631
    Monitoring nass ____SPRequest Objects=0
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (ScriptLink Control Render). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Upgrade aiaih desiredVersion: 15
    Monitoring b4ly Leaving Monitored Scope (ScriptLink Control Render). Execution Time=2.0888828049375
    Monitoring nass ____CPU Cycles=5161366
    Monitoring nass ____Execution Time=2.0888828049375
    Monitoring nass ____SPRequest Objects=0
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (ReturnLink Control Render). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (ReturnLink Control Render). Execution Time=0.104273029114035
    Monitoring nass ____CPU Cycles=204792
    Monitoring nass ____Execution Time=0.104273029114035
    Monitoring nass ____SPRequest Objects=0
    Monitoring nass ____SQL Query Count=0
    Asp Runtime aj1kp SPRequestModule.PreSendRequestHeaders
    Monitoring nasq Entering monitored scope (PreSendRequestHeaders). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (PreSendRequestHeaders). Execution Time=0.0668381037254735
    Monitoring nass ____CPU Cycles=141184
    Monitoring nass ____Execution Time=0.0668381037254735
    Monitoring nass ____SQL Query Count=0
    Micro Trace uls4 "Micro Trace Tags: 0 nasq,7 agb9s,19 aix9j,0 ai1wu,13 aix9j,0 ai1wu,1 8nca,0 tkau,0 ajlz0,1 aat87,4 aix9j,0 ai1wu,21 agyfw,0 ajb4s"
    Monitoring nasq Entering monitored scope (EndRequestHandler SharePointEndRequest). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (EndRequestHandler SharePointEndRequest). Execution Time=0.0803174705165042
    Monitoring nass ____CPU Cycles=171475
    Monitoring nass ____Execution Time=0.0803174705165042
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (LogRequestUsage). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Usage Infrastructure d0i2 Successfully added requestUsageEntry to CollectUsageData with url https://domain.com/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List={F5A8C10C-02BD-4366-B964-03A3F4E79DD1}
    Monitoring b4ly Leaving Monitored Scope (LogRequestUsage). Execution Time=0.213295265180351
    Monitoring nass ____CPU Cycles=383358
    Monitoring nass ____Execution Time=0.213295265180351
    Monitoring nass ____SQL Query Count=0
    Monitoring nasq Entering monitored scope (ForceDehydrateHttpContextWorkflows). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    Monitoring b4ly Leaving Monitored Scope (ForceDehydrateHttpContextWorkflows). Execution Time=0.0302412736814316
    Monitoring nass ____CPU Cycles=52734
    Monitoring nass ____Execution Time=0.0302412736814316
    Monitoring nasq Entering monitored scope (EndRequestHandler SPRequest Disposal). Parent Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)
    General narq Releasing SPRequest with allocation Id {86C98C1F-AF39-435D-B040-E09CA45AABCE}
    Monitoring b4ly Leaving Monitored Scope (EndRequestHandler SPRequest Disposal). Execution Time=0.274266701494184
    Monitoring nass ____CPU Cycles=655484
    Monitoring nass ____Execution Time=0.274266701494184
    Monitoring nass ____SQL Query Count=0
    Monitoring b4ly Leaving Monitored Scope (Request (GET:https://domain.com:443/sites/about/itiseverywhere/_layouts/15/listfeed.aspx?List=%7BF5A8C10C-02BD-4366-B964-03A3F4E79DD1%7D)). Execution Time=83.0709629296461
    Monitoring nass ____SQL Query Count=4
    Monitoring nass ____Page Checkout Level=Published
    Monitoring nass ____ULS Large Gap=
    Monitoring nass ____Service Calls=0
    Monitoring nass ____User Address=192.168.1.100
    Monitoring nass ____=00000000-0000-0000-0000-000000000000
    Monitoring nass ____CPU Cycles=126198850
    Monitoring nass ____Current SharePoint Operations=10
    Monitoring nass ____Execution Time=83.0709629296461
    Monitoring nass ____Current User=i:0#.w|domain\user
    Monitoring nass ____Critical Events=0
    Monitoring nass ____SPRequest Objects=1
    Monitoring nass ____Log Correlation Id=3a73769c-68f0-8064-09c0-6c639c6aa698
    Monitoring nass ____Claims Counter=0
    Monitoring nass ____Request Management=
    Monitoring nass ____Distributed Cache=0
    Monitoring nass ____WebPart Events Offsets=0
    Usage Infrastructure d0hz Starting write trace for type Microsoft.SharePoint.Administration.SPRequestUsageEntry with correlationID 3a73769c-68f0-8064-09c0-6c639c6aa698
    Usage Infrastructure d0i0 Successful wrote trace for type Microsoft.SharePoint.Administration.SPRequestUsageEntry with correlationID 3a73769c-68f0-8064-09c0-6c639c6aa698
    Monitoring nasq Entering monitored scope (SPFederationAuthenticationModule.OnEndRequest). Parent No
    Monitoring b4ly Leaving Monitored Scope (SPFederationAuthenticationModule.OnEndRequest). Execution Time=0.0253523841717313
    Monitoring nass ____CPU Cycles=38200
    Monitoring nass ____Execution Time=0.0253523841717313
    Monitoring nasq Entering monitored scope (SPFederationAuthenticationModule.OnEndRequest::WifCodeCall). Parent No
    Monitoring b4ly Leaving Monitored Scope (SPFederationAuthenticationModule.OnEndRequest::WifCodeCall). Execution Time=0.0217904789575211
    Monitoring nass ____CPU Cycles=31625
    Monitoring nass ____Execution Time=0.0217904789575211

  • I need help getting my RSS feed compaitble with Itunes...Im almost there.

    Can someone help me with my code for itunes. Unfortunately I use rapidweaver to podcast and I have read there are a few things Rapidweaver leaves out when publishing the site so itunes does not accept the feed. My RSS feed works and can be subscribed manually though Itunes or with software. Im thinking im using spaces or it looks like I need to number my tracks for my podcast(which sounds odd but, I know itunes is finicky with spaces, symbols etc)
    thank you so much for the help...after I get my podcast set in Itunes I will be a happy camper!
    here is what the validation suggest from the free validator:
    Congratulations!
    [Valid RSS] This is a valid RSS feed.
    Recommendations
    This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.
    line 14, column 1047: Ensure description precedes content:encoded (11 occurrences) [help]
    ... 0cbb11-16.html#unique-entry-id-16</guid><content:encoded><![CDATA[<span ...
    ^
    line 14, column 0: style attribute contains potentially dangerous content: font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; (36 occurrences) [help]
    <lastBuildDate>Tue, 29 Dec 2009 21:13:01 -0800</lastBuildDate><itunes:author ...
    line 85, column 8507: Missing atom:link with rel="self" [help]
    ... h="245684953" type="audio/mpeg"/></item></channel>
    ^
    line 85, column 8507: Missing recommended iTunes channel element: language [help]
    ... h="245684953" type="audio/mpeg"/></item></channel>
    ^
    line 85, column 8507: Missing recommended iTunes channel element: itunes:explicit [help]
    ... h="245684953" type="audio/mpeg"/></item></channel>
    ^
    Source: <a class="jive-link-external-small" href="http://www.djnickjames.com/page4/files/Trancejectory.xml">http://www.djni ckjames.com/page4/files/Trancejectory.xml</a>
    1. <?xml version="1.0" encoding="utf-8"?>
    2. <rss version="2.0"
    3. xmlns:dc="http://purl.org/dc/elements/1.1/"
    4. xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    5. xmlns:admin="http://webns.net/mvcb/"
    6. xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    7. xmlns:content="http://purl.org/rss/1.0/modules/content/"
    8. xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
    9. <channel>
    10. <title>Trancejectory</title><link><a class="jive-link-external-small" href="http://www.djnickjames.com/index.html">http://www.djnickjames.com/index.h tml</a></link><description>Trancejectory - Brand new trance and progressive hits in a 2 hour mix.</description><dc:language>en</dc:language><dc:creator>nickjameslopez@gmail .com</dc:creator><dc:rights>Copyright 2009 Nick Lopez</dc:rights><dc:date>2009-12-26T13:52:05-08:00</dc:date><admin:generatorAg ent rdf:resource="http://www.realmacsoftware.com/" />
    11. <admin:errorReportsTo rdf:resource="mailto:[email protected]" /><sy:updatePeriod>hourly</sy:updatePeriod>
    12. <sy:updateFrequency>1</sy:updateFrequency>
    13. <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    14. <lastBuildDate>Tue, 29 Dec 2009 21:13:01 -0800</lastBuildDate><itunes:author>Nick James</itunes:author><itunes:owner><itunes:name>Trancejectory</itunes:name><itu nes:email>[email protected]</itunes:email></itunes:owner><itunes:category text="Music"/><itunes:keywords>Dance, Trance, House, Electro, Progressive</itunes:keywords><itunes:subtitle>www.djnickjames.com</itunes:subti tle><itunes:summary>Trancejectory with your host Nick James keeping you on the path to the latest in trance and progressive tunes from around the world in a 2 hour mix. </itunes:summary><itunes:image href="http://www.djnickjames.com/page4/files/podcast_channel.png" /><item><title>Trancejectory 20</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-12-26T13:52:05-08:00</dc:date><link><a class="jive-link-external-small" href="http://www.djnickjames.com/page4/files/4b7e19b326f410f8831429f5090cbb11-1 6.html#unique-entry-id-16">http://www.djnickjames.com/page4/files/4b7e19b326f410 f8831429f5090cbb11-16.html#unique-entry-id-16</a></link><guid isPermaLink="true"><a class="jive-link-external-small" href="http://www.djnickjames.com/page4/files/4b7e19b326f410f8831429f5090cbb11-1 6.html#unique-entry-id-16">http://www.djnickjames.com/page4/files/4b7e19b326f410 f8831429f5090cbb11-16.html#unique-entry-id-16</a></guid><content:encoded><![CDAT A[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 20</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Liquid Soul - Love In Stereo (Jerome Isma-Ae Remix)<br />Anton Firtich - Mirage (Jochen Miller Remix)<br />Metteo Marini - Matter (Original No Vox Mix)<br />Bob Sinclair & Axwell - What A Wonderful World (EDX Remix)<br />Daniel Portman & EDX - Hip<br />Daniel Portman - Baaly (Non-Violin Dub)<br />Jerome Isma-Ae - Hold That Sucker Down<br />Activa - Minute One<br />Tom Neville & Stafford Brothers - Come My Way feat. Frank Stafford (Jerome Isma-Ae Dub Mix)<br />Kriece - Giant Head Of Fury<br />PROFF - Starstruck (Solarity Remix)<br /><br />58:00<br /><br />Mat Zo - Default<br />Moodfreak - Far From You (Mango Remix)<br />Solarity - Laika (Ashley Wallbridge Remix)<br />Schodt - Octagon<br />Kaskade & Seamus Haji feat Haley - So Far Away<br />Dinka - Never Cheat On Strangers<br />Jerome Isma-Ae, Chris Reece, EDX - Ready To Go<br />Lange pres Firewall - Wanderlust (Sunny Lax Chunky Mix)<br />Deadmau5 - Strobe (Michael Woods Remix)<br />Above & Beyond - Anjunabeach (Jerome Isma-Ae Remix)<br />Matt Darey pres Urban Astronauts - See The Sun (Aurosonic Remix)<br /><br />]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory20.mp3" length="247126433" type="audio/mpeg"/></item><item><title>Trancejectory 19</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-12-26T13:36:49-08:00</dc:date><link>http://www.djnickjames.com/page4/files/d7119a15b5bf963fa3bb5c124853043e-15.html# unique-entry-id-15</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/d7119a15b5bf963fa3bb5c124853043e-15.html# unique-entry-id-15</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 19</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Mr. Sam & Andy Duguid - Tra Zomas<br />Dinka - Elements<br />Solarity - Laika<br />Jerome Isma-Ae - Hold That Sucker Down<br />Mat Zo - Rush 2009<br />Cressida - Two-O-Ten<br />Matt Darey pres. Urban Astronauts - See The Sun (Aurosonic Remix)<br />Above & Beyond - Anjunabeach (Jerome Isma-Ae Remix)<br />Andy Moor & Adam White - The White Room (Myon & Shane 54 Refill)<br />D'argetno - The Sun (Stanley Ross Mykonos Remix)<br /><br />59:00<br /><br />Guest Artist DJ Kouei<br /><br />Sophie Sugar - Together<br />Poshout Ft. Victoria Razznyh - Fallen World ( Poshout dub Remix )<br />Redstar- Evolution ( DeepWide Remix )<br />Setrise & Nurettin Colak - Frozen Dreams ( Six Sense Remix )<br />Armin Van Buuren ft. Van Velsen ; Broken Tonight ( Alex MORPH Remix )<br />Med vs. Neil Bamford - Stolen<br />Sean Tyas - Melbourne ( Hodel Bangin Remix )<br />Kay D Smith & Marc Tall - Hoipolloi ( Mark Sherry's Energy Remix )<br />Be:Gold - Sunstroke<br />Adam Foley - Generation]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory19.mp3" length="242652868" type="audio/mpeg"/></item><item><title>Trancejectory 18</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-12-26T13:09:17-08:00</dc:date><link>http://www.djnickjames.com/page4/files/bbd9e7e3f890ae78d9a4aae548032ac6-14.html# unique-entry-id-14</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/bbd9e7e3f890ae78d9a4aae548032ac6-14.html# unique-entry-id-14</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 18</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Shannon - Let The Music Play (David Delano Dirty Lou & Swedish Egil Mix)<br />Sebastian Ingrosso - Kidsos (Wippenberg Remix)<br />Nadastrom - Save Us<br />Above & Beyond pres. Oceanlab - Lonely Girl (Ercola Remix)<br />Fatboy Slim vs Fedde le Grand - Praise You 2009<br />Michael Cassette - Kilimanjaro (Solarity Remix)<br />Chocolate Puma vs. Bingo Players - Disco Electrique (Vocal Mix)<br />Lange feat. Sarah Howells - Let It All Out (Genix Re-Rub)<br />Daniel Portman - Back To The Underground<br />Dinka - Green Leaf (Extended Vocal Mix)<br /><br />59:00<br /><br />Lish - Dirty Feelings (Alter Breed Remix)<br />Myon & Shane 54 feat Aruna - Helpless (Ian Flux & Thomas Blofeld Remix)<br />Stew Ewens & Louk - Bad Habit (Dinka Remix)<br />The Blizzard with Gaate - Iselilja (Michael Cassette Dub Remix)<br />EDX - Shy Shy (Extended Vocal Mix)<br />Thomas Gold feat Amanda Wilson - Just Because (The Good Guys Mix)<br />The Good Guys - Circle (Rawdirt's Double Drop Mix)<br />Moony - I Dont Know Why (DJ Chus & Jerome Isma-Ae Superdub Mix)<br />Muzikjunki & Marco Den Held - Red Snapper (Danila Remix)<br />Eleven.Five - Finding Hope (Cressida Remix)<br />Gareth Emery - Metropolis]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory18.mp3" length="255581579" type="audio/mpeg"/></item><item><title>Trancejectory 10</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-07-17T00:00:00-07:00</dc:date><link>http://www.djnickjames.com/page4/files/3ee3bbffb44aeacd3d794a1e091159c3-12.html# unique-entry-id-12</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/3ee3bbffb44aeacd3d794a1e091159c3-12.html# unique-entry-id-12</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 10<br /></u></span><br />EDX - Shy Shy (Club Mix)<br />Above & Beyond pres. Oceanlab - Lonely Girl (Ercola Remix)<br />Sebastian Ingrosso - Kidsos (Wippenberg Remix)<br />Yvan & Dan Daniel - Enjoy The Silence (Jerome Isma-Ae Remix)<br />Hot Einstein - Moscow<br />Erphun - 2wo Butterflies (Mat Zo Remix)<br />David & Carr - Every Day feat Jenna Colaizy (Hawk’s Nude N Rude Remix)<br />Happy Monkey - King Of The Berry (Piano Slam Mix)<br />John Shelvin - Just Like You Said feat Molly<br />Quarrel - Feel You Better<br />Aqua Diva vs Mango - At The Edge Of This Mountain (Instrumental Mix)<br /><br />61:00<br /><br />D’argento - The Sun (Stanley Ross Mykonos Remix)<br />Dbn, Michael Feiner, Tommy Trash - Stars (Tommy Trash Remix)<br />Steve Agnello - Isabel<br />DJ Tatana - Autumn Sun (Oliver Southey Remix)<br />Dinka - Road To Perdition<br />PROFF - Deep Orange (Vadim Soloviev Remix)<br />Dinka - Canonball<br />DJ Tatana - Saltwater<br />Boris M.D & Khaz - Eliana<br />Onova - Platitude (Mat Zo Remake)<br />16 Bit Lolitas - 5 to 12<br />]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory10.mp3" length="248324240" type="audio/mpeg"/></item><item><title>Trancejectory 11</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-08-01T00:00:00-07:00</dc:date><link>http://www.djnickjames.com/page4/files/07882beaee405e0bbc9bbbe3b1475b3f-11.html# unique-entry-id-11</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/07882beaee405e0bbc9bbbe3b1475b3f-11.html# unique-entry-id-11</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 11<br /><br /></u></span>ATB presents Flanders - Behind (EDX Re-Dub)<br />Daniel Portman - Dark Is Night For All<br />George F. Zimmer - Soma (Dinka Remix)<br />Evave - To The Stars (PROFF Remix)<br />Sundogs, Desyfer, Fletch - Primary Key (PROFF Remix)<br />The Blizzard with Gaate - Iselilja (Michael Cassette Dub Remix)<br />Squash 84 feat. Maia - Should I Find You (Michael Cassette Dub Remix)<br />PROFF - Little Space (Seratonine Remix)<br />Leventina - Naked (Ibiza Sunset Dub)<br />Jonathan Allyn - Near You (Jaytech Remix)<br />Sebastian Ingrosso - Kidsos (Original Mix)<br /><br />60:00<br /><br />Mike Shiver, Matias Lehtola - Captured feat Andrea Britton (Joonas Hahmo Remix)<br />MArc Marberg, Kyua & Albert - Grrreat<br />Kimito Lopez - Arabian Queen (Emilio Fernandez Remix)<br />Simone Anes - Children (Tom Novy Mix)<br />Blake Jarrell - Boracay<br />Dirty Vegas - Tonight (Above & Beyond Remix) Tune of the Week<br /><a href="http://s138.photobucket.com/albums/q265/facheezey/?action=view&current=R- 1858214-1248262259jpeg.jpg" target="_blank"><img src="http://i138.photobucket.com/albums/q265/facheezey/R-1858214-1248262259jpeg .jpg" border="0" alt="Nick James Tune of The Week"></a><br />Jonnas Hahmo - Radiance<br />DJ Remy - Knalpot<br />Above & Beyond pres Oceanlab - Lonely Girl (PROFF Remix)<br />Aqua Diva vs Mango - At The Edge Of The Mountain - Instrumental Mix)<br />D’argento - The Sun (Stanley Ross Mykonos Remix)]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory11.mp3" length="249032549" type="audio/mpeg"/></item><item><title>Trancejectory 12</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-09-22T00:00:00-07:00</dc:date><link>http://www.djnickjames.com/page4/files/7837d39da80f272eabb554516df5881d-10.html# unique-entry-id-10</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/7837d39da80f272eabb554516df5881d-10.html# unique-entry-id-10</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 12<br /><br /></u></span>John O’Callaghan feat Lo Fi Sugar - Never Fade Away (Original intro)<br />John O’Callaghan feat Lo Fi Sugar - Never Fade Away (Andy Duguid Remix)<br />Cold Blue - Mount Everest (Dennis Sheperd)<br />Pryda - Alfon<br />DJ Tatana - Soulmate (Dinka Vocal Mix)<br />Deadmau5 - Arguru (EDX 5un5hine Remix)<br />GLM - Run To You feat Randolph (Amine Edge Instrumental Remix)<br />The Blizzard With Gaate - Iselilja (Michael Cassette Dub Remix)<br />Daniel Portman - Open Your Mind (Dinka D.E.E.P. Remix)<br />Above & Beyond - Buzz (Buzztalk Mix)<br />Leventina - Here Workin’ (Dinka Vocal Mix)<br />Moony - I Dont Know Why (DJ Chus & Jerome Isma-Ae Superdub Mix)<br /><br />58:00<br /><br />Pryda - Waves<br />Activa pres. Solar Movement - Eclipse (Mat Zo Remix)<br />Emilio Fernandez - Let It Go (Vocal Mix)<br />Ronski Speed feat Ana - The Deep Devine (Gareth Emery Remix)<br />PROFF - Breathe (Ricky Inch Remix)<br />Fedde Le Grand Feat. Mitch Crown - Scared Of Me (Ranucci Pelusi & Provenzano Remix)<br />Dubfire - Roadkill (EDX’s Acapulco At Night Remix)<br />Tritonal Feat. Hannah Sky - Jump Off (Tritonals Air Up There Mix)<br />Orbital - Halcyon (Tom Middleton Re-model)]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory12.mp3" length="244215773" type="audio/mpeg"/></item><item><title>Trancejectory 13</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-11-13T00:00:24-08:00</dc:date><link>http://www.djnickjames.com/page4/files/4f50e84527081a141c38130c7d0ccec9-9.html#u nique-entry-id-9</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/4f50e84527081a141c38130c7d0ccec9-9.html#u nique-entry-id-9</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 13</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Michael Jackson - Stranger In Moscow (Jerome Isma-Ae)<br />Daniel Portman - Open Your Mind (Dinka D.E.E.P Remix)<br />Leventina - Naked (Ibiza Sunset Dub)<br />EDX - Rubin (DBN Remix)<br />Nifra - Complicated Life (1985 Remix)<br />Rest Point - Air Stream (PROFF Remix)<br />PROFF - Glittering Puzzle<br />Dakota - Roxy '84 (Michael Cassette Remix)<br />Dinka - Chemistry (Jerome Isma-Ae Remix)<br />Sebastian Krieg, Jerome Isma-Ae - 308<br /><br />60:00<br /><br /><a href="http://i1.soundcloud.com/artworks-000000504229-ws22az-crop.jpg" target="_blank"><img src="http://i1.soundcloud.com/artworks-000000504229-ws22az-crop.jpg" border="0" alt="<strong>Myon & Shane 54, International departures 007</strong>"></a><br /><br /><strong><u>Myon & Shane 54, International departures 007</u></strong><br />01. Oasis - Wonderwall (Myon and Shane 54 Helpless Mix)
    15. 02. Airplay 47 - Be Free (Mat Zo Remix)
    16. 03. Dakota - Johnny The Fox
    17. 04. Talla2XLC_-_Dante's_Peak_(Jerome_Isma-AeRemix)
    18. 05. Pryda - Melo 06. ATB - Renegate (Acapella)
    19. 07. Myon and Shane 54 - Helpless (Ian Flux and Thomas Blofeld Remix)
    20. 08. Above and Beyond - Home (Pianopella)
    21. 09. Above and Beyond - Home (Drumapella)
    22. 10. Above and Beyond - No One On Earth (Acapella)
    23. 11. Arnej - Dust In The Wind (Deep Dub)
    24. 12. J.O.C. feat Sarah Howels - Find Yourself (Cosmic Gate Remix)
    25. 13. Dave Gahan - I Need You (Acapella)
    26. 14. Lost Tribe - Gamemaster (Acapella)
    27. 15. Lost Tribe - Gamemaster (Shane 54 Drumless Dub)
    28. 16. Rank1 - Symfon
    29. 17. BT - Simply Being Loved (Somnambulist) (Acapella)
    30. 18. Above and Beyond - On A Good Day (Acapella)
    31. 19. Gareth Emery - Metropolis (Edit)
    32. 20. Duderstadt - Broken
    33. 21. Above and Beyond - Alone Tonight (Acapella)
    34. 22. Cass Fox - Touch Me (Myon and Shane 54 Remix)
    35. 23. Christian Cambas feat The Static Age - Sirens (Squash 84 Remix)
    36. 24. Ronski Speed feat Aruna - All The Way (Acapella)
    37. 25. Ronski Speed feat Aruna - All The Way (Jonas Steur Dub Synthapella)
    38. 26. Myon - Albion (Padapella) 27. Myon - Albion (Acapella)
    39. 28. Andy Moor - Halcyon (Acapella + Synthapella)
    40. 29. Andain - Summer Calling (Acapella)
    41. 30. Myon and Shane 54 - Allnight Rock and Roll (Squash 84 Remix)
    42. 31. Conjure One - Tears From The Moon (Acapella)
    43. 32. Faithless feat Cass Fox - Music Matters (Mark Knight Remix)
    44. 33. Amiel - Love Song (Myon and Shane 54 Remix)
    45. 34. Sunlounger - Change Your Mind (Myon and Shane 54 Remix)
    46. 35. Jakatta feat Seal - My Vision (Pianoapella + Vocal)
    47. 36. Oceanlab - Just Listen (Myon and Shane 54 remix)
    48. 37. Ashley Wallbridge and Andy Moor feat Meighan Nealon - Faces (Original Mix)
    49. 38. Super8 and Tab - Elektra 39. Oceanlab - Satellite (Acapella)
    50. 40. Ohmna - Key Of Life 41. Adiva - How Does It Feel (Myon and Shane 54 Dub)
    51. 42. Stardust - Music Sounds Better With You (Dub)
    52. 43. Andy Moor vs Lange - Stadium 4
    53. 44. Super 8 and Tab - Helsinki Scorchin'
    54. 45. Kosheen - Catch (Acapella)
    55. 46. Andy Moor vs Orkhidea - Year Zero (Acapella + Synthapella)
    56. 47. Darude - I Ran (Gareth Emery Dub)
    57. 48. Cara Dillion - Black Is The Colour (Acapella)
    58. 49. 3 Drives On A Vynl - Greece 2000 (Drumapella)
    59. 50. Gareth Emery vs Delerium - This is Silence (Myon and Shane 54 Mashup)
    60. 51. Ashley Wallbridge and Andy Moor feat Meighan Nealon - Faces (Acapella)
    61. 52. Tiesto - Ten Seconds Before (First State Remix)
    62. 53. Markus Schulz and Andy Moor - Daydream (Acapella)
    63. 54. Nadia Ali - Love Story (Andy Moor Dub)
    64. 55. Orkidea - Metaverse (Gareth Emery Remix)
    65. 56. Armin Van Buuren - Sound Of Goodbye (Acapella)
    66. 57. Signalrunner feat Julie Thompson - These Shoulders
    67. 58. Above and Beyond Vs Mr Pit - Shana Can't Sleep (Myon and Shane 54 Mashup)
    68. 59. Cosmos - Take Me With You
    69. 60. Above and Beyond - Air For Life (Synthapella)
    70. 61. Signum feat Anita Kelsey - Come Around Again (Myon and Shane 54 remix)
    71. 62. Tiesto feat BT - Love Comes Again (Acapella)
    72. 63. Oceanlab vs Nalin & Kane - Beachball Sky Falls Down (Myon and Shane 54 Remix Mashup)
    73. 64. Matt Cassar - Seven Days And One Week (Myon and Shane 54 Monster Mix)
    74. 65. Iio - Rapture (Acapella)
    75. 66. Myon and Shane 54 - Not A Lot Left (Acapella)
    76. 67. Michael Angelo feat Jenry R -Disconnected (Myon and Shane 54 Dub)
    77. 68. Leona Lewis - Bleeding Love (Acapella)
    78. 69. Bissen presents The Crossover - Washout (Myon and Shane 54 Remix)
    79. 70. Ronski Speed - The Space We Are (Acapella)
    80. 71. First State feat Anita Kelsey - Fallin (Acapella)
    81. 72. Albert Vorne - Formentera What (Gareth Emery Acapella + Synthapella)
    82. 73. The Whiteroom - Whiteroom (Myon and Shane 54 Remix Acapella)
    83. 74. Tomcraft - Loneliness (Myon and Shane 54 Summer Of Dub Mix)
    84. 75. The Doppler Effect - Beauty Hides In The Deep (Blizzard Acapella)
    85. 76. The Blizzard - Kalopsia (Stabapella + Padapella)]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory13.mp3" length="242381481" type="audio/mpeg"/></item><item><title>Trancejectory 14</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-11-20T23:53:51-08:00</dc:date><link>http://www.djnickjames.com/page4/files/794f47d4ef18468ee6c3b1fa27576bcd-8.html#u nique-entry-id-8</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/794f47d4ef18468ee6c3b1fa27576bcd-8.html#u nique-entry-id-8</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 14</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Seventh Son & Ethan North - Adagio For Strings (Original Mix)<br />Passenger 10 - Avantgarde (Dinka D.E.E.P. Remix)<br />Way Out West feat. Jonathan Mendelsohn - Only Love (Jerome Isma- Ae Mix)<br />Inpetto - The Milky Way<br />Tom Cloud - Laguna<br />Jessus - Traveller (D.E.R. Mix)<br />Jessus - Sunrose<br />Tom Cloud - Last Days<br />Dirty Vegas - Tonight (Above & Beyond Remix)<br />Benjamin Leung & Dom G - Sub Zero (Jan van Lier Remix)<br /><br />59:00<br /><br />Innate - Parabolic Curve (Lank Remix)<br />PROFF - Little Space (Seratonine Remix)<br />Michael Jackson - Stanger In Moscow (Jerome Isma-Ae Remix)<br />Christian Weber - Electronic Love (Club Mix)<br />Above & Beyond pres. Oceanlab - Come Home (Michael Cassette Remix)<br />Afrojack - Radioman (EDX's 5un5hine Remix)<br />Cirez D - On Off<br />San - Better Days (Beat Service Remix)<br />Fedde Le Grand feat. Mitch Crown - Scared Of Me (Hardwell Remix)<br />Muzikjunki Marco Den Held - Red Snapper (Danila Remix)]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory14.mp3" length="252470425" type="audio/mpeg"/></item><item><title>Trancejectory 15</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-11-30T23:00:08-08:00</dc:date><link>http://www.djnickjames.com/page4/files/c2914a5ba3915062c4178fce03afdf20-7.html#u nique-entry-id-7</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/c2914a5ba3915062c4178fce03afdf20-7.html#u nique-entry-id-7</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 15</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Jessus - Moonrose<br />Benjamin Leung & Dom G - Sub Zero (Nathan C Remix)<br />Above & Beyond pres. Oceanlab - On The Beach (Andy Dugiuid Remix)<br />PROFF - Deep Orange<br />Nurettin Colak & Faruk Sabanci - Anatolian Emotions (Myon & Shane 54 Remix)<br />Joonas Hahmo - Bendbass<br />Starkillers - Able & Uneasy (The Unreal Remix)<br />Daniel Portman & Rino Cabrera - Sumatra (Night In The Club Mix)<br />The Blizzard with Gaate - Iselilja (Michael Cassette Dub)<br />Dinka - Chemistry (Jerome Isma-Ae Remix)<br /><br />59:00<br /><br />Mr. Sam - MEnkayo (Maverickz Remix)<br />Cirez D - On Off<br />Above & Beyond pres. Oceanlab - On A Good Day (16 Bit Lolitas Remix)<br />Kriece - K9 (Matt Rowan & Jaytech Remix)<br />EDX - Shy Shy (Extended Vocal Mix)<br />Daniel Portman - Dark Is The Night For All<br />Second Life - A Second Chance (Instrumental Mix)<br />Schodt - Tokyo Dawn (Dinka Remix)<br />Above & Beyond pres. Oceanlab - Secret (Andrew Bayer Remix)<br />Dakota - Chinook (Afterhours Mix)<br />Seventh Son & Ethan North - Adagio For Strings]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory15.mp3" length="248854427" type="audio/mpeg"/></item><item><title>Trancejectory 16</title><dc:creator>[email protected]</dc:creator><category>None</cate gory><dc:date>2009-12-06T18:00:18-08:00</dc:date><link>http://www.djnickjames.com/page4/files/678f042e5334e8dbc0c87e77a98d512d-5.html#u nique-entry-id-5</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/678f042e5334e8dbc0c87e77a98d512d-5.html#u nique-entry-id-5</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 16</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Richard Durand - Always The Sun (Dub Mix)<br />Ronski Speed ft. Mque - Are You? (Clib Mix)<br />M.I.K.E. - Sunrise At Palamos (Gareth Emery Remix)<br />Ernesto vs. Bastian - Killer Tone<br />Lange feat Sarah Howells - Let It All Out (Genix Re-Rub)<br />Daniel Portman - Back To The Underground<br />Myon & Shane 54 feat Aruna - Helpless (Monster Mix)<br />Veracocha - Carte Blance (Cosmic Gate Remix)<br />Stew Ewens & Louk - Bad Habit (Dinka Remix)<br />Steve Angello - Tivoli<br /><br />59:00<br /><br />Gaia - Tuvan (Gareth Emery Remix)<br />Kaempfer & Dietze - Shear Force (Daniel Portman & Jerome Isma-Ae Remix)<br />Solarity - Terminal 6 (Jaytech Remix)<br />Fabio Stein - Stroboscopic (Danilo Ercole Remix)<br />Michael Cassette - Kilimanjaro<br />Armin Van Buuren feat Van Velzen (Dub Mix)<br />Activa feat Julie Harrington - You Are Here (Thomas Datt Dub)<br />John O' Callghan feat Audrey Gallagher - Take It All Away (Marcus Schossow Remix)<br />Above & Beyond pres. Oceanlab - Secret (Andrew Bayer Remix)<br />Inpetto - The Milky Way<br />Active - Minute One<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /></u></span>]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/Trancejectory16.mp3" length="243768165" type="audio/mpeg"/></item><item><title>Trancejectory 17</title><dc:creator>[email protected]</dc:creator><dc:subject>PLAYLIST </dc:subject><dc:date>2009-12-13T19:18:47-08:00</dc:date><link>http://www.djnickjames.com/page4/files/974d2ab1cfaeb6ceae605d4b699a2408-0.html#u nique-entry-id-0</link><guid isPermaLink="true">http://www.djnickjames.com/page4/files/974d2ab1cfaeb6ceae605d4b699a2408-0.html#u nique-entry-id-0</guid><content:encoded><![CDATA[<span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u>TRANCEJECTORY 17</u></span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#66FFFF;font-weight:bold; "> </span><span style="font:12px HiraKakuPro-W6; font-weight:bold; color:#666666;font-weight:bold; "><u><br /><br /></u></span>Ridgewalkers feat El - Find (Russell G Remix)<br />Christopher Manik - Pink Champagne (Jaytech Remix)<br />DJ Remy - 20 Dollars<br />Daniel Portman - Back To The Underground<br />Rocking J - Sequence (Alex M.O.R.P.H. Remix)<br />Michael Cassette - Kilimanjaro (Solarity Remix)<br />Dinka - Green Leaf (Extended Vocal Mix)<br />Daniel Portman - Elder<br />Paul Van Dyk feat Johhny Mcdaid - Home (Wippenberg Remix)<br />Ronski Speed feat Mque - Are You? (Sun Decade Dub)<br /><br />59:00<br /><br />Chocolate Puma & Bingo Players - Disco Electrique ( Revisited Mix)<br />DJ Remy - Strobophonic<br />Thomas Gold feat Amanda Wilson - Just Beacause (The Good Guys Mix)<br />Cosmic Gate feat. Aruna - Under Your Spell (Myon & Shane 54 Monster Mix)<br />EDX - Shy Shy (Club mix)<br />Kriece - K9 (Matt Rowan & Jaytech Remix)<br />ATB - pres. Flanders - Behind (EDX Re-Dub)<br />Moony - I Don't Know Why (DJ Chus & Jerome Isma-Ae Superdub Mix)<br />Armin Van Buuren - The Sound Of Goodbye (EDX's Indian Summer Vocal Remi)<br />Shannon - Let The Music Play 2009 (David Delano Dirty Lou & Swedish Egil Mix)]]></content:encoded><enclosure url="http://www.djnickjames.com/page1/files/trancejectory17.mp3" length="245684953" type="audio/mpeg"/></item></channel>
    86. </rss>

    It's better to post the URL of the feed (as you have subsequently done) than the contents of the feed .
    From the FeedValidator report the feed is basically OK for iTunes. There are several occasions where 'content:encoded' sections (following immediately on 'guid' tags) should be enclosed in
    <description>...</description>
    tags: however all this will be ignored by iTunes anyway and only applies to other readers. The 'potentially dangerous content' referred to by FeedValidator is within the 'content:encoded' tags and so isn't relevant to iTunes. They are referring to an inline css style, and I don't know whether this might cause a problem elsewhere.
    You should really have a language tag, e.g.
    <language>en-us</language>
    (you have a dc:language tag but that's for a different system). This should be placed in the top section, before the first 'item' tag.
    It's advisable to have an 'itunes:explicit' tag for each 'item' -
    <itunes:explicit>yes IF CONTAINS ADULT MATERIAL, OTHERWISE no</itunes:explicit>
    it's not compulsory if you have no adult material, but you must have a 'yes' if you do.
    You can check your feed by subscribing in iTunes from the 'Advanced' menu - this has the same result as clicking the 'Subscribe' button on the Store page. If it works OK there you are ready to submit it.

  • I am trying to create a RSS feed from scratch

    Okay so I want to create a RSS feed with these two links:
    http://www.networkcomputing.com/rss.php
    and
    http://www.voip-news.com/rss/vnar.xml
    I have checked out different widgets and what not but I want to create this from scratch.
    I started this xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <rss  version="2.0">
    <channel>
    <title>Network Computing</title>
    <link>http://www.networkcomputing.com/all.xml</link>
    <description>Top stories and blogs</description>
    <lastBuildDate>Wed, 14 Jul 2010 10:19:00 GMT</lastBuildDate>
    <language>en-us</language>
    <item>
    <title>Catbird, Hytrust Offer Integrated Virtualization Compliance Reporting
    </title>
    <link>http://www.networkcomputing.com/virtualization/catbird-hytrust-offer-integrated- virtualization-compliance-reporting.php</link>
    <guid>http://www.networkcomputing.com/virtualization/catbird-hytrust-offer-integrated- virtualization-compliance-reporting.php</guid>
    <pubDate>Wed, 14 Jul 2010 10:19:00 GMT</pubDate>
    <description>Virtualization security companies Hytrust and Catbird will offer integrated compliance reporting that encompasses the hypervisor-host and network environment down through the virtual machine level. Catbird vSecurity, delivered either as a hosted service or virtual appliance, ensures correct hypervisor configuration and deploys network access control (NAC) against unauthorized access and protection against attack via IDS/IPS. Its VMShield component protects client VMs, tracks them as they move and enforces policy.</description>
    </item>
    </channel>
    </rss>
    So I created a button on my home page, and it is linked to this XML file. Everything works great except it only shows the item that I coded in...I want it to show ALL items.
    Can I do this without having to input each item individually?
    Is this how I should do it anyways with a button linking to this xml file?
    I really want to have like 3-5 of the posts to auto update on my home page but I dont know how to embed the RSS into my HTML home page file.
    Also, the way I have it coded, will it automatically update the new posts?
    or do I have to wait for the new post and input the item into the xml file?
    I am very new to the RSS feed so please help.
    Thanks,
    cp

    Here is my HTML code:
    <!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" />
    <title>Untitled Document</title>
    <!--
    body {
        background-color: #000000;
        background-image: url(images/background.jpg);
        background-repeat: repeat-x;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryMasterDetail.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    body {
        background-color: #3B5998;
    .style2 {
        font-size: 14px
    .style6 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #97B1F4;
    .style7 {color: #FFFFFF}
    .style8 {
        color: #97B1F4;
        font-weight: bold;
        font-size: 12px;
        font-family: Helvetica;
        margin-left: 35px;
    .style9 {color: #97B1F4}
    .style10 {
        color: #97B1F4;
        font-size: 12px;
        font-family: Helvetica;
        font-weight: bold;
    .style11 {
        color: #97B1F4;
        font-size: 12px;
        font-family: Helvetica;
    </style>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <script src="http://config.spry-it.com/js?f=1.7/data/1.7/jsondataset/nestedjsondataset"></script>
    <script src="SpryAssets/SpryDataYQLDataSet.js"></script>
    <script>
    var dsItem = new Spry.Data.YQLDataSet(
        'select * from xml where url="http://www.networkcomputing.com/all.xml"',
        false,
            format:"xml",
            preparseFunc: function( strxml ){
                var xml = Spry.Utils.stringToXMLDoc( strxml ), ds = Spry.Data.XMLDataSet.getRecordSetFromXMLDoc( xml, "rss/channel/item" );
                return ds.data;
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    </script>
    </head>
    <body>
    <div id="container">
    <div id="banner"></div>
    <div id="navigation">
    <div id="navbar">
      <ul class="style2">
        <li><a href="index.html">Home</a></li>
        <li><a href="solutions.html">Solutions</a></li>
        <li><a href="services.html">Services</a></li>
        <li><a href="support.html">Support</a></li>
        <li><a href="about.html">About</a></li>
        <li><a href="contact.html">Contact</a></li>
      </ul>
    </div>
    </div>
    <div id="navigation2">
    <img src="images/navigation_2.jpg" />
    </div>
    <div id="content">
      <div id="right_content">
    <div id="video">
    <embed src="network.mp4" width="320" height="162" autostart="true" style="background-color: Black; " type="video/quicktime" autoplay="true" loop="true" controller="true" pluginspage="http://www.apple.com/quicktime/download/"></embed>
    </div>
    <div id="title_bar">
        <p class="style8"><a target="_blank" href="http://www.networkcomputing.com/all.xml">RSS Network Computing</a></p>
        </div>
    <div id="PageWrap">
      <div class="MasterDetail">
      <p class="style10">Select a Channel:</p>
        <div spry:region="dsItem" id="MasterContainer" class="MasterContainer">
          <div spry:repeat="dsItem" spry:test="{ds_RowID}<4" spry:choose="choose">
            <div class="MasterColumn" spry:when="{ds_RowID} == {ds_CurrentRowID}" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:selected="MasterColumnSelected" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
            <div class="MasterColumn" spry:default="default" spry:select="MasterColumnSelected" spry:selectgroup="master" spry:hover="MasterColumnHover" spry:setrow="dsItem">{title}</div>
          </div>
        </div>
        <br/>
        <div spry:detailregion="dsItem" class="DetailContainer">
          <div class="DetailColumn"><span class="style9">Category:</span>  <span>{category}</span></div>
          <div class="DetailColumn"><span class="style9">Published:</span>  <span>{pubDate}</span></div>
          <div class="DetailColumn"><span class="style9">Author:</span>  <span>{author}</span></div>
          <br/>
          <div class="DetailColumn"><span class="style9">Description:</span><br><span>{description}</span>  <button onClick="MM_openBrWindow('{link}','','')">More...</button></div>
        </div>
        <br style="clear:both" />
      </div>
    </div>
    <div id="title_bar">
        <p class="style8"><a target="_blank" href="http://www.voip-news.com/rss/vnar.xml">RSS VoIP News</a></p>
        </div>
        <p class="style11"><a href="voip_rss.html">View Now (Click Here)</a></p>
    </div>
    <div id="left_content">
    </div>
    <div id="logos">
    </div>
    </div>
    <div id="footer">
    <div id="footerbox">
    <p class="style6"><span class="style7">Stanford Technologies</span> © Copyright, 2010. All Rights Reserved. Powered by <span class="style7">Chris Proett</span></p>
    </div>
    </div>
    </div>
    </body>
    </html>
    I just want to take away the scroll bar in FF.

  • Safari has been crashing on RSS feeds for a month now...

    I've done a reinstall of the combo update, repaired permissions, deleted my RSS plist file, updated 1Password, Reset Safari and updated to Safari 5. I will get random crashes, usually when I check an unread RSS feed. Oddly enough, this usually isn't my first unread RSS feed of the morning but after I have been running Safari for an hour and check a new unread. I've posted the crash log. Thanks for any help.
    Process: Safari [17226]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0 (6533.16)
    Build Info: WebBrowser-75331600~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [248]
    Date/Time: 2010-06-09 08:49:35.813 -0700
    OS Version: Mac OS X 10.6.3 (10D578)
    Report Version: 6
    Interval Since Last Report: 227038 sec
    Crashes Since Last Report: 5
    Per-App Interval Since Last Report: 35732 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: D3D03465-06FD-462E-8B15-83F777F4C4F3
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000000
    Crashed Thread: 10
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff81cfe75a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81cfedcd mach_msg + 59
    2 com.apple.CoreGraphics 0x00007fff8363f055 _CGSRemoveSurface + 94
    3 com.apple.AppKit 0x00007fff875ed0a5 -[NSSurface _disposeSurface] + 249
    4 com.apple.AppKit 0x00007fff875ecb91 -[NSSurface setWindow:] + 52
    5 com.apple.AppKit 0x00007fff874ec60d -[NSView _setWindow:] + 1772
    6 com.apple.AppKit 0x00007fff87538ded -[NSView removeFromSuperview] + 359
    7 com.apple.Safari 0x0000000100086a3f 0x100000000 + 551487
    8 com.apple.Safari 0x00000001000f4ede 0x100000000 + 1003230
    9 com.apple.Safari 0x00000001000f4d7e 0x100000000 + 1002878
    10 com.apple.Safari 0x000000010004d655 0x100000000 + 317013
    11 com.apple.CoreFoundation 0x00007fff80aa3708 __CFRunLoopRun + 6488
    12 com.apple.CoreFoundation 0x00007fff80aa18df CFRunLoopRunSpecific + 575
    13 com.apple.HIToolbox 0x00007fff8227aada RunCurrentEventLoopInMode + 333
    14 com.apple.HIToolbox 0x00007fff8227a8df ReceiveNextEventCommon + 310
    15 com.apple.HIToolbox 0x00007fff8227a798 BlockUntilNextEventMatchingListInMode + 59
    16 com.apple.AppKit 0x00007fff87516a2a _DPSNextEvent + 708
    17 com.apple.AppKit 0x00007fff87516379 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    18 com.apple.Safari 0x0000000100015c9a 0x100000000 + 89242
    19 com.apple.AppKit 0x00007fff874dc05b -[NSApplication run] + 395
    20 com.apple.AppKit 0x00007fff874d4d7c NSApplicationMain + 364
    21 com.apple.Safari 0x0000000100009b1c 0x100000000 + 39708
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff81d43996 select$DARWIN_EXTSN$NOCANCEL + 10
    1 libSystem.B.dylib 0x00007fff81d194a7 dispatch_mgrinvoke + 388
    2 libSystem.B.dylib 0x00007fff81d19094 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff81d18bbe dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x00007fff81d184e8 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff81d18385 start_wqthread + 13
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x00007fff81d39316 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff81d3d131 pthread_condwait + 1286
    2 com.apple.WebCore 0x00007fff80c161d9 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3 com.apple.WebCore 0x00007fff80c122ec WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 3: Safari: CertRevocationChecker
    0 libSystem.B.dylib 0x00007fff81cfe75a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81cfedcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff80aa2452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff80aa18df CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f0f9 0x100000000 + 192761
    5 com.apple.Safari 0x000000010002f089 0x100000000 + 192649
    6 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff81cfe75a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81cfedcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff80aa2452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff80aa18df CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8277f4e3 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff826ffead _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 5: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x00007fff81cfe75a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81cfedcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff80aa2452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff80aa18df CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f0f9 0x100000000 + 192761
    5 com.apple.Safari 0x000000010002f089 0x100000000 + 192649
    6 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff81d42286 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff80ac3ef2 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 7: Safari: SnapshotStore
    0 libSystem.B.dylib 0x00007fff81d39316 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff81d3d131 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff81f562e0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3 com.apple.Safari 0x00000001001bd45d 0x100000000 + 1823837
    4 com.apple.Safari 0x0000000100046aef 0x100000000 + 289519
    5 com.apple.Safari 0x000000010004696d 0x100000000 + 289133
    6 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 8: Safari: Geolocation
    0 libSystem.B.dylib 0x00007fff81cfe75a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81cfedcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff80aa2452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff80aa18df CFRunLoopRunSpecific + 575
    4 com.apple.Safari 0x000000010002f0f9 0x100000000 + 192761
    5 com.apple.Safari 0x000000010002f089 0x100000000 + 192649
    6 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff81cfe75a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81cfedcd mach_msg + 59
    2 com.apple.QuartzCore 0x00007fff852c093e CA::Render::Server::server_thread(void*) + 177
    3 com.apple.QuartzCore 0x00007fff852c087e thread_fun + 34
    4 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 10 Crashed:
    0 com.apple.GeForce7xxxGLDriver 0x00000002000a0667 gldDestroyVertexArray + 529751
    1 com.apple.GeForce7xxxGLDriver 0x00000002000be018 gldUpdateDispatch + 15592
    2 com.apple.GeForce7xxxGLDriver 0x000000020000f473 gldTestObject + 211
    3 GLEngine 0x00000001295e70c7 gleTestFence + 100
    4 GLEngine 0x0000000129555d7d glTestFenceAPPLE_Exec + 50
    5 com.apple.QuartzCore 0x00007fff852c8446 viewdraw(CAView*, double, CVTimeStamp const*, bool) + 1843
    6 com.apple.QuartzCore 0x00007fff852c7cbc viewdisplaylink(double, CVTimeStamp const*, void*) + 64
    7 com.apple.QuartzCore 0x00007fff852c7c03 link_callback + 219
    8 com.apple.CoreVideo 0x00007fff87274623 CVDisplayLink::performIO(CVTimeStamp*) + 431
    9 com.apple.CoreVideo 0x00007fff87273888 CVDisplayLink::runIOThread() + 754
    10 com.apple.CoreVideo 0x00007fff8727355b startIOThread(void*) + 139
    11 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    12 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 11:
    0 libSystem.B.dylib 0x00007fff81d1830a _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff81d1871c pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff81d18385 start_wqthread + 13
    Thread 12: Safari: SpinningProgressIndicator
    0 libSystem.B.dylib 0x00007fff81cfe75a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff81cfedcd mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff80aa2452 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff80aa18df CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8273aa38 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8273a917 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.Safari 0x000000010008fbe7 0x100000000 + 588775
    7 com.apple.Foundation 0x00007fff826ffead _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 13:
    0 libSystem.B.dylib 0x00007fff81d174ea kevent + 10
    1 libSystem.B.dylib 0x00007fff81d56128 mdns_querymDNSResponder + 1061
    2 libSystem.B.dylib 0x00007fff81d553fe mdnssearch + 1140
    3 libSystem.B.dylib 0x00007fff81d5479c mdnsaddrinfo + 715
    4 libSystem.B.dylib 0x00007fff81d5381f search_addrinfo + 146
    5 libSystem.B.dylib 0x00007fff81d53248 si_addrinfo + 1352
    6 libSystem.B.dylib 0x00007fff81d6a40b siasynclaunchpad + 94
    7 libSystem.B.dylib 0x00007fff81d378b6 pthreadstart + 331
    8 libSystem.B.dylib 0x00007fff81d37769 thread_start + 13
    Thread 10 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x0000000125173000 rcx: 0x0000000000000000 rdx: 0x0000000080000000
    rdi: 0x0000000125173000 rsi: 0x00000001179d6000 rbp: 0x000000012a88c900 rsp: 0x000000012a88c900
    r8: 0x000000000001ee3b r9: 0x0000000000000000 r10: 0x00000000000010bc r11: 0x000000012a88c930
    r12: 0x00000001179d6000 r13: 0x0000000000000001 r14: 0x000000012a88c930 r15: 0x0000000123dc5c30
    rip: 0x00000002000a0667 rfl: 0x0000000000010246 cr2: 0x0000000000000000
    Binary Images:
    0x100000000 - 0x1006a9fef com.apple.Safari 5.0 (6533.16) <AE7B5544-1A22-2712-5756-03687127EEF2> /Applications/Safari.app/Contents/MacOS/Safari
    0x102379000 - 0x10238cff7 com.apple.security.dotmacdl 2.0 (36606) <8EFB1297-BE4B-C96F-D411-53EC79794B40> /System/Library/Security/dotmacdl.bundle/Contents/MacOS/dotmacdl
    0x102680000 - 0x102680ff7 +ws.agile.1PasswordAddition 3.2.1 (30653) <5FB12B46-1430-DA90-3C9E-FDE4FA809FD1> /Users/mrm/Library/ScriptingAdditions/1Password Addition.osax/Contents/MacOS/1Password Addition
    0x118566000 - 0x11867bfff +ws.agile.1PasswordWebKit 3.2.1 (30653) <AD5278D8-E872-4306-0CB4-30776798A4D8> /Users/mrm/Library/Application Support/1Password/Extensions/30653/WebKitExtension.bundle/Contents/MacOS/WebKit Extension
    0x11a70b000 - 0x11a7f1fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <26FC56A6-EFD6-22FA-E1F1-4E1BA61C85BB> /usr/lib/libcrypto.0.9.7.dylib
    0x11ab5b000 - 0x11ab5fff7 libFontRegistryUI.dylib ??? (???) <80877D2C-9C5A-76E8-785D-A7AD7C6646EA> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x11ab65000 - 0x11ab66fff ATSHI.dylib ??? (???) <0635B1AA-8D2D-7D3B-DA01-6E7DFD39CC39> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x12159b000 - 0x1215bfff7 libPDFRIP.A.dylib 543.33.0 (compatibility 64.0.0) <FF9D6106-0623-FA3D-8CD7-8EA23604AA4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x122985000 - 0x1229abfe7 GLRendererFloat ??? (???) <684EBDC4-63B4-BC55-60EF-0F6A7D666551> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x12950a000 - 0x129697fe7 GLEngine ??? (???) <85971DA9-5140-A226-7898-21B2D6C6F7FE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x200000000 - 0x2003cefef com.apple.GeForce7xxxGLDriver 1.6.10 (6.1.0) <C8176C14-DC61-D3C8-998E-2F9AB5A55569> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xx xGLDriver
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff800b2fff edu.mit.Kerberos 6.5.9 (6.5.9) <42364D54-C647-14DE-2B1C-D94DAA03F092> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff800b3000 - 0x7fff800b7ff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <27FF96BC-1F15-A52D-3339-4BFC49D6810E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff800b8000 - 0x7fff800d1fff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff800ee000 - 0x7fff8010ffff libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <1AE68BBB-6536-125C-DE2A-13CA916D0EC4> /usr/lib/libresolv.9.dylib
    0x7fff80110000 - 0x7fff80553fef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff80554000 - 0x7fff80692fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff80693000 - 0x7fff80693ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff806ad000 - 0x7fff80793fe7 com.apple.DesktopServices 1.5.5 (1.5.5) <EFCBA7C3-A6CE-9550-FE19-73BB3D046549> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff807f8000 - 0x7fff80809ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <C1154E2E-B1CB-1FAD-77ED-B139BA1AB073> /usr/lib/libz.1.dylib
    0x7fff8080a000 - 0x7fff80845fff com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff80846000 - 0x7fff809b5ff7 com.apple.QTKit 7.6.6 (1729) <CEDDAEA5-82F9-FF5D-B9AF-C68ACC1E3225> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff809b6000 - 0x7fff80a45fff com.apple.PDFKit 2.5.1 (2.5.1) <7B8A187A-F0BB-44E7-FBD4-9E1C5F9D5E85> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff80a46000 - 0x7fff80a47ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff80a48000 - 0x7fff80a55fe7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <540820E4-75E3-B2A0-5EF2-222304250CD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff80a56000 - 0x7fff80bcbfef com.apple.CoreFoundation 6.6.1 (550.19) <1051BA2C-DCD7-787C-907C-A50D12AA6049> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff80bcc000 - 0x7fff80c0ffff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff80c10000 - 0x7fff8187ffe7 com.apple.WebCore 6533 (6533.16) <AC146886-9761-B048-45D3-07250E03F73C> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff81880000 - 0x7fff81950fff com.apple.CFNetwork 454.9.4 (454.9.4) <33395EDD-D653-6EAD-57A6-9C718D69D2DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff81951000 - 0x7fff81b0bfff com.apple.ImageIO.framework 3.0.2 (3.0.1) <911FA1A5-7063-6A19-73D3-95B78A265524> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff81b47000 - 0x7fff81b4dfff libCGXCoreImage.A.dylib 543.33.0 (compatibility 64.0.0) <182C8BD9-E1C8-0970-AE82-E9E88F324A5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff81b4e000 - 0x7fff81bdafef SecurityFoundation 36840.0.0 (compatibility 1.0.0) <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff81c3c000 - 0x7fff81cfcfe7 libFontParser.dylib ??? (???) <2C6B6ABB-7EF0-3CD8-97D2-9B4534D0056C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff81cfd000 - 0x7fff81ebcff7 libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <CB9A4929-61AF-DE71-5635-133E9EC95783> /usr/lib/libSystem.B.dylib
    0x7fff81f44000 - 0x7fff8212efe7 com.apple.JavaScriptCore 6533 (6533.13) <4D8B7A37-BBDF-A789-4D9F-81F3721AA311> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8212f000 - 0x7fff821e4fe7 com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff821e5000 - 0x7fff821fbfef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff8224c000 - 0x7fff8254afef com.apple.HIToolbox 1.6.2 (???) <759E1C39-58EB-C434-3E33-416C04AFE6DC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8254b000 - 0x7fff82584ff7 com.apple.MeshKit 1.1 (49.2) <3795F201-4A5F-3D40-57E0-87AD6B714239> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff82585000 - 0x7fff825ccfef com.apple.QuickLookFramework 2.2 (327.4) <4E1658D4-F268-2A82-C095-1D01E9EAD05F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff826ef000 - 0x7fff82970fe7 com.apple.Foundation 6.6.2 (751.21) <49BEB8B8-BC1F-B4E4-3D90-A141AC764A8D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff82971000 - 0x7fff82a2eff7 com.apple.CoreServices.OSServices 357 (357) <7CFA1963-B639-BE99-12F1-220DF214AB50> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff82a2f000 - 0x7fff82a64fef com.apple.framework.Apple80211 6.2 (620.15.1) <964022FD-ECFB-2399-18AD-68BF767601AD> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff82a6b000 - 0x7fff82a7cfff SyndicationUI ??? (???) <95A471EF-93CC-0B37-749A-57EF80527E83> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x7fff82a7d000 - 0x7fff82abafff com.apple.LDAPFramework 2.0 (120.1) <16383FF5-0537-6298-73C9-473AEC9C149C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff82abb000 - 0x7fff82d24ff7 com.apple.QuartzComposer 4.1 (156.13) <0A7E8CDB-77DB-F96F-9CA4-867E9D45EB69> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff82f19000 - 0x7fff82f2dff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff82f2e000 - 0x7fff82fadfff com.apple.audio.CoreAudio 3.2.2 (3.2.2) <3F41C3CA-A217-024B-DEDD-69E3731B915D> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff82fae000 - 0x7fff834b7fe7 com.apple.VideoToolbox 0.484.5 (484.5) <174EF984-21FE-071C-4AB4-DE345BF87791> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff83510000 - 0x7fff8355aff7 com.apple.Metadata 10.6.3 (507.8) <A850E5A6-69D8-EBC1-B005-43F72B58EA36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff8355b000 - 0x7fff83c58037 com.apple.CoreGraphics 1.543.33 (???) <359B3BC6-0152-94D2-3CAA-D8C24C0B9E65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff83c60000 - 0x7fff83cc8fff com.apple.MeshKitRuntime 1.1 (49.2) <1F4C9AB5-9D3F-F91D-DB91-B78610562ECC> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff83d2e000 - 0x7fff83d2ffff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff83d30000 - 0x7fff83d36ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff83d37000 - 0x7fff83e5cfef com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff83e5d000 - 0x7fff83e60ff7 com.apple.securityhi 4.0 (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff83e61000 - 0x7fff83eb6fef com.apple.framework.familycontrols 2.0.1 (2010) <E6E1C44A-6513-92DF-F71E-C157C485024C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff83f23000 - 0x7fff83f81ff7 com.apple.framework.IOKit 2.0 (???) <516EB9AF-4723-FC17-984B-918115E53459> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff83f82000 - 0x7fff83f83fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff83f84000 - 0x7fff83fcdff7 com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff83fce000 - 0x7fff8400ffef com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff84010000 - 0x7fff84010ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8417b000 - 0x7fff841bfff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <788A9BF0-691B-FE10-7385-AF4A7A786478> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff841c0000 - 0x7fff841c1ff7 com.apple.TrustEvaluationAgent 1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff841c2000 - 0x7fff841c2ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff841c3000 - 0x7fff841c5fff com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff841da000 - 0x7fff8425cfff com.apple.QuickLookUIFramework 2.2 (327.4) <C35D9F62-73D0-262C-B0CE-BFF64E230588> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff8425d000 - 0x7fff842f7fff com.apple.ApplicationServices.ATS 4.2 (???) <E31469D3-A97D-63BB-FB00-05ACB2CEC561> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8432e000 - 0x7fff84438ff7 com.apple.MeshKitIO 1.1 (49.2) <F296E151-80AE-7764-B969-C2050DF26BFE> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff84439000 - 0x7fff84447ff7 libkxld.dylib ??? (???) <E685E658-C908-95B9-8D16-8153C1CE05D7> /usr/lib/system/libkxld.dylib
    0x7fff84448000 - 0x7fff844fefff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff844ff000 - 0x7fff84507fff com.apple.DisplayServicesFW 2.2.2 (251) <3E7C0CF8-117D-9C7F-577C-C199901DFF37> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff84552000 - 0x7fff84599ff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8459a000 - 0x7fff8459cfff libRadiance.dylib ??? (???) <73CE39EA-E38B-4320-8A7D-11C1A08A8A7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff84675000 - 0x7fff8467afff libGFXShared.dylib ??? (???) <A2C80199-6076-3CBE-E418-E0AD0A3053DE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8467b000 - 0x7fff84794fef libGLProgrammability.dylib ??? (???) <9D2B1DA3-C581-73F8-A2E4-01C4CE1C3B32> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff84795000 - 0x7fff847a9fff libGL.dylib ??? (???) <A85982AB-6395-DE2B-2023-F735093E663D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff847aa000 - 0x7fff847ebfff com.apple.SystemConfiguration 1.10.2 (1.10.2) <7DADC459-6E38-084A-B333-8332B28C244E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff847ec000 - 0x7fff84802ff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <38D0D705-FD15-38AE-A8B9-F9970508D1BD> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff84a9f000 - 0x7fff84a9fff7 com.apple.Carbon 150 (152) <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff84aa0000 - 0x7fff84ad8ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <FAB9687F-0A86-A13F-7644-CE02E71140DB> /usr/lib/libssl.0.9.8.dylib
    0x7fff84ad9000 - 0x7fff84afcfff com.apple.opencl 12.1 (12.1) <AB00CB6B-5BBD-C819-007A-08C0B110AB93> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff84afd000 - 0x7fff84b04fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff84b07000 - 0x7fff84d49fe7 com.apple.AddressBook.framework 5.0.1 (868) <0623CCCC-6865-681A-0737-723A7B016EA1> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff84d4a000 - 0x7fff84d92ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff84d93000 - 0x7fff84d97ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff84d98000 - 0x7fff84de4fff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff84de5000 - 0x7fff84e51fe7 com.apple.CorePDF 1.1 (1.1) <D47B2366-5D1B-147B-B1FA-C9FE36C4EFFF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff84e82000 - 0x7fff84e85fff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff84e86000 - 0x7fff84f3bfe7 com.apple.ColorSync 4.6.3 (4.6.3) <0522B33D-F78A-9A46-1CB2-9073E4F8EFD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff84f3c000 - 0x7fff8511ffef libType1Scaler.dylib ??? (???) <98F6C486-4DA0-0903-CDC6-67C85ED206B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff85120000 - 0x7fff851c0fff com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff851c1000 - 0x7fff851c3fef com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x7fff851c4000 - 0x7fff851cfff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff851d0000 - 0x7fff85219fef libGLU.dylib ??? (???) <FEDE662B-46B2-26D8-3E57-84E4C15A4FB2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8521a000 - 0x7fff8521dff7 libCoreVMClient.dylib ??? (???) <9A0E75A9-7964-CAF9-DEB7-11A073530F64> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff8521e000 - 0x7fff8526dff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff8526e000 - 0x7fff85606fe7 com.apple.QuartzCore 1.6.1 (227.18) <ADB9E286-C5AB-3505-35D2-849E1F560A2A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff85947000 - 0x7fff8598aff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <677BA546-F215-C5C8-9C65-305E43633FDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff8598b000 - 0x7fff85997fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <5C876577-ACB7-020C-F7DB-EE0135C3AB8D> /usr/lib/libbz2.1.0.dylib
    0x7fff85998000 - 0x7fff85ccbfef com.apple.CoreServices.CarbonCore 861.6 (861.6) <652B1704-460F-F0D1-B917-B08698E0EF7F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff85cda000 - 0x7fff85e4afef com.apple.MediaToolbox 0.484.5 (484.5) <DA4772AD-9430-024F-39FF-8B9D4B52DCD2> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff85e4b000 - 0x7fff85e69fff libPng.dylib ??? (???) <D0512FBF-911C-A9EC-465D-48A411509D6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff85e6a000 - 0x7fff85ee7fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff85ee8000 - 0x7fff85efefff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff85eff000 - 0x7fff85f3cff7 libFontRegistry.dylib ??? (???) <12FDAEB9-01F7-5562-DBC6-7B2374CCAEA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff86002000 - 0x7fff8680cfe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff86823000 - 0x7fff8689efff com.apple.ISSupport 1.9.3 (51) <BE4B548C-F9C4-2464-12A6-F94A21D569C6> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff8689f000 - 0x7fff868d0fef libTrueTypeScaler.dylib ??? (???) <C15B0761-5136-BD0C-20F7-C8F8A95AF367> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff868d1000 - 0x7fff868d6fff libGIF.dylib ??? (???) <0E58DF99-B3DF-6FF9-E810-CCEC0853C8B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff868d7000 - 0x7fff868f7ff7 com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff868f8000 - 0x7fff8690afe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff8690b000 - 0x7fff86988fef com.apple.backup.framework 1.2.2 (1.2.2) <13A0D34C-28B7-2140-ECC9-B08D10CD4AB5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff86989000 - 0x7fff869f3fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff869f4000 - 0x7fff86a1fff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff86a20000 - 0x7fff86a50fef com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff86a51000 - 0x7fff86acffff com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff86ad0000 - 0x7fff86b1ffef libTIFF.dylib ??? (???) <D6BED22B-A092-EC70-6E1D-0B52FA6FBBDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff86b45000 - 0x7fff86b76fff libGLImage.dylib ??? (???) <7E8A6ED2-B093-0714-F65A-64ECC41187C4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff86b77000 - 0x7fff86ba6ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff86d49000 - 0x7fff86e60fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff86e7d000 - 0x7fff86f48fe7 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C85548CF-DED1-4672-0167-3F32A6DD0D55> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff86f49000 - 0x7fff8704dfff com.apple.PubSub 1.0.5 (65.19) <0C393707-6776-0365-6BFE-924CC8108F9B> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8704e000 - 0x7fff8709ffe7 com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff870c3000 - 0x7fff870c3ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff870c4000 - 0x7fff870f9ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <0C865212-6427-5DE4-40C4-B5739491B691> /usr/lib/libcups.2.dylib
    0x7fff8714a000 - 0x7fff87177fff MetadataLib.dylib 3.0.2 (compatibility 2.2.1) <18B01670-16F8-37F4-4FEE-E922ABB052C7> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
    0x7fff87178000 - 0x7fff87187fff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff871dc000 - 0x7fff871dcff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff871dd000 - 0x7fff8721ffef com.apple.CoreMedia 0.484.5 (484.5) <FF8F87CB-7087-A46F-D633-6A93054BDBA2> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff87220000 - 0x7fff87246fe7 libJPEG.dylib ??? (???) <85902BC7-43AE-E202-0EEE-3C9996D00971> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff87247000 - 0x7fff8726ffff com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff87270000 - 0x7fff87270ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff87271000 - 0x7fff87296fe7 com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff87297000 - 0x7fff874d2fef com.apple.imageKit 2.0.3 (1.0) <9F7CBDFB-EBDC-5B86-ED43-5195F4AE9D52> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff874d3000 - 0x7fff87ec8fe7 com.apple.AppKit 6.6.5 (1038.29) <AC1ED9CC-6149-36EE-AA57-15BA4F05EAAA> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff87ee4000 - 0x7fff87ef5fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff87ef6000 - 0x7fff87efbff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff87efc000 - 0x7fff88272fe7 com.apple.RawCamera.bundle 3.0.2 (527) <E70071D3-CC39-4B14-2AA3-EAC42BC84AD4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff88273000 - 0x7fff883efff7 com.apple.WebKit 6533 (6533.16) <A72746E9-5958-07B2-406A-DBEB7D2A13C1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff883f0000 - 0x7fff883ffff7 com.apple.opengl 1.6.7 (1.6.7) <63D8F554-2488-4811-EEC7-672FCFAF731B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff88400000 - 0x7fff88400ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff88401000 - 0x7fff884dbff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff88500000 - 0x7fff88785fef com.apple.security 6.1.1 (37594) <ED08CC62-42E2-E97F-E807-C09EB1CF950D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff88786000 - 0x7fff887eefff com.apple.AppleVAFramework 4.8.11 (4.8.11) <14AE8878-A7A6-D024-3DD4-BBFB5E7FC008> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff887ef000 - 0x7fff8887ffff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8899a000 - 0x7fff889a0ff7 IOSurface ??? (???) <F998C45A-CCCF-2306-F37A-389EE0054CB3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff889a1000 - 0x7fff88ab0fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <826C2437-F760-E049-1719-9C69A3BAA4B0> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff88ab1000 - 0x7fff88b6afff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff88b6b000 - 0x7fff88b76ff7 com.apple.HelpData 2.0.4 (34) <B44D2E2A-BC1E-CD63-F8A1-C9465491693A> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff88b77000 - 0x7fff88b8cff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <E83DAF4F-F284-BE0B-3D9D-D573023098B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff88b8d000 - 0x7fff88b9cfff libxar.1.dylib ??? (???) <0E323815-A88A-E239-973F-2819CED2282E> /usr/lib/libxar.1.dylib
    0x7fff88b9d000 - 0x7fff88ba8fff com.apple.CrashReporterSupport 10.6.3 (250) <52F8B18D-7953-3EE7-4AE9-89F1121A5336> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff88ba9000 - 0x7fff88c0bfe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff88c7f000 - 0x7fff88c8afff com.apple.corelocation 12 (12) <66F18722-591C-42D4-2BC9-CCEB1D824816> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff88c8b000 - 0x7fff88cd0fff com.apple.CoreMediaIOServices 130.0 (1035) <6D6834F6-4DB5-03E9-3962-480BBEE176EB> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff88d20000 - 0x7fff88d3bff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff88d3c000 - 0x7fff88dc1fff com.apple.print.framework.PrintCore 6.2 (312.5) <E736F6DC-2E69-A14D-6BCF-69D14232F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff88ebb000 - 0x7fff89079fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <1B6C3785-BE99-EAD5-69AB-B28C40466A82> /usr/lib/libicucore.A.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <CB9A4929-61AF-DE71-5635-133E9EC95783> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 4 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    Bluetooth: Version 2.3.1f4, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    Network Service: Parallels Shared Networking Adapter, Ethernet, en2
    Network Service: Parallels Host-Only Networking Adapter, Ethernet, en3
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-1
    Serial ATA Device: ST3250824AS P, 232.89 GB
    Serial ATA Device: HDT722525DLA380, 232.89 GB
    Serial ATA Device: WDC WD3200AAKS-00SBA0, 298.09 GB
    Serial ATA Device: WDC WD6400AAKS-22A7B0, 596.17 GB
    Parallel ATA Device: SONY DVD RW DW-D150A
    Parallel ATA Device: TSSTcorp CDDVDW SH-S202J
    USB Device: Hub, 0x05ac (Apple Inc.), 0x911d, 0xfd500000
    USB Device: USB2.0 Hub Controller, 0x0409 (NEC Corporation), 0x0058, 0xfd510000
    USB Device: Dell 2330dn Laser Printer, 0x413c (Dell Inc.), 0x5231, 0xfd514000
    USB Device: Apple Cinema Display, 0x05ac (Apple Inc.), 0x921d, 0xfd530000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd300000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: iSight, Apple Computer, Inc., Up to 200 Mb/sec
    FireWire Device: unknown_device, Unknown

    HI,
    0x102680000 - 0x102680ff7 +ws.agile.1PasswordAddition 3.2.1 (30653) <5FB12B46-1430-DA90-3C9E-FDE4FA809FD1> /Users/mrm/Library/ScriptingAdditions/1Password Addition.osax/Contents/MacOS/1Password Addition0x118566000 - 0x11867bfff +ws.agile.1PasswordWebKit 3.2.1 (30653) <AD5278D8-E872-4306-0CB4-30776798A4D8> /Users/mrm/Library/Application
    updated 1Password
    Are you positive that lPassword is Safari 5 compatible? Might want to uninstall the software to see if Safari continues to crash.
    How to uninstall iPassword: http://static.agilewebsolutions.com/1password/userguide/how_touninstall.html
    Carolyn

  • How to Generate an iTunes U RSS Feed (to play on Website)

    I'd liked to be able to play iTunes U podcasts on my college's homepage by parsing an RSS feed containing a podcast title, description, and a media enclosure (either .mp3 or .m4a). I'd use an RSS audio player to play the file on our page. We just migrated to the iTunes U Public site manager and I'm not finding any documentation online on how to accomplish this. Is this still possible (it was possible with the private version of iTunes U or even just iTunes podcasts in general). I noted below how I used to do it below. I've tried using the same work around with Public site manager without any success. We link to our iTunes U site in iTunes, but there are some instances when we'd like to be able to play these files outside of the iTunes application. I see how you can format your RSS feed to feed podcasts into iTunes U, but I'm not finding any documentation or examples that show how to pull iTunes U content from Public site manager.
    Appreciate any suggestions.
    Thanks,
    Bittersweet
    To get the RSS feed for a tab in iTunes U (for subscribing outside of
    iTunes):
    1) Navigate in iTunes U to the "Course" containing your podcast.
    2) Click on the tab for which you want to get the feed.
    3) Right-click on the "Subscribe" button and "Copy iTunes Store URL".
    4) Paste the link into a text editor to verify it matches this pattern:
    http://deimos.apple.com/WebObjects/Core.woa/Feed/mycollege.edu.1303285046.013932 85954
    * Note: If you right-click on the "tab" of the feed instead of the
    "Subscribe" button, you get a link like this:
    http://deimos.apple.com/WebObjects/Core.woa/BrowsePrivately/mycollege.edu.
    1303285046.01393285954
    * That link only works inside of iTunes. To make it match the link
    format above, change the "/BrowsePrivately/" to "/Feed/" as such:
    http://deimos.apple.com/WebObjects/Core.woa/Feed/mycollege.edu.
    1303285046.01393285954

    Hi Alan,
    Sorry for the tardiness of my reply.
    In principle, a backup app much as you outline could be made. It would backup enough of a private site to allow you to restore it in a genuinely substantive way. An outline of how you would approach this would be as follows:
    1. You would download full site XML. Apple has a web service API for that. This gives a sort of snapshot of the structure of your site.
    2. You would traverse your site XML and download a copy of each content item in your private site. A small twist in this is that you would have to pick up extra things (course/album artwork, for example). There is no Apple API for this, but it's possible to do this other ways.
    Unfortunately, I the process of creating such an app would be rough. Maybe a year ago or so, I worked on some code that would allow a person to backup a specific course/album page within a site. And I nearly finished that app, but got distracted with other stuff. If there were enough interest, I could revive that work. Unfortunately, it would have to be Mac-only, I'm afraid. I could probably tackle it in WIndows, but my OS X/iOS coding chops are a LOT stronger than they are for Windows.

  • Download RSS feed as xml file from Sharepoint Online using PowerShell

    Hello
    Our company sharepoint (Office 365) contains also several RSS feeds.
    How it is possible to download xml file out of this feed (website) using PowerShell?
    I can authenticate with sharepoint using CSOM but do not what to do next.
    As service user is not administrator I cannot use "SPOService".
    This script works OK for standard website, but not for Sharepoint.
    $doc = New-Object System.Xml.XmlDocument
    $doc.Load("http://www.{CompanySite}.com/feed/")
    $doc.save("C:\temp\feed.xml")
    I am getting this error when using for company Sharepoint:
    "The remote server returned an error: (403) Forbidden."
    Thanks for your time considering this question.
    Jozin

    Hi Scott,
    thanks for advice.
    Combination of WebClient and Sharepoint Credentials is working OK:
    $client = New-Object System.Net.WebClient 
    $client.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($User, $SecurePassword)
    $client.Headers.Add("X-FORMS_BASED_AUTH_ACCEPTED", "f")
    $client.DownloadFile($SiteURL, $file)

Maybe you are looking for