Import error - guidance on troubleshooting please.

2011-11-06 Thread Mike MOSSuMS Stringfellow

Any advice on the quickest way to trouble-shoot the below error when importing 
a list that was exported from a different farm? Are the ULS logs the place to 
start, or does the import show all the info available to stdout? Or does anyone 
recommend a tool or technique that gives generally better rsults/insights that 
the standard import/export - e.g. gl-exportlist and gl-importlist? In 
anticipation, thanks for your help!  export-spweb -IDENTITY http://OldSiteURL
-ITEMURL "OldListURL" -PATH c:\temp\export.cmp -FORCE -INCLUDEUSERSECURITY
-INCLUDEVERSIONS 4 import-spweb -IDENTITY https://NewSiteURL
-PATH c:\temp\export.cmp -FORCE -INCLUDEUSERSECURITY -UPDATEVERSIONS OVERWRITE
-VERBOSE

[7/11/2011 10:29:14 AM] [List] [ListName] Progress:
Importing[7/11/2011 10:29:14 AM] [List] [ListName]  
ExtendedVerbose: Creating[7/11/2011 10:29:14 AM] [List]
[ER.BusinessUnits]   Error: An unexpected error has occurred.[7/11/2011 
10:29:14 AM] [List]
[ER.BusinessUnits]   Debug:at
Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)   at
Microsoft.SharePoint.Library.SPRequest.CreateListOnImport(String bstrUrl,
Guid& pguidListId, String bstrTitle, String bstrDescription, Int32
lTemplateID, String bstrFeatureId, Guid guidRootFolderId, Int64 llFlags, Int32
iVersion, Int32 iAuthor, String bstrFields, String bstrContentTypes, String
bstrImageUrl, String bstrEventSinkAssembly, String bstrEventSinkClass, String
bstrEventSinkData, Guid guidDocTemplateId, String bstrViews, String bstrForms,
Boolean bCompressedSchema, DateTime dtTimeCreated)   at
Microsoft.SharePoint.Deployment.ListSerializer.CreateList(SPWeb parentWeb,
Dictionary`2 listMetaData, Boolean usingPublicSchema)   at
Microsoft.SharePoint.Deployment.ListSerializer.SetObjectData(Object obj,
SerializationInfo info, StreamingContext context, ISurrogateSelector selector)  
 at
Microsoft.SharePoint.Deployment.XmlFormatter.CallSetObjectData(Object obj,
SerializationInfo objectData, ISerializationSurrogate surrogate,
ISurrogateSelector selector)[7/11/2011 10:29:14 AM] FatalError: An unexpected 
error has
occurred.[7/11/2011 10:29:14 AM] Debug:at
Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx)   at
Microsoft.SharePoint.Library.SPRequest.CreateListOnImport(String bstrUrl,
Guid& pguidListId, String bstrTitle, String bstrDescription, Int32
lTemplateID, String bstrFeatureId, Guid guidRootFolderId, Int64 llFlags, Int32
iVersion, Int32 iAuthor, String bstrFields, String bstrContentTypes, String
bstrImageUrl, String bstrEventSinkAssembly, String bstrEventSinkClass, String
bstrEventSinkData, Guid guidDocTemplateId, String bstrViews, String bstrForms,
Boolean bCompressedSchema, DateTime dtTimeCreated)   at
Microsoft.SharePoint.Deployment.ListSerializer.CreateList(SPWeb parentWeb,
Dictionary`2 listMetaData, Boolean usingPublicSchema)   at
Microsoft.SharePoint.Deployment.ListSerializer.SetObjectData(Object obj,
SerializationInfo info, StreamingContext context, ISurrogateSelector selector)  
 at
Microsoft.SharePoint.Deployment.XmlFormatter.CallSetObjectData(Object obj,
SerializationInfo objectData, ISerializationSurrogate surrogate,
ISurrogateSelector selector)   at
Microsoft.SharePoint.Deployment.XmlFormatter.ParseObject(Type objectType,
Boolean isChildObject)   at 
Microsoft.SharePoint.Deployment.XmlFormatter.DeserializeObject(Type
objectType, Boolean isChildObject, DeploymentObject envelope)   at
Microsoft.SharePoint.Deployment.XmlFormatter.Deserialize(Stream
serializationStream)   at
Microsoft.SharePoint.Deployment.ObjectSerializer.Deserialize(Stream 
serializationStream)   at
Microsoft.SharePoint.Deployment.SPImport.DeserializeObjects()   at
Microsoft.SharePoint.Deployment.SPImport.Run()[7/11/2011 10:29:14 AM] Progress: 
Import did not complete.[7/11/2011 10:29:14 AM] Finish Time: 7/11/2011 10:29:14 
AM.[7/11/2011 10:29:14 AM] Duration: 00:01:39[7/11/2011 10:29:14 AM] Finished 
with 0 warnings.[7/11/2011 10:29:14 AM] Finished with 2 errors.

  <>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: AssetUrlSelector - get web/list reference

2011-11-06 Thread Paul Noone
Argh. I have this mess so far but it looks unwieldy as hell. Assistance please? 
:)
I want to take a URL of this form - /site/web[x].../myList/Forms/[anyView].aspx 
- and return:
web = /site/web[x]
listName = myList
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);

// Set the value if this is a postback.
if (this.Page.IsPostBack)
{
// Server relative URL
string newAssetUrl = urlSelector.AssetUrl;

// Remove listform component from URL
string listFormPage = @"/Forms/[\/a-zA-Z0-9._%+-]+";
Regex rgx = new Regex(listFormPage);
newAssetUrl = rgx.Replace(newAssetUrl, "");

// Split the remainder (site and webs)
string [] urlArray = newAssetUrl.Split('/');

// LastIndexOf will be list name
string listName = urlArray[urlArray.Length - 1];

// Loop through array -1
for (int i = 0; i < (urlArray.Length - 1); i++)
{
// Add "/" to each item and concat again...??!!

}

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 7 November 2011 1:55 PM
To: ozMOSS (ozmoss@ozmoss.com)
Subject: AssetUrlSelector - get web/list reference

Hi all,
I've added an AssetUrlSelector to an EditorPart which works great but only 
returns a server relative URL. I'd hoped the object might include useful things 
like the selected item ID and parent hierarchy.
How would I go about translating the returned AssetUrl in order to get the web 
and list instance. (The selected item will always be an image library.) I want 
to then use these as the params in my SPQuery.
I'm currently trying to split the returned URL, remove any extraneous suffix 
(AllItems.aspx), then split at the last index of / to get the Web URL and list 
name.
Is this the way to go, or is there a simpler and more reliable method?
Kind regards,

Paul

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


AssetUrlSelector - get web/list reference

2011-11-06 Thread Paul Noone
Hi all,
I've added an AssetUrlSelector to an EditorPart which works great but only 
returns a server relative URL. I'd hoped the object might include useful things 
like the selected item ID and parent hierarchy.
How would I go about translating the returned AssetUrl in order to get the web 
and list instance. (The selected item will always be an image library.) I want 
to then use these as the params in my SPQuery.
I'm currently trying to split the returned URL, remove any extraneous suffix 
(AllItems.aspx), then split at the last index of / to get the Web URL and list 
name.
Is this the way to go, or is there a simpler and more reliable method?
Kind regards,

Paul

___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SPS2010 Office Web Apps - Cache error

2011-11-06 Thread Aaron Saikovski
Also try this:
http://technet.microsoft.com/en-us/library/ee837422.aspx

maybe move the cache

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 7 November 2011 12:55 PM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Nothing that really makes sense to me :(


11/07/2011 12:05:00.90 OWSTIMER.EXE (0x20BC) 0x2378 
 Office Web Apps  Office Viewing Architecture   
cu85   Medium   Cache Creation Job Starting [JobId: 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8]
64b4be31-98ad-413a-95cf-6dac151e1300
11/07/2011 12:05:00.91 OWSTIMER.EXE (0x20BC) 0x2378 
 Office Web Apps  Office Viewing Architecture   
cu86   ExceptionCache Creation Job encountered an exception 
[JobId: 0ee8f842-6624-4b99-a4f3-6eb3c86a4be8] System.NullReferenceException: 
Object reference not set to an instance of an object. at 
Microsoft.SharePoint.SPSite.PreinitializeServer(SPRequest request) at 
Microsoft.SharePoint.SPSite.GetSPRequest() at 
Microsoft.SharePoint.SPSite.get_Request() at 
Microsoft.SharePoint.SPSite.get_Usage() at 
Microsoft.Office.Web.Environment.Sharepoint.WacSharepointCacheOM.EnsureCacheSiteCollection(SPWebApplication
 webApp, Boolean elevateReturn, String ownerLogin, String ownerName, String 
ownerEmail) at 
Microsoft.Office.Web.Environment.Sharepoint.WacSharepointCacheOM.EnsureCacheSiteCollection(SPWebApplication
 webApp) at 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob.Execute(SPJo...
 64b4be31-98ad-413a-95cf-6dac151e1300
11/07/2011 12:05:00.91*   OWSTIMER.EXE (0x20BC) 
0x2378  Office Web Apps  Office Viewing 
Architecture cu86   Exception...bState jobState)   
64b4be31-98ad-413a-95cf-6dac151e1300
11/07/2011 12:05:00.91 OWSTIMER.EXE (0x20BC) 0x2378 
 Office Web Apps  Unified Logging Service   
  c91s   Monitorable   Watson bucket parameters: Office Web Apps, 
ULSException14, 52a97675 "office web apps", 0e00178d "14.0.6029.0", 1f65804a 
"microsoft.sharepoint", 0e0017dd "14.0.6109.0", 4e54d0e1 "wed aug 24 20:22:25 
2011", 5786 "5786", 01aa1204 "01aa1204", 4a6d3421 
"nullreferenceexception", 63753836 "cu86"
64b4be31-98ad-413a-95cf-6dac151e1300

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Aaron Saikovski
Sent: Monday, 7 November 2011 12:34 PM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Anything in the ULs logs?

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Nigel Hertz
Sent: Monday, 7 November 2011 12:13 PM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Yup, got a root site collection. Also, when I remove and recreate the cache, it 
creates it as http://servername/sites/Office_Viewing_Service_Cache/ - and the 
site is accessible.

I've just checked, and I can open a word doc and edit it in the browser and 
everything, so Web Apps is working - it's just this cache error in the logs (or 
caching that doesn't appear to be working)


From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Aaron Saikovski
Sent: Monday, 7 November 2011 10:28 AM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Do you have a root site collection? /

That is where OWA cache is stored or you could create a web app with a root 
site collection and have the OWA hosted and shared there.
Check out:

http://technet.microsoft.com/en-us/library/ff431687.aspx

and here:
http://blogs.msdn.com/b/aaronsaikovski/archive/2011/10/21/optimising-office-web-apps-rendering-performance.aspx

hth

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Nigel Hertz
Sent: Monday, 7 November 2011 10:22 AM
To: ozMOSS
Subject: SPS2010 Office Web Apps - Cache error

Hi all

I'm getting a bunch of critical errors in the event viewer on our UAT server, 
which I've traced back to the "Office Web Apps Cache Creation" job (screenshot 
of the error below). The error text is "The Execute method of job definition 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob (ID 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8) threw an exception. More information is 
included below. Object reference not set to an instance of an object."

Does anyone have an idea on how to resolve this? I've tried 
'Remove-SPOfficeWebAppsCache' and 'New-SPOfficeWebApps

RE: SPS2010 Office Web Apps - Cache error

2011-11-06 Thread Nigel Hertz
Nothing that really makes sense to me :(


11/07/2011 12:05:00.90 OWSTIMER.EXE (0x20BC) 0x2378 
 Office Web Apps  Office Viewing Architecture   
cu85   Medium   Cache Creation Job Starting [JobId: 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8]
64b4be31-98ad-413a-95cf-6dac151e1300
11/07/2011 12:05:00.91 OWSTIMER.EXE (0x20BC) 0x2378 
 Office Web Apps  Office Viewing Architecture   
cu86   ExceptionCache Creation Job encountered an exception 
[JobId: 0ee8f842-6624-4b99-a4f3-6eb3c86a4be8] System.NullReferenceException: 
Object reference not set to an instance of an object. at 
Microsoft.SharePoint.SPSite.PreinitializeServer(SPRequest request) at 
Microsoft.SharePoint.SPSite.GetSPRequest() at 
Microsoft.SharePoint.SPSite.get_Request() at 
Microsoft.SharePoint.SPSite.get_Usage() at 
Microsoft.Office.Web.Environment.Sharepoint.WacSharepointCacheOM.EnsureCacheSiteCollection(SPWebApplication
 webApp, Boolean elevateReturn, String ownerLogin, String ownerName, String 
ownerEmail) at 
Microsoft.Office.Web.Environment.Sharepoint.WacSharepointCacheOM.EnsureCacheSiteCollection(SPWebApplication
 webApp) at 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob.Execute(SPJo...
 64b4be31-98ad-413a-95cf-6dac151e1300
11/07/2011 12:05:00.91*   OWSTIMER.EXE (0x20BC) 
0x2378  Office Web Apps  Office Viewing 
Architecture cu86   Exception...bState jobState)   
64b4be31-98ad-413a-95cf-6dac151e1300
11/07/2011 12:05:00.91 OWSTIMER.EXE (0x20BC) 0x2378 
 Office Web Apps  Unified Logging Service   
  c91s   Monitorable   Watson bucket parameters: Office Web Apps, 
ULSException14, 52a97675 "office web apps", 0e00178d "14.0.6029.0", 1f65804a 
"microsoft.sharepoint", 0e0017dd "14.0.6109.0", 4e54d0e1 "wed aug 24 20:22:25 
2011", 5786 "5786", 01aa1204 "01aa1204", 4a6d3421 
"nullreferenceexception", 63753836 "cu86"
64b4be31-98ad-413a-95cf-6dac151e1300

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Aaron Saikovski
Sent: Monday, 7 November 2011 12:34 PM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Anything in the ULs logs?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 7 November 2011 12:13 PM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Yup, got a root site collection. Also, when I remove and recreate the cache, it 
creates it as http://servername/sites/Office_Viewing_Service_Cache/ - and the 
site is accessible.

I've just checked, and I can open a word doc and edit it in the browser and 
everything, so Web Apps is working - it's just this cache error in the logs (or 
caching that doesn't appear to be working)


From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Aaron Saikovski
Sent: Monday, 7 November 2011 10:28 AM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Do you have a root site collection? /

That is where OWA cache is stored or you could create a web app with a root 
site collection and have the OWA hosted and shared there.
Check out:

http://technet.microsoft.com/en-us/library/ff431687.aspx

and here:
http://blogs.msdn.com/b/aaronsaikovski/archive/2011/10/21/optimising-office-web-apps-rendering-performance.aspx

hth

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Nigel Hertz
Sent: Monday, 7 November 2011 10:22 AM
To: ozMOSS
Subject: SPS2010 Office Web Apps - Cache error

Hi all

I'm getting a bunch of critical errors in the event viewer on our UAT server, 
which I've traced back to the "Office Web Apps Cache Creation" job (screenshot 
of the error below). The error text is "The Execute method of job definition 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob (ID 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8) threw an exception. More information is 
included below. Object reference not set to an instance of an object."

Does anyone have an idea on how to resolve this? I've tried 
'Remove-SPOfficeWebAppsCache' and 'New-SPOfficeWebAppsCache' to no avail.

Nigel

[cid:image001.png@01CC9D4C.82341B30]


Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the e

RE: SPS2010 Office Web Apps - Cache error

2011-11-06 Thread Aaron Saikovski
Anything in the ULs logs?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 7 November 2011 12:13 PM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Yup, got a root site collection. Also, when I remove and recreate the cache, it 
creates it as http://servername/sites/Office_Viewing_Service_Cache/ - and the 
site is accessible.

I've just checked, and I can open a word doc and edit it in the browser and 
everything, so Web Apps is working - it's just this cache error in the logs (or 
caching that doesn't appear to be working)


From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Aaron Saikovski
Sent: Monday, 7 November 2011 10:28 AM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Do you have a root site collection? /

That is where OWA cache is stored or you could create a web app with a root 
site collection and have the OWA hosted and shared there.
Check out:

http://technet.microsoft.com/en-us/library/ff431687.aspx

and here:
http://blogs.msdn.com/b/aaronsaikovski/archive/2011/10/21/optimising-office-web-apps-rendering-performance.aspx

hth

From: ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Nigel Hertz
Sent: Monday, 7 November 2011 10:22 AM
To: ozMOSS
Subject: SPS2010 Office Web Apps - Cache error

Hi all

I'm getting a bunch of critical errors in the event viewer on our UAT server, 
which I've traced back to the "Office Web Apps Cache Creation" job (screenshot 
of the error below). The error text is "The Execute method of job definition 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob (ID 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8) threw an exception. More information is 
included below. Object reference not set to an instance of an object."

Does anyone have an idea on how to resolve this? I've tried 
'Remove-SPOfficeWebAppsCache' and 'New-SPOfficeWebAppsCache' to no avail.

Nigel

[cid:image001.png@01CC9D49.85F01920]


Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.


Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us.  If it has been sent to you by mistake, legal privilege 
is not waived or lost and you are not entitled to use it in any way. Stockland 
and its subsidiaries reserve the right to monitor e-mail communication through 
its networks.

Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us.  If it has been sent to you by mistake, legal privilege 
is not waived or lost and you are not entitled to use it in any way. Stockland 
and its subsidiaries reserve the right to monitor e-mail communication through 
its networks.
<>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SPS2010 Office Web Apps - Cache error

2011-11-06 Thread Nigel Hertz
Yup, got a root site collection. Also, when I remove and recreate the cache, it 
creates it as http://servername/sites/Office_Viewing_Service_Cache/ - and the 
site is accessible.

I've just checked, and I can open a word doc and edit it in the browser and 
everything, so Web Apps is working - it's just this cache error in the logs (or 
caching that doesn't appear to be working)


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Aaron Saikovski
Sent: Monday, 7 November 2011 10:28 AM
To: ozMOSS
Subject: RE: SPS2010 Office Web Apps - Cache error

Do you have a root site collection? /

That is where OWA cache is stored or you could create a web app with a root 
site collection and have the OWA hosted and shared there.
Check out:

http://technet.microsoft.com/en-us/library/ff431687.aspx

and here:
http://blogs.msdn.com/b/aaronsaikovski/archive/2011/10/21/optimising-office-web-apps-rendering-performance.aspx

hth

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 7 November 2011 10:22 AM
To: ozMOSS
Subject: SPS2010 Office Web Apps - Cache error

Hi all

I'm getting a bunch of critical errors in the event viewer on our UAT server, 
which I've traced back to the "Office Web Apps Cache Creation" job (screenshot 
of the error below). The error text is "The Execute method of job definition 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob (ID 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8) threw an exception. More information is 
included below. Object reference not set to an instance of an object."

Does anyone have an idea on how to resolve this? I've tried 
'Remove-SPOfficeWebAppsCache' and 'New-SPOfficeWebAppsCache' to no avail.

Nigel

[cid:image001.png@01CC9D44.E3AA5670]


Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.


Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us.  If it has been sent to you by mistake, legal privilege 
is not waived or lost and you are not entitled to use it in any way. Stockland 
and its subsidiaries reserve the right to monitor e-mail communication through 
its networks.

_

Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us.  If it has been sent to you by mistake, legal privilege 
is not waived or lost and you are not entitled to use it in any way. Stockland 
and its subsidiaries reserve the right to monitor e-mail communication through 
its networks.
<>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SPS2010 Office Web Apps - Cache error

2011-11-06 Thread Aaron Saikovski
Do you have a root site collection? /

That is where OWA cache is stored or you could create a web app with a root 
site collection and have the OWA hosted and shared there.
Check out:

http://technet.microsoft.com/en-us/library/ff431687.aspx

and here:
http://blogs.msdn.com/b/aaronsaikovski/archive/2011/10/21/optimising-office-web-apps-rendering-performance.aspx

hth

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 7 November 2011 10:22 AM
To: ozMOSS
Subject: SPS2010 Office Web Apps - Cache error

Hi all

I'm getting a bunch of critical errors in the event viewer on our UAT server, 
which I've traced back to the "Office Web Apps Cache Creation" job (screenshot 
of the error below). The error text is "The Execute method of job definition 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob (ID 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8) threw an exception. More information is 
included below. Object reference not set to an instance of an object."

Does anyone have an idea on how to resolve this? I've tried 
'Remove-SPOfficeWebAppsCache' and 'New-SPOfficeWebAppsCache' to no avail.

Nigel

[cid:image001.png@01CC9D37.DB511CF0]


Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  
nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.


Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us.  If it has been sent to you by mistake, legal privilege 
is not waived or lost and you are not entitled to use it in any way. Stockland 
and its subsidiaries reserve the right to monitor e-mail communication through 
its networks.
<>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


SPS2010 Office Web Apps - Cache error

2011-11-06 Thread Nigel Hertz
Hi all

I'm getting a bunch of critical errors in the event viewer on our UAT server, 
which I've traced back to the "Office Web Apps Cache Creation" job (screenshot 
of the error below). The error text is "The Execute method of job definition 
Microsoft.Office.Web.Environment.Sharepoint.CacheCreationJob (ID 
0ee8f842-6624-4b99-a4f3-6eb3c86a4be8) threw an exception. More information is 
included below. Object reference not set to an instance of an object."

Does anyone have an idea on how to resolve this? I've tried 
'Remove-SPOfficeWebAppsCache' and 'New-SPOfficeWebAppsCache' to no avail.

Nigel

[cid:image001.png@01CC9D35.5A0F6E50]


Kind Regards,
Nigel Hertz

SharePoint Administrator & Developer, Information Technology
Stockland, Level 25, 133 Castlereagh Street, Sydney NSW 2000
T: +61 2 9035 2617  M: +61 4 0103 4605
F: +61 2 8988 2617   E:  nigel.he...@stockland.com.au
www.stockland.com.au
Before printing this email, please consider the environment.


_

Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us.  If it has been sent to you by mistake, legal privilege 
is not waived or lost and you are not entitled to use it in any way. Stockland 
and its subsidiaries reserve the right to monitor e-mail communication through 
its networks.
<>___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss