Sqlexception ,when trying to access stored procedure

          hi
          i have a strange problem, iam using jsp code for accessing stored procedure in sql
          server database, below is my java code which calls stored procedure,
          <%
               CallableStatement cstmt=null;
               String sql= "{?= call ascs_submit_prem_adj(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}";
               cstmt=con.prepareCall(sql);
               cstmt.registerOutParameter(1,java.sql.Types.INTEGER);
               cstmt.registerOutParameter(2,java.sql.Types.INTEGER);
               cstmt.setObject(3,adjustId);
               cstmt.setString(4,co_id);
               cstmt.setString(5,policyNo);
               cstmt.setString(6,subPolicy);
               cstmt.setString(7,busDiv);
               cstmt.setString(8,commAcct);
               cstmt.setString(9,agentId);
               cstmt.setString(10,premAmount);
               cstmt.setString(11,dueDate);
               cstmt.setString(12,lobCd);
               cstmt.setString(13,commAmount);
               cstmt.setString(14,commReason);
               cstmt.setString(15,recovFlag);
               cstmt.setString(16,recovPercent);
               cstmt.setString(17,combId);
               cstmt.setString(18,payFlag);
               cstmt.setString(19,combAcct);
               cstmt.setString(20,combSub);
               cstmt.setString(21,paidFlag);
               cstmt.setString(22,changeBy);
               cstmt.setString(23,transDt);
               cstmt.execute();
          ERROR LINE-->     adjustId=cstmt.getObject(2).toString();
               spReturnCode=cstmt.getInt(1);
          %>
          i hv two output parameters,,when i try to get the second output parameter (ie ERROR
          LINE)
          IAM GETTING a strange error, i don't know what it is? this is the error i got
          Tue Feb 13 10:06:26 EST 2001:<E> <ServletContext-General> exception raised on '/
          PremAdjSubmit.jsp'
          java.sql.SQLException: Invalid column number (2). This table has 1 columns (a va
          lid index is 1 trough 1).
          at weblogic.jdbcbase.mssqlserver4.TdsResultSet.getEntry(TdsResultSet.jav
          a, Compiled Code)
          at weblogic.jdbcbase.mssqlserver4.TdsResultSet.getObject(TdsResultSet.ja
          va, Compiled Code)
          at weblogic.jdbcbase.mssqlserver4.TdsStatement.getObject(TdsStatement.ja
          va:2338)
          at jsp_servlet._premadjsubmit._jspService(_premadjsubmit.java, Compiled
          Code)
          at weblogic.servlet.jsp.JspBase.service(JspBase.java, Compiled Code)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          pl.java, Compiled Code)
          at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
          textImpl.java, Compiled Code)
          at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
          textImpl.java, Compiled Code)
          at weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
          ContextManager.java, Compiled Code)
          at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
          a, Compiled Code)
          at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java, Com
          piled Code)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
          detailed error-----------
          Error Found
          Oops! an exception occurred.
          The name of the exception is
          java.sql.SQLException: Invalid column number (2). This table has 1 columns (a valid
          index is 1 trough 1).
          can any one help me out...
          thanks
          san
          

          hi
          i have a strange problem, iam using jsp code for accessing stored procedure in sql
          server database, below is my java code which calls stored procedure,
          <%
               CallableStatement cstmt=null;
               String sql= "{?= call ascs_submit_prem_adj(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)}";
               cstmt=con.prepareCall(sql);
               cstmt.registerOutParameter(1,java.sql.Types.INTEGER);
               cstmt.registerOutParameter(2,java.sql.Types.INTEGER);
               cstmt.setObject(3,adjustId);
               cstmt.setString(4,co_id);
               cstmt.setString(5,policyNo);
               cstmt.setString(6,subPolicy);
               cstmt.setString(7,busDiv);
               cstmt.setString(8,commAcct);
               cstmt.setString(9,agentId);
               cstmt.setString(10,premAmount);
               cstmt.setString(11,dueDate);
               cstmt.setString(12,lobCd);
               cstmt.setString(13,commAmount);
               cstmt.setString(14,commReason);
               cstmt.setString(15,recovFlag);
               cstmt.setString(16,recovPercent);
               cstmt.setString(17,combId);
               cstmt.setString(18,payFlag);
               cstmt.setString(19,combAcct);
               cstmt.setString(20,combSub);
               cstmt.setString(21,paidFlag);
               cstmt.setString(22,changeBy);
               cstmt.setString(23,transDt);
               cstmt.execute();
          ERROR LINE-->     adjustId=cstmt.getObject(2).toString();
               spReturnCode=cstmt.getInt(1);
          %>
          i hv two output parameters,,when i try to get the second output parameter (ie ERROR
          LINE)
          IAM GETTING a strange error, i don't know what it is? this is the error i got
          Tue Feb 13 10:06:26 EST 2001:<E> <ServletContext-General> exception raised on '/
          PremAdjSubmit.jsp'
          java.sql.SQLException: Invalid column number (2). This table has 1 columns (a va
          lid index is 1 trough 1).
          at weblogic.jdbcbase.mssqlserver4.TdsResultSet.getEntry(TdsResultSet.jav
          a, Compiled Code)
          at weblogic.jdbcbase.mssqlserver4.TdsResultSet.getObject(TdsResultSet.ja
          va, Compiled Code)
          at weblogic.jdbcbase.mssqlserver4.TdsStatement.getObject(TdsStatement.ja
          va:2338)
          at jsp_servlet._premadjsubmit._jspService(_premadjsubmit.java, Compiled
          Code)
          at weblogic.servlet.jsp.JspBase.service(JspBase.java, Compiled Code)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          pl.java, Compiled Code)
          at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
          textImpl.java, Compiled Code)
          at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletCon
          textImpl.java, Compiled Code)
          at weblogic.servlet.internal.ServletContextManager.invokeServlet(Servlet
          ContextManager.java, Compiled Code)
          at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.jav
          a, Compiled Code)
          at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java, Com
          piled Code)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
          detailed error-----------
          Error Found
          Oops! an exception occurred.
          The name of the exception is
          java.sql.SQLException: Invalid column number (2). This table has 1 columns (a valid
          index is 1 trough 1).
          can any one help me out...
          thanks
          san
          

Similar Messages

  • I keep getting 'error lander' when trying to access any website

    I isolated and deleted a trojan horse virus, but ever since then, when trying to access any website, the tab shows 'error lander' and goes no further. I partitioned my hard drive years ago and can access Firefox/Mozilla on the second partition, but cannot do so on my primary partition, which is where all my data is stored. Help!

    Do a clean (re)install:
    * Download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Don't remove personal data when uninstalling.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    See:
    * http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall
    You may need to create a new profile.
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    * http://kb.mozillazine.org/Profile_backup and [[Backing up your information]]

  • Error when linking report to stored procedure defined with one input parm

    Error when linking report to stored procedure defined with one input parameter
    The report will work ok, when the parameter is removed from the stpred procedure
    An unhandled win32 exception occurred in crw32.exe[4480]
    Stored Proc (sql server 2005)
    USE [Allegro]
    GO
    /****** Object:  StoredProcedure [dbo].[SP_Test]    Script Date: 07/08/2009 10:42:14 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER procedure [dbo].[SP_Test](@valuationmode VARCHAR(55)) as
    Begin
    select
         valuation,
         valuationtime,
         valuationmode
    from valuation
    where valuationmode = @valuationmode;
    End;

    This is an example of a stored procedure that is trying to be linked to a new report as the only datasource.
    If I remove the parameter I can create a report, however this will return all of the results of thw query to the report, rather than the desired results. If I add the parameter on the Crystal Report, the stored procedure then has to return all of the results to Crystal and then perform the filtering of records. By using a parameter in the stored procedure, you should be able to do all of the filtering as part of the query on the databse server, making this more efficient.

  • I am getting a "connection timeout" message when trying to access my Airport Extreme with various laptops, Play Station 3 and Wii. My Airport Extreme is about a month old; it was working fine until about a week ago. C

    I am getting a "connection timeout" message when trying to access my Airport Extreme with various laptops, Play Station 3 and Wii. My Airport Extreme is about a month old; it was working fine until about a week ago. Suddenly, the "timeout" is not allowing me to connect to my wireless network.

    It could be that there's a new source of interference.
    Use the advice in the second message of this thread to investigate the signal and noise levels that each client sees:
    http://discussions.apple.com/thread.jspa?threadID=2347845&start=1
    By the way, you've been misled by the poor field labeling into trying to type your entire message into the subject field, instead of putting a one-line topic description there.

  • Error message "The specified user or domain group was not found" when trying to access certain sites

    Hello.
    My setup is as such (this is a testing environment), spread over two virtual machines:
    -Windows Server 2012 with AD DS and MS SQL Server 2012
    -SharePoint Server 2013
    When trying to access a lot of site collections in different web applications, I am given this error message. The error message started suddenly appearing, and I do not know what caused it. It started happening after I turned on Request Management Service
    Application, though I can't see how that would cause this, and it was not fixed after I turned it off.
    I have the necessary permissions, as I have been able to log on to the sites before without any issue. I am using a domain administrator account who is a site collection administrator.
    At first I thought it was an issue related to User Profile Service Application, as I was having issues starting the Synchronisation instance. I deleted and re-installed UPS, got synchronisation to work, and it still does not work. I have made no changed
    to the AD schema. I have not moved any accounts recently, and I have not deleted any accounts.
    Here are the ULS log entries. It seems to have been truncated some.
    06/11/2014 10:17:31.94 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Authentication Authorization agb9s Medium Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|sp\administrator, ClaimsCount=26 dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 06/11/2014 10:17:31.95, Original Level: Verbose] SQL connection time: 0.0556 dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High UserAgent not available, file operations may not be optimized. at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb, Boolean copyOnFirstWrite, Boolean disposeIlb) at Microsoft.SharePoint.SPFileStreamManager.SetInputLockBytes(SPFileInfo& fileInfo, SqlSession session, PrefetchResult prefetchResult) at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBufferFactory.CreateFromDocumentRowset(Guid databaseId, SqlSession session, SPFileStreamManager spfstm, Object[] metadataRow, SPRowset contentRowset, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ...) at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, ... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ...Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbst... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ...rRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion,... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ... String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri pageUrl, Int32 pageVersion, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest, Boolean fetchDependencyInformation, Boolean& ghostedPage, String& siteRoot, Guid& siteId, Int64& bytes, ... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ...Guid& docId, UInt32& docVersion, String& timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object& oMultipleMeetingDoclibRootFolders, String& redirectUrl, Boolean& ObjectIsList, Guid& listId) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String path, Boolean impersonate, Boolean& isAppWeb, Boolean& fGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, ... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ...String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetFileForRequest(HttpContext context, SPWeb web, Boolean exclusion, String virtualPath) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.InitContextWeb(HttpContext context, SPWeb web) at Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.GetContextWeb(HttpContext context) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PostResolveRequestCacheHandler(Object oSender, EventArgs ea) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IEx... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ...ecutionStep.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(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.MgdIndicateCompl... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files 00000 High ...etion(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 moduleData, Int32 flags) dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Files aiv4w Medium Spent 0 ms to bind 3356 byte file stream dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=66.6457 dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x1BC0 SharePoint Portal Server User Profiles ajk4d Medium UserProfileProperty_WCFLogging::Begin ProfilePropertyServiceClient.ExecuteOnChannel acc2999c-dfbc-a0b4-a4e8-f962e574ee66
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x1BC0 SharePoint Portal Server User Profiles ajk35 Medium MossClientBase_WCFLogging::Begin MossClientBase.ExecuteOnChannel acc2999c-dfbc-a0b4-a4e8-f962e574ee66
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x1BC0 SharePoint Portal Server User Profiles ajk36 Medium MossClientBase_WCFLogging:: MossClientBase.ExecuteOnChannel - Executing codeblock on channel acc2999c-dfbc-a0b4-a4e8-f962e574ee66
    06/11/2014 10:17:32.02 w3wp.exe (0x1904) 0x1BC0 SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://sp13:32843/44fa09d6891d4d7bb9856a0da10f6a84/ProfilePropertyService.svc' Channel: 'Microsoft.Office.Server.UserProfiles.IProfilePropertyService' Action: 'http://Microsoft.Office.Server.UserProfiles/GetProfileProperties' MessageId: 'urn:uuid:ec3c0f34-3285-4771-a7a1-24039cb4ced8' acc2999c-dfbc-a0b4-a4e8-f962e574ee66
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC Web Content Management Publishing 7fz3 Medium Setting [Display] as the FormContext.FormMode for the current page dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High DelegateControl: Exception thrown while adding control 'Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapDataSource': Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated. at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) at System.Security.Principal.NTAccount.Translate(Type targetType) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) --- End of inner exception stack trace --- at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(IClaimsIdentity claimsIdentity, String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Utilities.SPUtility.GetFullUserKeyFromFullName(String fullName) at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, SPAppPrincipalToken appPrincipalToken, String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) at Microsoft.SharePoint.SPSite.get_Request() at Mi... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...crosoft.SharePoint.SPSite.OpenWeb(Guid gWebId, Int32 mondoHint) at Microsoft.SharePoint.Publishing.CachedObjectFactory.OpenWebFromSuperUserSite(Guid webId) at Microsoft.SharePoint.Publishing.CacheManager..ctor(SPSite site) at Microsoft.SharePoint.Publishing.CacheManager.GetManager(SPSite site, Boolean useContextSite, Boolean allowContextSiteOptimization, Boolean refreshIfNoContext) at Microsoft.SharePoint.Publishing.CachedAreaLookup.EnsureLookup(Boolean errorsAsExceptions) at Microsoft.SharePoint.Publishing.CachedAreaLookup.GetCachedAreaOrException() at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigationCache.GetCachedWebInfo(CachedAreaLookup cachedAreaLookup) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigationCache.GetWebNavigationSetting... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...s(CachedAreaLookup cachedArea, CachedAreaLookup& parentCachedArea, Exception& loadError) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigation.GetEffectiveProviderSettingsList(CachedAreaLookup cachedArea, Boolean includeInheritedSettings) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigation.GetEffectiveProviderSettings[T](CachedAreaLookup cachedArea, String siteMapProviderName, Boolean includeInheritedSettings, CachedAreaLookup& cachedAreaWithSettings) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigation.GetEffectiveProviderSettings[T](SPWeb web, String siteMapProviderName, Boolean includeInheritedSettings) at Microsoft.SharePoint.Publishing.Navigation.SwitchableSiteMapProvider.GetCurrentWrappedProvider() at Microsoft.SharePoint.Publis... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...hing.Navigation.SwitchableSiteMapProvider.get_RootNode() at Microsoft.SharePoint.Publishing.Navigation.SwitchableDataSourceBehavior.AssignProperties(SiteMapProvider targetProvider) at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapDataSource.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Microsoft.SharePoint.WebControls.DelegateControl.AddControlResilient(Control ctl) dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High DelegateControl: Exception thrown while adding control 'Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapDataSource': Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated. at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) at System.Security.Principal.NTAccount.Translate(Type targetType) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) --- End of inner exception stack trace --- at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(IClaimsIdentity claimsIdentity, String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Utilities.SPUtility.GetFullUserKeyFromFullName(String fullName) at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, SPAppPrincipalToken appPrincipalToken, String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) at Microsoft.SharePoint.SPSite.get_Request() at Mi... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...crosoft.SharePoint.SPSite.OpenWeb(Guid gWebId, Int32 mondoHint) at Microsoft.SharePoint.Publishing.CachedObjectFactory.OpenWebFromSuperUserSite(Guid webId) at Microsoft.SharePoint.Publishing.CacheManager..ctor(SPSite site) at Microsoft.SharePoint.Publishing.CacheManager.GetManager(SPSite site, Boolean useContextSite, Boolean allowContextSiteOptimization, Boolean refreshIfNoContext) at Microsoft.SharePoint.Publishing.CachedAreaLookup.EnsureLookup(Boolean errorsAsExceptions) at Microsoft.SharePoint.Publishing.CachedAreaLookup.GetCachedAreaOrException() at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigationCache.GetCachedWebInfo(CachedAreaLookup cachedAreaLookup) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigationCache.GetWebNavigationSetting... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...s(CachedAreaLookup cachedArea, CachedAreaLookup& parentCachedArea, Exception& loadError) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigation.GetEffectiveProviderSettingsList(CachedAreaLookup cachedArea, Boolean includeInheritedSettings) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigation.GetEffectiveProviderSettings[T](CachedAreaLookup cachedArea, String siteMapProviderName, Boolean includeInheritedSettings, CachedAreaLookup& cachedAreaWithSettings) at Microsoft.SharePoint.Publishing.Navigation.TaxonomyNavigation.GetEffectiveProviderSettings[T](SPWeb web, String siteMapProviderName, Boolean includeInheritedSettings) at Microsoft.SharePoint.Publishing.Navigation.SwitchableSiteMapProvider.GetCurrentWrappedProvider() at Microsoft.SharePoint.Publis... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...hing.Navigation.SwitchableSiteMapProvider.get_RootNode() at Microsoft.SharePoint.Publishing.Navigation.SwitchableDataSourceBehavior.AssignProperties(SiteMapProvider targetProvider) at Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapDataSource.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Microsoft.SharePoint.WebControls.DelegateControl.AddControlResilient(Control ctl) dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High DelegateControl: Exception thrown while adding control 'ASP._controltemplates_15_metadatanavtree_ascx': Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated. at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) at System.Security.Principal.NTAccount.Translate(Type targetType) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) --- End of inner exception stack trace --- at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyCla... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...im(IClaimsIdentity claimsIdentity, SPClaim loginClaim) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(IClaimsIdentity claimsIdentity, String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Utilities.SPUtility.GetFullUserKeyFromFullName(String fullName) at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, SPAppPrincipalToken appPrincipalToken, String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) at Microsoft.SharePoint.SPSite.get_Request() at Microsoft.SharePoint.SP... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...Site.OpenWeb(Guid gWebId, Int32 mondoHint) at Microsoft.SharePoint.Publishing.CachedObjectFactory.OpenWebFromSuperUserSite(Guid webId) at Microsoft.SharePoint.Publishing.CacheManager..ctor(SPSite site) at Microsoft.SharePoint.Publishing.CacheManager.GetManager(SPSite site, Boolean useContextSite, Boolean allowContextSiteOptimization, Boolean refreshIfNoContext) at Microsoft.Office.DocumentManagement.MetadataNavigation.MetadataNavigationSettings.GetCachedArea(SPWeb web) at Microsoft.Office.DocumentManagement.MetadataNavigation.MetadataNavigationContext.GetMetadataNavigationHintsForList(SPWeb web, Guid listGuid) at Microsoft.Office.DocumentManagement.MetadataNavigation.MetadataNavigationSettings.GetMetadataNavigationSettings(SPWeb web, Guid sourceListId, Boolean check... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8sl1 High ...WebPropHint) at Microsoft.Office.DocumentManagement.MetadataNavigation.MetadataNavigationContext.get_NavigationSettings() at Microsoft.Office.DocumentManagement.MetadataNavigation.MetadataNavigationContext.EnsurePageInitEventHandling(Control controlOnPage) at Microsoft.Office.Server.WebControls.MetadataHierarchyDataSourceControl.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Microsoft.SharePoint.WebControls.DelegateControl.AddControlResilient(Control ctl) dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General 8nca Medium Application error when access /SitePages/Home.aspx, Error=Some or all identity references could not be translated. at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) at System.Security.Principal.NTAccount.Translate(Type targetType) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Runtime tkau Unexpected System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated. at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) at System.Security.Principal.NTAccount.Translate(Type targetType) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General ajlz0 High Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated. at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess) at System.Security.Principal.NTAccount.Translate(Type targetType) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) --- End of inner exception stack trace --- at Microsoft.SharePoint.Administration.... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General ajlz0 High ...Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(IClaimsIdentity claimsIdentity, String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix) at Microsoft.SharePoint.Utilities.SPUtility.GetFullUserKeyFromFullName(String fullName) at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, SPAppPrincipalToken appPrincipalToken, String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) at Microsoft.SharePoint.... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General ajlz0 High ...SPSite.get_Request() at Microsoft.SharePoint.SPSite.OpenWeb(Guid gWebId, Int32 mondoHint) at Microsoft.SharePoint.Publishing.CachedObjectFactory.OpenWebFromSuperUserSite(Guid webId) at Microsoft.SharePoint.Publishing.CacheManager..ctor(SPSite site) at Microsoft.SharePoint.Publishing.CacheManager.GetManager(SPSite site, Boolean useContextSite, Boolean allowContextSiteOptimization, Boolean refreshIfNoContext) at Microsoft.SharePoint.Publishing.Internal.WebControls.PublishingRibbon.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.Control.LoadRecursive() at... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General ajlz0 High ... 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.HandleError(Exception e) 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.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteS... dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03* w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General ajlz0 High ...tep(IExecutionStep step, Boolean& completedSynchronously) dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.03 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation General aat87 Monitorable dbc2999c-6f92-a0b4-a4e8-f7ed10437e35
    06/11/2014 10:17:32.05 w3wp.exe (0x1904) 0x0FAC SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://sp13:80/SitePages/Home.aspx)). Execution Time=97.7205 dbc2999c-6f92-a0b4-a4e8-f7ed10437e35

    This is a very generic error message. 
    What user you are trying to search. Are you using username, display name or email address when searching
    Was any domain related changed done
    What if that users tried to logon to sharepoint site. 
    Does this error occur with all the account when you click edit? If not, based on the error,
    the user account which might be removed from Active Directory or renamed accidentally. Please have a check.
    Try to follow below:
    http://architectevangelist.wordpress.com/2010/12/07/sharepoint-2010-the-specified-user-or-domain-group-was-not-found/

  • Error when trying to access the RBAC User editor and Message tracking

    Hi,
    I am getting an error when trying to access the RBAC User editor and Message tracking on the Web Mgmt interface. I verified that the admin account trying to access is in the Organization Management group and has the correct Role Assignment Policy applied.
    I searched through this thread below and saw that matching the msExchRoleLink and msExchUserLink attributes fixed the issue. 
    https://social.technet.microsoft.com/Forums/exchange/en-US/fc568cc6-8691-4127-b70b-bcc82f9b1f7f/first-2010-cas-server-no-administrator-rights-emc-permissions-gone?forum=exchange2010
    However I have another environment where this is not the case and works just fine; the msExchUserLink attribute has a value of CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Domain,DC=Local which is different as per the issue outlined in
    the above thread so I am not convinced that this will work and also don’t want to blindly edit something in adsiedit without being sure.
    I then checked the event logs on the server and saw the below error logged;
    Current user: 'Domain/Server Services Accounts/administrator'
    Request for URL 'https://server.domain.com/ecp/default.aspx?p=AdminDeliveryReports&exsvurl=1' failed with the following error:
    System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the
    page. Please contact your administrator for the required credentials. For new credentials to take effect, you have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       --- End of inner exception stack trace ---
       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, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest()
       at System.Web.UI.Page.ProcessRequest(HttpContext context)
       at ASP.default_aspx.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the page. Please contact your administrator for the required credentials. For new credentials to take effect, you
    have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I then had a look at the IIS permissions for ecp and owa. The account did not have permissions so I added them there but still got the same error. I’ve also tried all of the above with a newly-created account but still got the same issue.
    Any ideas as to what the above event log is specifically referring to?

    Hi,
    From your description, I would like to clarify the following thing:
    If you want to search message tracking logs, the account you use should be a member of the role groups below:
    Organization Management role group, Records Management role group, Recipient Management role group.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • ITunes crashes when trying to access Store  while in administrator account

    I have been having this problem for the past month at least.
    Everytime i try to access the iTunes store it crashes my itunes. This ONLY happens when im logged in as the administrator. Now i generally only have am administrator account because this is my computer for work (i have my own business and im the only one who uses it) It used to work perfectly and one day it didnt work so good... things in the store were missing like images and text. then one day CRASH. and ever since CRASH.
    I created a TEST account and when i logged in and activated Itunes it accessed the store no problem.
    Does anyone have a clue?
    I have uninstalled an reinstalled my itunes... I have all the latest software updates. Its not the proxy server thing that so many have problems with... i don't have a proxy server....i've created a new location .... its not that... i don't have parental activated... its not that. I have backed up all my music.. uninstalled and reinstalled itunes... i have gone thru the plist thing nothing is working.
    why does i tunes work in the test account and not the administrator account?
    HELP PLEASE! anyone? I have tried calling apple but they hung up on me twice..:(
    this forum is all i have to find a solution.
    this is the error log i get when i tunes crashes.. i dont know what it means or how to read this thing.
    Process: iTunes [1733]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 7.7.1 (7.7.1)
    Build Info: iTunes-7711101~3
    Code Type: PPC (Native)
    Parent Process: launchd [157]
    Date/Time: 2008-08-06 12:45:15.210 -0700
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000c0000023
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x95bec018 objc_msgSend + 24
    1 ...ple.ApplicationServices.ATS 0x92c0f684 LLCStyleInfoCreateActiveStyleInfo + 652
    2 com.apple.QD 0x90241664 TATSUStyle::ConstructActiveStyleInfo() + 52
    3 com.apple.QD 0x902587f4 TATSUStyle::GetStyleInfo(LLCStyleInfo const**) + 40
    4 com.apple.QD 0x90258590 TTextLineLayout::ConstructGlyphRecordArrayWithVirtualGlyphs(TATSUGlyphRecordArr ay*, unsigned long*) + 168
    5 com.apple.QD 0x90257b68 TTextLineLayout::ConstructGlyphRecordArray(TATSUGlyphRecordArray*, TLayoutControls*) + 712
    6 com.apple.QD 0x9026a2b8 TTextLineLayout::EnsureLayoutIsUpToDate(unsigned long, unsigned char, unsigned long, TATSUGlyphRecordArray**) + 768
    7 com.apple.QD 0x90275098 TTextLineLayout::GetGlyphBounds(unsigned long, unsigned long, long, long, unsigned short, unsigned long, ATSTrapezoid*, unsigned long*) + 164
    8 com.apple.QD 0x90274fcc ATSUGetGlyphBounds + 132
    9 com.apple.iTunes 0x00247148 0x1000 + 2384200
    10 com.apple.iTunes 0x00245ecc 0x1000 + 2379468
    11 com.apple.iTunes 0x002477c0 0x1000 + 2385856
    12 com.apple.iTunes 0x00227418 0x1000 + 2253848
    13 com.apple.iTunes 0x00227428 0x1000 + 2253864
    14 com.apple.iTunes 0x00227428 0x1000 + 2253864
    15 com.apple.iTunes 0x00227428 0x1000 + 2253864
    16 com.apple.iTunes 0x00227428 0x1000 + 2253864
    17 com.apple.iTunes 0x00227428 0x1000 + 2253864
    18 com.apple.iTunes 0x00227428 0x1000 + 2253864
    19 com.apple.iTunes 0x00227428 0x1000 + 2253864
    20 com.apple.iTunes 0x00227428 0x1000 + 2253864
    21 com.apple.iTunes 0x001a7c5c 0x1000 + 1731676
    22 com.apple.iTunes 0x000b58ec 0x1000 + 739564
    23 com.apple.iTunes 0x0031e07c 0x1000 + 3264636
    24 com.apple.iTunes 0x00276cb4 0x1000 + 2579636
    25 com.apple.CoreFoundation 0x966829ec CFRunLoopRunSpecific + 2968
    26 com.apple.HIToolbox 0x932a572c RunCurrentEventLoopInMode + 264
    27 com.apple.HIToolbox 0x93359a90 GetNextEventMatchingMask + 416
    28 com.apple.HIToolbox 0x933597b0 WNEInternal + 172
    29 com.apple.HIToolbox 0x933596ec WaitNextEvent + 72
    30 com.apple.iTunes 0x00277cf4 0x1000 + 2583796
    31 com.apple.iTunes 0x00278420 0x1000 + 2585632
    32 com.apple.iTunes 0x00035bac 0x1000 + 215980
    33 com.apple.iTunes 0x002777fc 0x1000 + 2582524
    34 com.apple.iTunes 0x00002a28 0x1000 + 6696
    35 com.apple.iTunes 0x0000272c 0x1000 + 5932
    Thread 1:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 com.apple.CoreFoundation 0x96682568 CFRunLoopRunSpecific + 1812
    3 com.apple.audio.CoreAudio 0x94559e3c HALRunLoop::OwnThread(void*) + 212
    4 com.apple.audio.CoreAudio 0x94559c80 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x904e2498 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x9052590c pthread_condwait + 1336
    2 com.apple.iTunes 0x0034f3d0 0x1000 + 3466192
    Thread 3:
    0 libSystem.B.dylib 0x90546ae4 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x9668d9b0 __CFSocketManager + 764
    Thread 4:
    0 libSystem.B.dylib 0x90554b98 accept$NOCANCEL$UNIX2003 + 12
    1 libSystem.B.dylib 0x9058bac4 accept + 16
    2 com.apple.iTunes 0x002e9eac 0x1000 + 3051180
    Thread 5:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 com.apple.CoreFoundation 0x96682568 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x96682df0 CFRunLoopRun + 60
    4 com.apple.iTunes 0x00243e64 0x1000 + 2371172
    5 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 ...ple.CoreServices.CarbonCore 0x013d5f24 YieldToThread + 528
    3 com.apple.iTunes 0x002889b4 0x1000 + 2652596
    4 com.apple.iTunes 0x001970f0 0x1000 + 1663216
    5 com.apple.iTunes 0x00199b38 0x1000 + 1674040
    6 com.apple.iTunes 0x0019a0c0 0x1000 + 1675456
    7 com.apple.iTunes 0x0019e520 0x1000 + 1692960
    8 com.apple.iTunes 0x0019e664 0x1000 + 1693284
    9 com.apple.iTunes 0x0019fb28 0x1000 + 1698600
    10 com.apple.iTunes 0x001a2804 0x1000 + 1710084
    11 com.apple.iTunes 0x001a3c74 0x1000 + 1715316
    12 com.apple.iTunes 0x001a3f3c 0x1000 + 1716028
    13 com.apple.iTunes 0x002888b4 0x1000 + 2652340
    14 ...ple.CoreServices.CarbonCore 0x013db150 CooperativeThread + 344
    15 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 8:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 9:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 10:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 11:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 12:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 13:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 14:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 15:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 16:
    0 libSystem.B.dylib 0x904e24b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x905258fc pthread_condwait + 1320
    2 com.apple.iTunes 0x002091a0 0x1000 + 2130336
    Thread 17:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 ...ple.CoreServices.CarbonCore 0x013d5f24 YieldToThread + 528
    3 ...ple.CoreServices.CarbonCore 0x013db300 SetThreadState + 168
    4 com.apple.iTunes 0x0025e708 0x1000 + 2479880
    5 com.apple.iTunes 0x0019d678 0x1000 + 1689208
    6 com.apple.iTunes 0x001a1740 0x1000 + 1705792
    7 com.apple.iTunes 0x001a3d14 0x1000 + 1715476
    8 com.apple.iTunes 0x001a3f3c 0x1000 + 1716028
    9 com.apple.iTunes 0x002888b4 0x1000 + 2652340
    10 ...ple.CoreServices.CarbonCore 0x013db150 CooperativeThread + 344
    11 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 18:
    0 libSystem.B.dylib 0x904e2438 machmsgtrap + 8
    1 libSystem.B.dylib 0x904e935c mach_msg + 56
    2 com.apple.CoreFoundation 0x96682568 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x96682df0 CFRunLoopRun + 60
    4 com.apple.iTunes 0x00284a7c 0x1000 + 2636412
    5 com.apple.iTunes 0x00284da8 0x1000 + 2637224
    6 com.apple.iTunes 0x00209214 0x1000 + 2130452
    7 libSystem.B.dylib 0x90524658 pthreadstart + 316
    Thread 0 crashed with PPC Thread State 32:
    srr0: 0x95bec018 srr1: 0x0000d030 dar: 0xc0000023 dsisr: 0x00200000
    r0: 0x92c0f688 r1: 0xbfffe1a0 r2: 0xa0c34508 r3: 0x090b8a30
    r4: 0x95c89110 r5: 0x00000028 r6: 0x0000002c r7: 0x00000e03
    r8: 0x00000000 r9: 0x00000000 r10: 0x905fbb8c r11: 0x6a369110
    r12: 0xc0000003 r13: 0x00000001 r14: 0xa0c1f478 r15: 0x00000000
    r16: 0xbfffe3fc r17: 0x00000001 r18: 0xa056f40c r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x0908b560 r23: 0x00010010
    r24: 0x00000000 r25: 0xa0575170 r26: 0x00000003 r27: 0xa0575170
    r28: 0xa0575170 r29: 0xa0575218 r30: 0xa0575250 r31: 0x92c0f40c
    cr: 0x44022428 xer: 0x20000000 lr: 0x92c0f688 ctr: 0x95bec000
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0xd6cfe7 com.apple.iTunes 7.7.1 (7.7.1) <64b1b1d2dfee44d996905e78b027fda8> /Applications/iTunes.app/Contents/MacOS/iTunes
    0xfee000 - 0xff3fff com.apple.iPod 1.5 (15) <2bf5b4911f0588da2ced7a29876f203f> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0xff9000 - 0x1000fff com.apple.ipodsynchronization 2.3 (106.0) /System/Library/PrivateFrameworks/iPodSync.framework/Versions/A/iPodSync
    0x1008000 - 0x109efc3 com.apple.iTunes.iPodUpdater 7.7 (7.7) /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x10f8000 - 0x11c6ff5 com.apple.DiscRecording 4.0.1 (4010.4.5) <4663bc0d7cb99fd1ead6018ee955d11b> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x122d000 - 0x124eff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x1256000 - 0x1310fff libcrypto.0.9.7.dylib ??? (???) <29883b10f7a6ac2dd91addabf60e0ff8> /usr/lib/libcrypto.0.9.7.dylib
    0x135e000 - 0x165fffb com.apple.CoreServices.CarbonCore 786.6 (786.6) <d2ae460a0de15ca950ac723616666507> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x16e2000 - 0x16feffb com.apple.openscripting 1.2.8 (???) <cc6a91ad44b9d013d03b9977a1459bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x1711000 - 0x1c88ff3 com.apple.CoreGraphics 1.351.32 (???) <9f74f6f37d389945b10af033ae035ee5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x1d53000 - 0x1d7dff7 libssl.0.9.7.dylib ??? (???) <96a900022cb333091411b0e42eeeb2d6> /usr/lib/libssl.0.9.7.dylib
    0x1d8c000 - 0x1dd0fff com.apple.vmutils 4.1 (104) <ea4bd764588ed4625099564b5e253eb1> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x4ac0000 - 0x4afeff7 com.apple.QuickTimeFireWireDV.component 7.5 (861) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x4b08000 - 0x4b25ff7 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x4b2a000 - 0x4b31fcf com.apple.AppleMPEG2Codec 1.0.1 (220) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x4b36000 - 0x4b56ff7 com.apple.AppleVAFramework 4.0.20 (4.0.20) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x4b5c000 - 0x4bb9fff com.apple.applepixletvideo 1.2.16 (1.2d16) <e7d7062d023b0d41d47f92c9bfe14c79> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x52f8000 - 0x52faffd com.apple.textencoding.unicode 2.2 (2.2) <483d06bdf16bdbbad53efcea4fcfb688> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6506000 - 0x650afff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ea9c438a65be22a5e946e62ebfc9360> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x650f000 - 0x6510ffd com.apple.aoa.halplugin 2.5.7 (2.5.7f1) <7f1a60978b668db2fc7b7ee642120335> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x7247000 - 0x73e4ff7 com.apple.audio.codecs.Components 1.6.3 (1.6.3) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x7b68000 - 0x7b70ffb libCGATS.A.dylib ??? (???) <367c4beab293fb4e93202bd1d3339fe6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x7ce2000 - 0x7ceffff libCSync.A.dylib ??? (???) <78f215768036cfce737f00116252c626> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7cfc000 - 0x7d39fff libRIP.A.dylib ??? (???) <5f21492caab359881ef01076fee5f016> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x8498000 - 0x8592ff3 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <301197bb19c83780749805b978095825> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x245b0000 - 0x245e1fdb com.apple.mobiledevice 3.1 (3.1) <79b992f4858a4425b1bbc1ef9565e414> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.5.1 (1.5.1) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <39109181acbf30fed542e6c9abcf1798> /usr/lib/dyld
    0x90003000 - 0x90011fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x901a2000 - 0x90238fff com.apple.LaunchServices 289.2 (289.2) <67191ba4de2d3d14be9b4bbddd4fe0a6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90239000 - 0x902e9fff com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x903ae000 - 0x904ccff7 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x904e1000 - 0x9067afe3 libSystem.B.dylib ??? (???) <787ea59c19201d04a507b13d2bb3f9ac> /usr/lib/libSystem.B.dylib
    0x906c7000 - 0x906edfff libcups.2.dylib ??? (???) <faed280b72f625b591ae0506cb142367> /usr/lib/libcups.2.dylib
    0x906f7000 - 0x90716fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9095a000 - 0x90967fff libbz2.1.0.dylib ??? (???) <ff3050272228dbda09852641458eaaa4> /usr/lib/libbz2.1.0.dylib
    0x90968000 - 0x90a7cffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90a7d000 - 0x90afefff com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90aff000 - 0x90afffff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90b00000 - 0x90b07ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90b08000 - 0x90c74ff9 com.apple.AddressBook.framework 4.1.1 (695) <c2da7479f17eecd7a1efd7250afb0aef> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90ca4000 - 0x91385ff3 com.apple.WebCore 5525.18.1 (5525.18.1) <c339884f32c81b029105d8a0243db0ff> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91386000 - 0x9138dfff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9138e000 - 0x913a6ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x913a7000 - 0x913a7ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x913fd000 - 0x914d0fff com.apple.CoreServices.OSServices 226.5 (226.5) <50a4f7fe2d6078971f9ef6fc88cc5d2b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x914d1000 - 0x9150afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9150b000 - 0x9150effb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9150f000 - 0x91541fff com.apple.bom 9.0 (136) <cb560109ea507cdfb6c77349845e6b2a> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91542000 - 0x9154dfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9154e000 - 0x91553ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x91554000 - 0x91567ffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <dc8dac074f4d19175c5613b35aa529b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91568000 - 0x9157bfff com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9157c000 - 0x91665fff libxml2.2.dylib ??? (???) <6bf1a24e68615e0edf843988f5a0a1f4> /usr/lib/libxml2.2.dylib
    0x91666000 - 0x9169bfff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9169c000 - 0x916b3ffb com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x916b4000 - 0x916c0ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x916c1000 - 0x916edfff com.apple.CoreMediaPrivate 9.0 (9.0) <06724239f6a690e4c358b6ca14bfb1a6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x916ee000 - 0x9178fff7 com.apple.QuickTimeImporters.component 7.5 (861) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x91a92000 - 0x91b79fff com.apple.JavaScriptCore 5525.18 (5525.18) <d94ee2a4a7aa244335a4a2a49a5aaeec> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91b7a000 - 0x91b85ffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x91b86000 - 0x91c48fff com.apple.WebKit 5525.18 (5525.18) <ef0071ec0d5faa5b198348bc4f909c7c> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91cb6000 - 0x91cb7ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91cb8000 - 0x91cb9fff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x91cfd000 - 0x91d18ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <d69161954145cf745b51ae31e0961077> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91d44000 - 0x91d4cfff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x91d9b000 - 0x91d9eff3 com.apple.QuickTimeH264.component 7.5 (861) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x91d9f000 - 0x920fdff2 com.apple.QuartzCore 1.5.3 (1.5.3) <c410b1f89e67d41c3d06eac1790b500c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x920fe000 - 0x921c3ffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x921c4000 - 0x921c4ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x921c5000 - 0x92293ffb com.apple.QuickTimeMPEG4.component 7.5 (861) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x922fa000 - 0x9230afff libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x9230b000 - 0x928c5fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x928c6000 - 0x9291cfff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9292b000 - 0x9298bfff com.apple.CoreText 2.0.2 (???) <e5940fddbca517f29b8865c9b02ddff0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9298c000 - 0x92a20ff7 com.apple.framework.IOKit 1.5.1 (???) <c1d6fa5eb7372b90ca4fea8910170152> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92a21000 - 0x92ab0ffb com.apple.DesktopServices 1.4.6 (1.4.6) <58211b14d8d8dd52cb249711dc42c52d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92ab1000 - 0x92ae6ffb com.apple.LDAPFramework 1.4.3 (106) <d9a3a16b2d468683b68f714d11196d7b> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92bf6000 - 0x92c90ffb com.apple.ApplicationServices.ATS 3.3 (???) <5c97f539ba68e1143929cd89db390d20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92f0e000 - 0x92f13fff com.apple.CoreMediaAuthoringPrivate 1.4 (1.4) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x92f14000 - 0x92fadfc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92ff9000 - 0x92ffbffd libRadiance.dylib ??? (???) <3d70fcb7557347829c96c9753074b3f1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92ffc000 - 0x93241ffb com.apple.Foundation 6.5.5 (677.19) <1667218c075b6e69728c5c2dd9ff6065> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93242000 - 0x93273fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93274000 - 0x935adfeb com.apple.HIToolbox 1.5.3 (???) <1f08f0263f6037c253e6cfbe69cfc5a0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935ae000 - 0x935f9ffb com.apple.Metadata 10.5.2 (398.18) <787e741e6b0c0b59f9b9c42a016672cb> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x935fa000 - 0x9363bffb libTIFF.dylib ??? (???) <0d0a3107d26786c3708e6a511d5acec9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9363c000 - 0x94449fef com.apple.QuickTimeComponents.component 7.5 (861) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9444a000 - 0x944d2fff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94538000 - 0x945bfffb com.apple.audio.CoreAudio 3.1.0 (3.1) <880a5a35ef1c5158271ee4b305b35626> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x945c0000 - 0x945cbff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x945cc000 - 0x948f5fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x948f6000 - 0x9491fffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9493c000 - 0x94a09ffb com.apple.syncservices 3.1 (389.6) <e83163fad4c97dc8ed74b595e7cc594b> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x94a0a000 - 0x94a10ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94a11000 - 0x94d3effb com.apple.QuickTime 7.5.0 (861) <62b9ecae4fb583bf9e989f526f6f8014> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94d3f000 - 0x94d3fff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94d40000 - 0x94d43fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94d44000 - 0x94d5fffb libPng.dylib ??? (???) <a0a5ce98fa9fe98fe190c99a3dbbdfa0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94d60000 - 0x94eaaffb com.apple.ImageIO.framework 2.0.2 (2.0.2) <20c50c4b4d09a4cf69fb8732e3d79081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94edd000 - 0x94f44ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x94fe7000 - 0x95006fff libresolv.9.dylib ??? (???) <181fb3defd2942f00201507cfa4efdb5> /usr/lib/libresolv.9.dylib
    0x9504e000 - 0x95095fff com.apple.NavigationServices 3.5.2 (163) <cb063c95a55ba12994a64c7e47f5706a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95636000 - 0x95636fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95637000 - 0x95646fff com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <651e2b4d7e19d43f520829f76216f2c2> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95647000 - 0x95716fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95717000 - 0x95724ffb com.apple.opengl 1.5.6 (1.5.6) <9f2c6a226837dae46ced8b28e195210c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95725000 - 0x95735ffb com.apple.agl 3.0.9 (AGL-3.0.9) <ab2f91cfb4e503d2516df44852c35e81> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95736000 - 0x95792ffb com.apple.HIServices 1.7.0 (???) <48d200891cc9dd795ee547d526c6a45b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95793000 - 0x9581dfff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x959bf000 - 0x95a3afff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95a3b000 - 0x95aebfff edu.mit.Kerberos 6.0.12 (6.0.12) <5cf1a9c1d7e526bb9b084013a1722d08> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95aec000 - 0x95af5fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95af6000 - 0x95b58ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95b59000 - 0x95ba8ff7 libGLImage.dylib ??? (???) <dba44404ea3684df4f23df5e8e5430c3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95ba9000 - 0x95bd4ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x95bd5000 - 0x95cb8feb libobjc.A.dylib ??? (???) <23a407d7dac6090562827e97bac3cb86> /usr/lib/libobjc.A.dylib
    0x95cb9000 - 0x95cd9ff7 libJPEG.dylib ??? (???) <92341083256fbcd28888a179ebf941ef> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95ce2000 - 0x95d01fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95d02000 - 0x96137ffa libGLProgrammability.dylib ??? (???) <f032e07d587794af4d4ba1b7dc7b4fd2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96138000 - 0x9631effb com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9631f000 - 0x96338ffb com.apple.CoreVideo 1.5.1 (1.5.1) <9b726d9ba75efbaccaed1d34e2f71ea0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96339000 - 0x96481ffb libicucore.A.dylib ??? (???) <dd2fd169aa328f6e97a1d700e5846866> /usr/lib/libicucore.A.dylib
    0x96482000 - 0x96506ffd com.apple.CFNetwork 330.4 (330.4) <6e1a01b50c14cf720e067ea018c4e4ad> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96546000 - 0x965cbfff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x965cc000 - 0x965f0ffb libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x965f1000 - 0x96618fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x96619000 - 0x9673effb com.apple.CoreFoundation 6.5.3 (476.14) <56add4656a227fa699f8aa1427b369d9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96745000 - 0x96749ffe libGIF.dylib ??? (???) <d6e2a570359313a39c6783c2ecfee608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9674a000 - 0x96ebffff com.apple.AppKit 6.5.3 (949.33) <1144a07dd55895f89e44adf80cc151d9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96f7b000 - 0x96f7bfff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    I have a similar problem on the MacBook at work: 100% reproducible crash when trying to access the iTunes store. It also crashes frequently running ad-related JavaScript on a financial newspaper's web site. Stack traces of the crashed thread in the crash logs are what make me think my issue is JavaScript-related. Here's a stack trace from a crashed iTunes:
    Thread 14 Crashed:
    0 libSystem.B.dylib 0x92571dbe _semwait_signalnocancel + 10
    1 libSystem.B.dylib 0x92563c87 usleep$NOCANCEL$UNIX2003 + 61
    2 libSystem.B.dylib 0x9258548b abort + 85
    3 libstdc++.6.dylib 0x91e96005 0x91e4e000 + 294917
    4 libstdc++.6.dylib 0x91e9410c _gxx_personalityv0 + 1108
    5 libstdc++.6.dylib 0x91e9414b std::terminate() + 29
    6 libstdc++.6.dylib 0x91e946da std::typeinfo::~typeinfo() + 0
    7 com.apple.JavaScriptCore 0x923fce50 KJS::FunctionCallResolveNode::evaluateToBoolean(KJS::ExecState*) + 96
    8 com.apple.JavaScriptCore 0x923e842a KJS::LogicalOrNode::evaluateToBoolean(KJS::ExecState*) + 106
    9 com.apple.JavaScriptCore 0x923f4199 KJS::IfElseNode::execute(KJS::ExecState*) + 25
    10 com.apple.JavaScriptCore 0x923e1a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    11 com.apple.JavaScriptCore 0x923e1509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    12 com.apple.JavaScriptCore 0x923e4f10 KJS::FunctionCallResolveNode::evaluate(KJS::ExecState*) + 896
    13 com.apple.JavaScriptCore 0x923d9f19 KJS::AssignLocalVarNode::evaluate(KJS::ExecState*) + 25
    14 com.apple.JavaScriptCore 0x923d9ec9 KJS::VarStatementNode::execute(KJS::ExecState*) + 25
    15 com.apple.JavaScriptCore 0x923e1a51 KJS::FunctionBodyNode::execute(KJS::ExecState*) + 481
    16 com.apple.JavaScriptCore 0x923e1509 KJS::FunctionImp::callAsFunction(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 265
    17 com.apple.JavaScriptCore 0x92425787 KJS::JSObject::call(KJS::ExecState*, KJS::JSObject*, KJS::List const&) + 135
    18 com.apple.JavaScriptCore 0x92434abd JSObjectCallAsFunction + 173
    19 com.apple.CFNetwork 0x91f7e48a CallFindProxyForURL + 297
    20 com.apple.CFNetwork 0x91f804d9 executionContextPerform + 177
    21 com.apple.CoreFoundation 0x96c80615 CFRunLoopRunSpecific + 3141
    22 com.apple.CoreFoundation 0x96c80d54 CFRunLoopRun + 84
    23 com.apple.iTunes 0x00281521 0x1000 + 2622753
    24 com.apple.iTunes 0x002818b4 0x1000 + 2623668
    25 com.apple.iTunes 0x0020b47c 0x1000 + 2139260
    26 libSystem.B.dylib 0x924c16f5 pthreadstart + 321
    27 libSystem.B.dylib 0x924c15b2 thread_start + 34
    Resetting all iTunes preferences hasn't fixed this and neither has running on another account on the same computer. My private MacBook Pro is fine. I suspect a corrupt file somewhere (I have repaired permissions).

  • Both my iphone 4s and my ipad3 will not connect to the server when trying to access my email account. Why, and how do I fix it.

    Since 29/10/2012 my iphone 4s and more recently my ipad 3 will not connect to the server when trying to access my email account. All I get is an error message saying that 'cannot get mail, connection to the server failed' I hadnt changed any settings it just happened. I have since done a complete re-boot on the ipad but to no avail. Anybody got any suggestions?

    No. Everything was working fine and then it wasn't. I hadn't changed any settings or switched either one off. When the phone stopped working properly I ignored it because I always have my ipad with me but that just sopped working properly and now I am stuffed. I have tried most solutions suggested on here even wiping the ipad clean and re-booting. I did this exactly the same way as when I first got it but still no joy. The same with the phone.

  • TS4425 when trying to access photo stream on Apple TV, I am getting the error message terms and conditions have changed, but when I go into iCloud on my Mac the new terms and conditions are not appearing - How can I manually agree to them ?

    When trying to access photo stream on Apple TV, I am getting the error message terms and conditions have changed, but when I go into iCloud on my Mac the new terms and conditions are not appearing - How can I manually agree to them ?

    Welcome to the Apple Community.
    The following article(s) may help you.
    Photo Stream ToU's

  • Error 403 Reported when trying to access web page through a program.

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

  • HTTP 403 when trying to access a protected resource

    I'm setting up a very simple enviornment to test the basic functionalities of Access Manager 7.1 but I keep on getting an "HTTP 403 forbidden" error when trying to access a protected resouce. I think I've set the required policies, rules, etc., but still, I may have missed a step. Any ideas / advice will be greatly appreciated. Thanks.
    Here's my setup and steps I took.
    iamsys05.iamtest.com ¡V policy server, Access Manager 7.1 Update 1
    iamsys06.iamtest.com ¡V protected resource, Apache 2.2.8 web server
    On Policy Server (iamsys05):
    1.     Created ¡§Apache Policy 1¡¨ on top-level realm.
    2.     Under Apache Policy 1, created rule ¡§apache root¡¨ with service type = URL Policy agent and resource name: http://iamsys06.iamtest.com:8080/*
    3.     Under Apache Policy 1, created subjects ¡§all users¡¨ with type=Acess Manager Identity Subject and selected all users under the realm. One of these users is amAdmin.
    4.     Created agent profile user ¡§webagent¡¨ on top-level realm (amserver) [amserver „³ Subjects „³ Agent ].
    5.     Created user ¡§webagent¡¨ on top-level realm [amserver „³ Subjects „³ User].
    6.     Created role ¡§webagentrole¡¨ on top-level realm [amserver „³ Subjects „³ Role].
    7.     Assigned user ¡§webagent¡¨ to role ¡§webagentrole¡¨.
    8.     Set the privileges for webagentrole to ¡§Read and write access to all realm and policy properties¡¨
    9.     Added the webagent user account to com.sun.identity.authentication.special.users in AMConfig.properties file.
    com.sun.identity.authentication.special.users=
    cn=dsameuser,ou=DSAME Users,dc=sun, dc=com|cn=amService-UrlAccessAgent,ou=DSAME Users,dc=sun,dc=com |uid=dmgr,ou=people,dc=sun,dc=com|uid=webagent,ou=People,dc=amserver,dc=com
    10.     Restarted amserver application.
    On Protected Resource (iamsys06):
    1.     Installed Apache 2.2.8 web server and set listening port to 8080. Tested by opening http://iamsys06.iamtest.com:8080. Home page displayed (It works!)
    2.     Installed Policy Agent for Apache 2.2.
    3.     Restarted apache 2.2 web server
    4.     Opened http://iamsys06.iamtest.com:8080.
    5.     Browser redirected to http://iamsys05:9080/amserver/UI/Login?goto=http%3A%2F%2Fiamsys06.iamtest.com%3A8080%2F
    6.     Access Manager login page displayed
    7.     Entered a valid ID and password (amadmin). This is the Access manager admin account I use to login to the AM Admin console so I know the id and password are valid. Hit Login.
    8.     After about 30 seconds, browser is redirected to http://iamsys05:9080/amserver/UI/Login?AMAuthCookie=AQIC5wM2LY4SfcyNiM%2B36w9DDhY5NmKc2PF6%2Fx4x2%2FUJ18M%3D%40AAJTSQACMDE%3D%23. Brwser displays "HTTP 403 Forbidden. This error (HTTP 403 Forbidden) means that Internet Explorer was able to connect to the website, but it does not have permission to view the webpage." I get this with IE6.
    9.     Using Firefox, I get a ¡§Redirect Loop¡¨ error message ¡§Firefox has detected that the server is redirecting the request for this address in a way that will never complete.¡¨
    Thanks
    -Armand

    Installed tamper data and from what I can tell, the requests go back and forth between AM server and protected resource. Here's the Request Graph output.
    http://iamsys06.iamtest.com:8080/ 302 103
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 16
    http://iamsys05:9080/.../Login?goto=http%3A%2F%2Fiams... 200 16
    http://iamsys05:9080/favicon.ico 404 50
    http://iamsys05:9080/.../Login?AMAuthCookie=AQIC5wM2LY4Sfcz... 302 183
    http://iamsys06.iamtest.com:8080/ 302 30
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 17
    http://iamsys05:9080/.../Login?goto=http%3A%2F%2Fiams... 302 10711
    http://iamsys06.iamtest.com:8080/ 302 23
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 15
    http://iamsys05:9080/.../Login?goto=http%3A%2F%2Fiams... 302 16
    http://iamsys06.iamtest.com:8080/ 302 18
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 17
    http://iamsys05:9080/.../Login?goto=http%3A%2F%2Fiams... 302 13
    http://iamsys06.iamtest.com:8080/ 302 13
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 10
    http://iamsys05:9080/.../Login?goto=http%3A%2F%2Fiams... 302 10
    http://iamsys06.iamtest.com:8080/ 302 16
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 11
    http://iamsys05:9080/.../Login?goto=http%3A%2F%2Fiams... 302 12
    http://iamsys06.iamtest.com:8080/ 302 12
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 10
    http://iamsys05:9080/.../Login?goto=http%3A%2F%2Fiams... 302 12
    http://iamsys06.iamtest.com:8080/ 302 12
    http://iamsys05.iamtest.com:9080/.../Login?goto=http%3A%2... 302 10
    | | | | |
    URI Status Duration 20:59:52.542 20:59:56.512 21:00:00.482 21:00:04.451 21:00:08.421

  • Login error when trying to access iCloud Mail

    I am receiving the following error when trying to access iCloud Mail. All other iCloud services are functioning.
    IS FATAL
    true
    APPLICATION NAME
    mail
    TITLE
    Mail could not be loaded
    MESSAGE
    There was a problem loading the application due to a possible network error or missing resources. Please try again.
    LOG
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: MAIL in main()
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.User object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 1:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 2:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <--  Response 2:  0  (72ms),  headers:   body: (empty)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1425991198034/1,httpStatus: 0,round trip time: 71ms, wmsid: null
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: Bootstrap error: Preferences.RefreshError
    TYPE
    server
    APP STATECHART
    SC.Statechart:sc1030
      initialized: true
      name: cloudos-statechart
      current-states: [
        active.springboard.displayingSpringboard.springboard
      state-transition:
        active: false
        suspended: false
      handling-event: false
    BUILD NUMBER
    15B.169e9f7
    TIME
    Tue Mar 10 2015 07:40:01 GMT-0500 (CDT)        (1425991201489)
    HOST
    www.icloud.com
    USER AGENT
    Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    DSID
    103705688
    ENVIRONMENT
    PROD
    RECENT LOG MESSAGES
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: MAIL in main()
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.User object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: Creating local CK.AccountPreferences object
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 1:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc1473:dispatch('load content')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: "2.0 Waiting for Content" handled event 'load content' (no transition)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: SC.Object:sc2647:dispatch('noContent')
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:   "6.2 pop up View" handled event 'noContent' with a transition to "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG:     -> entering "6.2.2 No Content"
    Tue, 10 Mar 2015 12:39:58 GMT:  WARN:  REJECTING SERVER RESPONSE CoreMail.MailRequest.willReceive:
      Status:0
      Request:/wm/preference
      Wmsid:null
      Redirect Count:1
      Timeout Redirect Count:1
      ResponseText:
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: -->  Request 2:   POST to https://p03-mailws.icloud.com:443/wm/preference?clientBuildNumber=15B.9bb3ce9&cl ientId=523F12B2-FC11-4D72-952C-A9AA1C424022&dsid=103705688,  headers: Content-Type=text/plain,  body: (omitted)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: ----------------> Request out: /wm/preference-list-->1425991198034/1
      wmsid: null
      params: {"locale":"en-us","timeZone":"US/Central"}
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: GIVING UP ON RETRIES, CoreMail.MailRequest.willReceive:
    responseText: ,
    this._redirectCount: 1
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <--  Response 2:  0  (72ms),  headers:   body: (empty)
    Tue, 10 Mar 2015 12:39:58 GMT:  DEBUG: <---------------- Request in: /wm/preference-list-->1425991198034/1,httpStatus: 0,round trip time: 71ms, wmsid: null
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: retrieveResponseError:
      ServerPreferencesDataSource.retrieveResponse
      error:-1/0
      guid:serverPrefsGuid
    Tue, 10 Mar 2015 12:39:58 GMT:  ERROR: Bootstrap error: Preferences.RefreshError

    After activatin iCloud, my dotMac account wouldn't retrieve mail anymore. It kept saying that my username or password were not good. No matter how many times I tried, I couldn't restore the service.
    Here's how I got it working again.
    Apparently my 6 letter password is no longer acceptable. You need to update it to an 8 letter password that includes numbers and capital letters.
    So I went to https://iforgot.apple.com and asked to reset my password.
    Because I could still get my emails logging into iCloud with Safari, I responded to Apple's email, and created a stronger password.
    Than I updated the passwords on my computer's Mail program, iPhone, and iPad (and of course everything else, iTunes, etc.).
    That was it!
    Everything works as normal again, I even was finally able to synchronize calendars over different computers again.
    Try it out, it could be your issue as well.

  • HTTP error when trying to access RESTful web service from application

    Hi,
    We are getting the following error when trying to access a RESTful web service coming from Apex workspace 4.2.1 and Apex listener 2.1:
    ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1130 ORA-29024: Certificate validation failure
    In the Debug report, besides the above I also see:
    error_backtrace: ORA-06512: at "SYS.UTL_HTTP", line 1130 ORA-06512: at "APEX_040200.WWV_FLOW_WEB_SERVICES", line 543 ORA-06512: at "APEX_040200.WWV_FLOW_WEB_SERVICES", line 1164 ORA-06512: at "APEX_040200.WWV_FLOW_PROCESS", line 396
    We get that error whether we use https or http in the URI pointing to the web service. When I test the Web Service in Workspace RESTful service GUI, I get the data back. When I go build an application with a report calling the RESTful Web Service I get that error. Both the Application and the Workspace RESTful services are on the same Apex environment and even the same workspace.
    What is odd is that I can actually put the URL of the web service into a browser and I get the data: (using the demo hr data in sample RESTful services.)
    IN browser-- https://weblogic-dev.edu/apex/ace/hr/empinfo/
    yields:
    7839,KING,PRESIDENT,,1981-11-17T05:00:00Z,5000,,10 7698,BLAKE,MANAGER,7839,1981-05-01T04:00:00Z,2850,,30 7782,CLARK,MANAGER,7839,1981-06-09T04:00:00Z,2450,,10 7566,JONES,MANAGER,7839,1981-04-02T05:00:00Z,2975,,20 7788,SCOTT,ANALYST,7566,1982-12-09T05:00:00Z,3000,,20 7902,FORD,ANALYST,7566,1981-12-03T05:00:00Z,3000,,20 7369,SMITH,CLERK,7902,1980-12-17T05:00:00Z,800,,20 7499,ALLEN,SALESMAN,7698,1981-02-20T05:00:00Z,1600,300,30 7521,WARD,SALESMAN,7698,1981-02-22T05:00:00Z,1250,500,30 7654,MARTIN,SALESMAN,7698,1981-09-28T04:00:00Z,1250,1400,30 7844,TURNER,SALESMAN,7698,1981-09-08T04:00:00Z,1500,0,30 7876,ADAMS,CLERK,7788,1983-01-12T05:00:00Z,1100,,20 7900,JAMES,CLERK,7698,1981-12-03T05:00:00Z,950,,30 7934,MILLER,CLERK,7782,1982-01-23T05:00:00Z,1300,,10
    Any ideas on what would be causing the Error above in our application?
    Thanks,
    Pat
    Edited by: patfmnd on Mar 11, 2013 3:25 PM
    In reviewing the above error, I think we are realizing that we have to have the Weblogic layer SSL cert (actually the CERT from our BigIP load balancer which also does our SSL termination) imported into the Oracle server wallet where Apex is installed. Am I correct?
    PM

    We resolved our problem. The Apex Administrative Guide made us realize that we had to set up Wallet path in the Instance. This required working with DBAs to follow the Advanced networking guide to get the wallet set up on our server. We then added that path to the Instance configuration. (Manager Instance --> Instance settings). We ran into another other issue related to our implementation of CAS but were able to resolve that, and 'voila' were able to get the sample RESTful service consumed by our application!!
    Now to the task of figuring out how to get Basic Auth working between client application and RESTful web service. If anyone has that working, let us know!!
    It would be helpful if in the documentation of the Apex 2.x listener or Apex install/configuration there was clear reference to the above steps required for HTTPS access to RESTful web services.
    Pat

  • Error when trying to access a form through https

    Hi,
    I'm facing this error when trying to access a form through https, i'm using OAS10g 10.1.2.3 over linux, it has webutil configured and is working perfectly with https
    I'm accessing the form through webcache.
    the error:
    Java Plug-in 1.6.0_37
    Usar versión JRE 1.6.0_37-b06 Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Users\Carlos
    c:   borrar ventana de consola
    f:   finalizar objetos en la cola de finalización
    g:   liberación de recursos
    h:   presentar este mensaje de ayuda
    l:   volcar lista del cargador de clases
    m:   imprimir sintaxis de memoria
    o:   activar registro
    q:   ocultar consola
    r:   recargar configuración de norma
    s:   volcar propiedades del sistema y de despliegue
    t:   volcar lista de subprocesos
    v:   volcar pila de subprocesos
    x:   borrar antememoria del cargador de clases
    0-5: establecer nivel de rastreo en <n>
    cargar: clase oracle.forms.webutil.common.RegisterWebUtil no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.webutil.common.RegisterWebUtil
    cargar: clase oracle.forms.engine.Main no encontrada.
    java.lang.ClassNotFoundException: oracle.forms.engine.Main
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Excepción: java.lang.ClassNotFoundException: oracle.forms.engine.Mainwhat could be the reason it can not find the webutil libraries with https ?? i tried erasing the java's cache but still the same error :(
    Regards
    Carlos

    I got it, i only had to check the option 'Use SSL 2.0 compatible ClientHello format' from the java's control panel advanced tab.
    Metalink's note: 787739.1
    :)

  • Just recently I am getting the following error message when trying to access web sites. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" then I have to click ok. It is an issue with some plug-in?

    Just recently I am getting the following error message when trying to access web sites. I am using Firefox browser version 10.0.2. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" as the web site page is being displayed in browser winder. Then I have to click ok. It doesn't matter what web link/site I go to it happens. It is an issue with some plug-in?

    I have advised McAfee's product team of the problem and this thread, and they're looking into it now.

Maybe you are looking for

  • Ichat, AIM, Adium frequently disconnect using Airport

    Ichat, AIM, & Adium all frequently disconnect when using Airport. I use a Linksys Wireless Router with an Airport extreme card. When directly connected to the router, I have no problem. Using a PC with Windows XP, AIM operates fine. Safari and Firefo

  • IMac Calendar wont sync, iPad and iPhone do

    Recent update to Mountain Lyon and iTunes, iPad, and iPhone all up to date. iPhone and iPad Calendars sync to each other, but iMac Calendar will not sync. I am using just Apples Calendar and iTunes for syncing. Help. Tried checking syncing only Calen

  • Extending the DP Planning area time horizon

    Hi gurus, we would like to extend the DP planning area horizon now. the current planning area storage bucket profile and the time series for the planning area are only until 01.03.2012, i want to extend the horizon beyon this ..what is the exact proc

  • Can't open .aep files created in AE v12.0 in AE 11.0

    Total AE N00b here ... I downloaded some .aep tutorial files and can't open them in AE CS6 (version 11.0.2.11). When I do, I get the error: I assume that AE version 12.0x353 is creative cloud? Is there any way to open newer versions of .aep files in

  • FCPX Crops out the edges of video when exported!!

    In the program it looks perfect, but the exported files always have a significant portion of the edges chopped off... I have tried exporting under various settings and the same problem arises. Why does it do this? How can I fix it? Any help would be