RE: Export/Import Managed Metadata

2014-05-05 Thread Paul Culmsee
No – its turns out I did write it ☺

http://www.cleverworkarounds.com/2013/07/02/managed-metadata-fun-troubleshooting-the-taxonomy-update-scheduler/

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ajay
Sent: Monday, 5 May 2014 3:35 PM
To: ozMOSS
Subject: Re: Export/Import Managed Metadata

 Ha ha was it another Paul  :)

___
Sponsored by Infotext - Amazing Search for Microsoft SharePoint - 
http://www.infotext.com/
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss

RE: Export/Import Managed Metadata

2014-05-04 Thread Paul Culmsee
Hi Paul

It's the ID of the managed metadata service application.

Below is some documentation I wrote for a client who does not have strong 
PowerShell skills so it's a bit laborious (note the pre-reqs at the end)

PS C:\Users\SP_Admin Get-SPServiceApplication
DisplayName  TypeName Id
---   --
Secure Store Serv... Secure Store Serv... 8a9ad845-241e-40e0-a2cb-c5fa09ddb479
State Service App... State Service833e41ed-9574-4f6b-978b-787a087735e1
Managed Metadata ... Managed Metadata ... 479cd8d7-af32-4f85-adb1-9cdd858ed3e6
Web Analytics Ser... Web Analytics Ser... 4b54f5d4-2148-4cbf-ad24-b1e49b0eb7e5
Search Service Ap... Search Service Ap... a3434173-fc5d-464d-a05c-aeda41d4959f

* Create a PowerShell object bound to the managed metadata service 
application ID.
PS C:\Users\SP_Admin $mms = Get-SPServiceApplication -Identity 
479cd8d7-af32-4f85-adb1-9cdd858ed3e6

* Confirm that the correct service application is selected by 
examining the properties of the object. Confirm the service type is Managed 
Metadata Service
PS C:\Users\SP_Admin $mms.DisplayName
Managed Metadata Service Application
PS C:\Users\sp_admin $mms.TypeName
Managed Metadata Service

* Using PowerShell, determine the ID of the managed metadata 
service application proxy (note the matching service application is marked in 
bold). The GUID listed in the ID column is the important bit
PS C:\temp Get-SPServiceApplicationProxy

DisplayName  TypeName Id
---   --
Business Data Con... Business Data Con... a3237d54-00f9-4ba3-8544-cb020ae1d8b5
State Service App... State Service Proxy  24f87eba-85af-4938-98f4-3002ff0da95b
Managed Metadata ... Managed Metadata ... 373ad4c0-cdd2-4db8-9dd8-a0c5c8d1df41
Secure Store Serv... Secure Store Serv... 7ac50f4f-addc-466e-a695-9a37890058f5
WSS_UsageApplication Usage and Health ... c8de2c82-8ae5-41ab-bf58-9724c48776d5

* Create an object bound to the managed metadata service 
application proxy.
PS C:\Users\SP_Admin $mmp = Get-SPServiceApplicationProxy -Identity 
373ad4c0-cdd2-4db8-9dd8-a0c5c8d1df41

* Confirm that the correct service application proxy is selected by 
examining the properties of the object. Confirm the service type is Managed 
Metadata Service Connection
PS C:\temp $mmp.DisplayName
Managed Metadata Service Application
PS C:\temp $mmp.TypeName
Managed Metadata Service Connection

* Export the current Managed metadata term store to the UNC path 
specified in step 1, utilising the service application object and service 
application proxy object created in steps 3 and 6.
Export-SPMetadataWebServicePartitionData -Identity $mms.id -ServiceProxy $mmp 
-Path \\server\share\termstore.bakfile:///\\server\share\termstore.bak

Also make sure you ensure these pre-requisites:


  *   This method can only be used by an account with local administration 
access to the entire farm (eg AD\svcsp-admin)
  *   The backup of the term store must be a UNC path (eg 
\\dcsep01db\SharePointBackup) that resides on the SQL Server for the 
SharePoint farm
  *   The services account (svcsp-services-[instance]) requires modify 
permission to the backup file share 
(\\DCSEP01DB\SharePointBackupfile:///\\DCSEP01DB\SharePointBackup)
  *   Ensure that for restore, the services account (svcsp-services-[instance]) 
is temporarily granted bulk import rights on SQL Server which it does not have 
by default.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 5 May 2014 9:47 AM
To: ozMOSS
Subject: Export/Import Managed Metadata

Hi all,

Has anyone had any experience performing this using the import/export 
SPMetaDataWebServicePartitionData functions?

I'm preparing to run an export but am thoroughly confused by the  -Identity 
parameter.

The TechNet 
referencehttp://technet.microsoft.com/en-us/library/ff607847(v=office.15).aspx
 for this function says this should be the ID or Name of the site subscription 
to export.

Online examples say it's the tsid value from the URL of the Term Store Tool.  
This is not the GUID for MMS app but the value of its ManageLink.Url property. 
Is this correct??

I'm wanting to export the entire term store in the hope that this will bring 
across the site-scoped ones as well, which I apparently then have to re-link.

Regards,

Paul

The content of this email is confidential to the intended recipient at the 
email address to which it has been addressed. It may not be disclosed to, or 
used by, anyone other than this addressee, nor may it be copied in any way. If 
received in error, please contact the author and then delete the message from 
your system.
Please note that neither Keller Australia nor the sender accepts any 
responsibility for viruses and it is your responsibility to scan the email and 
attachments (if any).
Visit http://www.keller.com.au/ for more 

RE: Export/Import Managed Metadata

2014-05-04 Thread Paul Culmsee
That's good because I don't remember writing a blog post :)

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 5 May 2014 1:41 PM
To: ozMOSS
Subject: RE: Export/Import Managed Metadata

Hi Paul,

Thanks for that. I came across your blog post on this and read it as part of my 
learning. :)

Both the MMS Id and the TSID produced the same result in my case. I have no 
idea what the real difference between them is.

Following the remaining steps I imported the file without error but the term 
group created at the Site Collection level was missing.

I opened an SPTaxonomySession for the site and could see the Group and the Term 
Sets within. So I just wound up exporting these individually to CSV so that I 
could import them...one at a time...at the destination site.

I'm hoping MS will provide a method to export and import complete Groups really 
soon, or drop support for new groups at the site level. It seems ridiculous to 
have to go through this.

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Culmsee
Sent: Monday, 5 May 2014 12:21 PM
To: ozMOSS
Subject: RE: Export/Import Managed Metadata

Hi Paul

It's the ID of the managed metadata service application.

Below is some documentation I wrote for a client who does not have strong 
PowerShell skills so it's a bit laborious (note the pre-reqs at the end)

PS C:\Users\SP_Admin Get-SPServiceApplication
DisplayName  TypeName Id
---   --
Secure Store Serv... Secure Store Serv... 8a9ad845-241e-40e0-a2cb-c5fa09ddb479
State Service App... State Service833e41ed-9574-4f6b-978b-787a087735e1
Managed Metadata ... Managed Metadata ... 479cd8d7-af32-4f85-adb1-9cdd858ed3e6
Web Analytics Ser... Web Analytics Ser... 4b54f5d4-2148-4cbf-ad24-b1e49b0eb7e5
Search Service Ap... Search Service Ap... a3434173-fc5d-464d-a05c-aeda41d4959f

* Create a PowerShell object bound to the managed metadata service 
application ID.
PS C:\Users\SP_Admin $mms = Get-SPServiceApplication -Identity 
479cd8d7-af32-4f85-adb1-9cdd858ed3e6

* Confirm that the correct service application is selected by 
examining the properties of the object. Confirm the service type is Managed 
Metadata Service
PS C:\Users\SP_Admin $mms.DisplayName
Managed Metadata Service Application
PS C:\Users\sp_admin $mms.TypeName
Managed Metadata Service

* Using PowerShell, determine the ID of the managed metadata 
service application proxy (note the matching service application is marked in 
bold). The GUID listed in the ID column is the important bit
PS C:\temp Get-SPServiceApplicationProxy

DisplayName  TypeName Id
---   --
Business Data Con... Business Data Con... a3237d54-00f9-4ba3-8544-cb020ae1d8b5
State Service App... State Service Proxy  24f87eba-85af-4938-98f4-3002ff0da95b
Managed Metadata ... Managed Metadata ... 373ad4c0-cdd2-4db8-9dd8-a0c5c8d1df41
Secure Store Serv... Secure Store Serv... 7ac50f4f-addc-466e-a695-9a37890058f5
WSS_UsageApplication Usage and Health ... c8de2c82-8ae5-41ab-bf58-9724c48776d5

* Create an object bound to the managed metadata service 
application proxy.
PS C:\Users\SP_Admin $mmp = Get-SPServiceApplicationProxy -Identity 
373ad4c0-cdd2-4db8-9dd8-a0c5c8d1df41

* Confirm that the correct service application proxy is selected by 
examining the properties of the object. Confirm the service type is Managed 
Metadata Service Connection
PS C:\temp $mmp.DisplayName
Managed Metadata Service Application
PS C:\temp $mmp.TypeName
Managed Metadata Service Connection

* Export the current Managed metadata term store to the UNC path 
specified in step 1, utilising the service application object and service 
application proxy object created in steps 3 and 6.
Export-SPMetadataWebServicePartitionData -Identity $mms.id -ServiceProxy $mmp 
-Path \\server\share\termstore.bakfile:///\\server\share\termstore.bak

Also make sure you ensure these pre-requisites:


  *   This method can only be used by an account with local administration 
access to the entire farm (eg AD\svcsp-admin)
  *   The backup of the term store must be a UNC path (eg 
\\dcsep01db\SharePointBackupfile:///\\dcsep01db\SharePointBackup) that 
resides on the SQL Server for the SharePoint farm
  *   The services account (svcsp-services-[instance]) requires modify 
permission to the backup file share 
(\\DCSEP01DB\SharePointBackupfile:///\\DCSEP01DB\SharePointBackup)
  *   Ensure that for restore, the services account (svcsp-services-[instance]) 
is temporarily granted bulk import rights on SQL Server which it does not have 
by default.


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Monday, 5 May 2014 9:47 AM
To: ozMOSS
Subject: Export

RE: Help with troubleshooting

2013-02-20 Thread Paul Culmsee
Do you have a multi-server farm  running across a load balancer by any chance? 
If so, isolate to each WFE and narrow it down. I have seen this sort of quirky 
behaviour with corrupt or out of sync caches on WFE boxes.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Maxine Harwood
Sent: Thursday, 21 February 2013 10:08 AM
To: ozMOSS
Subject: Re: Help with troubleshooting

Uls viewer have the logs have the message about the missing field guid, but 
when u run it again, the message doesn't appear again... It's random when and 
where in the site collection it occurs.

Sent from Max's iPhone

On 21/02/2013, at 9:32 AM, Sezai Komur 
sharepointse...@gmail.commailto:sharepointse...@gmail.com wrote:
What kinds of errors are you seeing in the ULS logs?
Have you tried using ULS Viewer to see the underlying error messages when the 
pages display errors?
http://archive.msdn.microsoft.com/ULSViewer/Release/ProjectReleases.aspx?ReleaseId=3308

Sezai.

On Thu, Feb 21, 2013 at 7:27 AM, Chris Grist 
chris.gr...@beachenergy.com.aumailto:chris.gr...@beachenergy.com.au wrote:
Perhaps take a backup to your test environment and if the same thing appears, 
try running through the database maintenance tasks.

http://technet.microsoft.com/en-us/library/cc262731(v=office.14).aspx

-Original Message-
From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Maxine Harwood
Sent: Thursday, 21 February 2013 9:54 AM
To: ozMOSS
Subject: Re: Help with troubleshooting

I'm not sure where to look for this, the issue is affecting views on multiple 
lists/libraries, some with nintex workflow (no sharepoint workflow) and some 
without. Could this change on one list affect others?

Sent from Max's iPhone

On 21/02/2013, at 8:44 AM, Matthew Cosier 
cos...@gmail.commailto:cos...@gmail.com wrote:

 Sometimes if you change a field from a single line of text to multiple lines 
 of text when a workflow is published, you can get that error.  Do you have 
 any of these? You can try changing the fields temporarily.

 Cheers,
 Matthew Cosier

 Sent from my iPhone

 On 21/02/2013, at 9:21 AM, Maxine Harwood 
 maxinetechg...@gmail.commailto:maxinetechg...@gmail.com wrote:

 Any advice or tips would be appreciated! Getting to the end of my bag of 
 tricks.

 We have had Sharepoint 2010 running and stable for 18 months. Late last 
 week, we started having some random issues in our site collection that 
 include
 *  errors showing views and dvwp. Logs indicate that the site failed to 
 cache the field {various GUIDs}, Refreshing the page (sometimes twice) and 
 the view works again. The same view might open without error next time... 
 There is no consistency on which views across the site will fail
 * attempting to open the item menu results in a message stating that the 
 item has been moved or deleted, refresh the page to try again. As above, 
 refreshing 2-3 times and the item menu will open again.
 * conditional nintex workflows running when the criteria hasn't been met

 Most significantly, there is no apparent similarities between where these 
 occur, different lists, library's, different sites. Across the board issues.

 There were no scheduled server or application changes before the issue 
 started.

 I have tried rebooting, and a Sharepoint repair. I only have the one site 
 collection, but the central admin isn't experiencing any issues. I suspect 
 it's an issue in the content database.

 As this is a production environment, that is still mostly functional (though 
 through a few refreshes) I am planning a course of action to run over the 
 weekend, I would appreciate any suggestions on what I could look at. I am 
 considering exporting the content database, deleting it and then creating a 
 new one before importing, thinking it might be an issue in the content DB. 
 Running out of ideas

 Thanks for your time
 Maxine

 Sent from Max's iPad
 ___
 ozmoss mailing list
 ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss
 ___
 ozmoss mailing list
 ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss
___
ozmoss mailing list
ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss
___
This message is intended only for the use of the addressee.
This email and any attachments are confidential and may
contain legally privileged information or copyright material.

If you are not the intended recipient, you are hereby notified that any use or
dissemination of this communication is strictly prohibited. If you received
this e-mail in error, please notify us immediately by telephone on +61 8 8338
2833 or by return email 

RE: Sp 2010 - Kerberos

2013-02-10 Thread Paul Culmsee
Hi

You need to register the SPN yes, and then you need to delegate to it from any 
account that might access it. That means the claims to windows token account, 
service account and web app account.

Regards

Paul

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ajay
Sent: Monday, 11 February 2013 5:56 AM
To: ozMOSS
Subject: Sp 2010 - Kerberos

Hi Guys,

I have to set up Kerberos for BI stuff like Excel Services, Performance Point, 
SSRS and Analysis services

I have downloaded the 246 page guide from Microsoft.. which looks good.

I have one quick question... do we need to enable Kerberos for Sql Server also?

like the following
SetSPN -S MSSQLSVC/MySQLCluster.vmlab.local:1433 vmlab\svcSQL

I think as Sql Server is not delegating credentials than it does not need to be 
Kerberos enabled or does it need to be.

Cheers
Ajay





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


Innovation Games workshop with Andrew Woodward in Perth in October

2012-09-16 Thread Paul Culmsee
Hi all

It was asked on this list a while back about getting Andrew Woodward over to 
Australia to run an innovation games workshop. I'm very pleased that this is 
going to happen on October 25-26 in Perth. Also, in that same week I will be 
running my introductory Dialogue Mapping course (October 22-23). Andrew, apart 
from his well-known SharePoint competencies is one of a handful of qualified 
Innovation Games instructors in the world.

Before my eastern states brethren ask, sorry but this is a Perth event only. 
Both the Eagles and Dockers aren't in the AFL finals now, so it's fair that the 
west gets something to cheer us up! :) So this does mean a trip out west if you 
wish to attend, but much fun and frivolity is guaranteed. It is a once-off 
event and it should be a great week actually.

Please register your interest via this site for innovation games: 
http://igaus-eventful.eventbrite.com.au/  and this site 
http://imperth.eventbrite.com.au/ for the issue mapping course.

The events will be held at the Australian Institute of Management WA and an 
official registration site will be up soon.

regards

Paul Culmsee | Seven Sigma Business Solutions | Tel: +61 8 9355 1500 | Mob: +61 
410 533 585

Read my Bookhttp://www.hereticsguidebooks.com/ - Follow me on 
Twitterhttp://www.twitter.com/paulculmsee - Read my 
Bloghttp://www.cleverworkarounds.com/

Join Seven Sigma at the SharePoint Governance and Information Architecture 
Master Classeshttp://www.spgovia.com/ and the Issue Mapping Master Class 
http://www.issuemappingclass.com/ around the world in 2011 and 2012

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


RE: Mystery 400s

2012-05-01 Thread Paul Culmsee
I have seen this sort of symptom when Kerberos MaxTokenSize is an issue. But 
you usually have to be in a very large number of groups to trigger it

http://support.microsoft.com/kb/327825



From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Dylan Tusler
Sent: Tuesday, 1 May 2012 8:28 AM
To: 'ozMOSS'
Subject: RE: Mystery 400s

I've removed myself from about half a dozen AD groups that I didn't think I 
need to be in, and since then I haven't experienced this issue. Still early 
days...


Dylan Tusler
Team Lead Data, Development  Integration
ICTS Branch
Sunshine Coast Regional Council
P 07 5420 8002
E 
dylan.tus...@sunshinecoast.qld.gov.aumailto:dylan.tus...@sunshinecoast.qld.gov.au
A Locked Bag 72, Sunshine Coast Mail Centre QLD 4560
W www.sunshinecoast.qld.gov.auhttp://www.sunshinecoast.qld.gov.au/

Please consider the sanity of others before replying to replies to replies to 
this email. Sometimes it just makes more sense to pick up the phone.



From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Dylan Tusler
Sent: Tuesday, 1 May 2012 10:21
To: 'ozMOSS'
Subject: RE: Mystery 400s
No, it's a single server.


Dylan Tusler
Team Lead Data, Development  Integration
ICTS Branch
Sunshine Coast Regional Council
P 07 5420 8002
E 
dylan.tus...@sunshinecoast.qld.gov.aumailto:dylan.tus...@sunshinecoast.qld.gov.au
A Locked Bag 72, Sunshine Coast Mail Centre QLD 4560
W www.sunshinecoast.qld.gov.auhttp://www.sunshinecoast.qld.gov.au/

Please consider the sanity of others before replying to replies to replies to 
this email. Sometimes it just makes more sense to pick up the phone.



From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Matthew Cosier
Sent: Tuesday, 1 May 2012 9:59
To: ozMOSS
Cc: ozMOSS
Subject: Re: Mystery 400s
Are your front ends load balanced? Or is it a single server deployment? Might 
want to check the health of all front end servers in the cluster, might be 
failing on one which is why it seems sporadic.

Sent from my iPhone

On 30/04/2012, at 5:07 PM, Dylan Tusler 
dylan.tus...@sunshinecoast.qld.gov.aumailto:dylan.tus...@sunshinecoast.qld.gov.au
 wrote:
I'm experimenting with a MySite subsite (it's a social meeting site, since you 
asked) in Sharepoint 2010.

I keep getting sporadic 400 errors, usually associated with popup screens. If 
you post a discussion board item, for instance, and click OK, error 400. Update 
a web part settings, error 400. Edit user permissions on the site, click OK, 
error 400.

If I close my browser and reopen it, they seem to abate for a bit, but they 
always come back.

Any idea what's going on? Is this some kind of Kerberos thing? I'm really 
looking for a way to start troubleshooting this, so any ideas welcome.

Cheers,

Dylan Tusler
Team Lead Data, Development  Integration
ICTS Branch
Sunshine Coast Regional Council
P 07 5420 8002
E 
dylan.tus...@sunshinecoast.qld.gov.aumailto:dylan.tus...@sunshinecoast.qld.gov.au
A Locked Bag 72, Sunshine Coast Mail Centre QLD 4560
W www.sunshinecoast.qld.gov.auhttp://www.sunshinecoast.qld.gov.au/

Please consider the sanity of others before replying to replies to replies to 
this email. Sometimes it just makes more sense to pick up the phone.

[Sunshine Coast Council]http://www.sunshinecoast.qld.gov.au/

[Sunshine Coast Council is on 
Facebook]https://www.facebook.com/SunshineCoastCouncil__ __
To find out more about the Sunshine Coast Council, visit your local office at 
Caloundra, Maroochydore, Nambour or Tewantin or visit us online at 
www.sunshinecoast.qld.gov.auhttp://www.sunshinecoast.qld.gov.au. If 
correspondence includes personal information, please refer to Council's Privacy 
Policyhttp://www.sunshinecoast.qld.gov.au/sitePage.cfm?code=disclaimer

This email and any attachments are confidential and only for the use of the 
addressee. If you have received this email in error you are requested to notify 
the sender by return email or contact council on 07 5475 7272, and are 
prohibited from forwarding, printing, copying or using it in anyway, in whole 
or part. Please note that some council staff utilise Blackberry devices, which 
results in information being transmitted overseas prior to delivery of any 
communication to the device. In sending an email to Council you are agreeing 
that the content of your email may be transmitted overseas.
Any views expressed in this email are the author's, except where the email 
makes it clear otherwise. The unauthorised publication of an email and any 
attachments generated for the official functions of council is strictly 
prohibited. Please note that council is subject to the Right to Information Act 
2009 (Qld) and Information Privacy Act 2009 (Qld).

RE: Mystery 400s

2012-04-30 Thread Paul Culmsee
Hi

I just cured a somewhat similar problem today where someone had accidentally 
changed NTFS permissions on the user profile folders on a web front end server. 
The behaviour I saw was quite similar. The problem was logged in the ULS logs 
(access denied), but it wasn't specific on which folders were causing the drama 
(duh to whoever decided to log an access denied in ULS logs but not specify 
the path!).

Anyway I used procmon to pin the specific location down and the problem was 
solved.

But what specific error number did you get? I was getting 403's

Regards

Paul

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Dylan Tusler
Sent: Monday, 30 April 2012 3:07 PM
To: 'ozMOSS'
Subject: Mystery 400s

I'm experimenting with a MySite subsite (it's a social meeting site, since you 
asked) in Sharepoint 2010.

I keep getting sporadic 400 errors, usually associated with popup screens. If 
you post a discussion board item, for instance, and click OK, error 400. Update 
a web part settings, error 400. Edit user permissions on the site, click OK, 
error 400.

If I close my browser and reopen it, they seem to abate for a bit, but they 
always come back.

Any idea what's going on? Is this some kind of Kerberos thing? I'm really 
looking for a way to start troubleshooting this, so any ideas welcome.

Cheers,

Dylan Tusler
Team Lead Data, Development  Integration
ICTS Branch
Sunshine Coast Regional Council
P 07 5420 8002
E 
dylan.tus...@sunshinecoast.qld.gov.aumailto:dylan.tus...@sunshinecoast.qld.gov.au
A Locked Bag 72, Sunshine Coast Mail Centre QLD 4560
W www.sunshinecoast.qld.gov.auhttp://www.sunshinecoast.qld.gov.au/

Please consider the sanity of others before replying to replies to replies to 
this email. Sometimes it just makes more sense to pick up the phone.

[Sunshine Coast Council]http://www.sunshinecoast.qld.gov.au/

[Sunshine Coast Council is on 
Facebook]https://www.facebook.com/SunshineCoastCouncil__ __
To find out more about the Sunshine Coast Council, visit your local office at 
Caloundra, Maroochydore, Nambour or Tewantin or visit us online at 
www.sunshinecoast.qld.gov.au.http://www.sunshinecoast.qld.gov.au/ If 
correspondence includes personal information, please refer to Council's Privacy 
Policyhttp://www.sunshinecoast.qld.gov.au/sitePage.cfm?code=disclaimer

This email and any attachments are confidential and only for the use of the 
addressee. If you have received this email in error you are requested to notify 
the sender by return email or contact council on 07 5475 7272, and are 
prohibited from forwarding, printing, copying or using it in anyway, in whole 
or part. Please note that some council staff utilise Blackberry devices, which 
results in information being transmitted overseas prior to delivery of any 
communication to the device. In sending an email to Council you are agreeing 
that the content of your email may be transmitted overseas.
Any views expressed in this email are the author's, except where the email 
makes it clear otherwise. The unauthorised publication of an email and any 
attachments generated for the official functions of council is strictly 
prohibited. Please note that council is subject to the Right to Information Act 
2009 (Qld) and Information Privacy Act 2009 (Qld).
___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


Doing a SharePoint caveats talk soon - send me your good'uns

2012-01-18 Thread Paul Culmsee
Hi all
Michal Pisarek and I are doing a talk in March about various SharePoint 
caveats. The audience is not really tech, but the purpose of the talk is to 
save people the pain of proceeding on an untested assumption and then finding 
out far too late that the logical edifice they have built has come crashing 
down.
But it seems that there are around 2-3 common gotchas with most SharePoint 
components - and the newer the component the more the gotchas.
Some of the big ones people know about are things like managed metadata support 
for InfoPath/SharePoint workspace. So if you have any caveats that has nailed 
you, would you mind sharing them with this list or mailing them to me? I'm sure 
each of us has a couple of good ones :)
What's the biggest issue/caveat that's nailed you?
Regards
Paul
___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Doing a SharePoint caveats talk soon - send me your good'uns

2012-01-18 Thread Paul Culmsee
Thanks guys
Remember I have to frame this to a business audience. What was the context 
around the ribbon issue? Was it simply to address branding requirement?
Regards
Paul
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Thursday, 19 January 2012 9:52 AM
To: ozMOSS
Subject: RE: Doing a SharePoint caveats talk soon - send me your good'uns

Oh hell yes. +1 to the ribbon.
I'd say the biggest issue I had was when doing a database attach upgrade from 
2007 to 2010, and having the installation somehow maintaining references to the 
page layouts on the old server. It happened 4 out of 5 times. I had to go in, 
export the file default.aspx file, modify it, and re-import it for it to work 
correctly.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Paul Noone
Sent: Thursday, 19 January 2012 12:43 PM
To: ozMOSS
Subject: RE: Doing a SharePoint caveats talk soon - send me your good'uns

Undocking the ribbon? :)
From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Paul Culmsee
Sent: Thursday, 19 January 2012 12:33 PM
To: ozMOSS
Subject: Doing a SharePoint caveats talk soon - send me your good'uns

Hi all
Michal Pisarek and I are doing a talk in March about various SharePoint 
caveats. The audience is not really tech, but the purpose of the talk is to 
save people the pain of proceeding on an untested assumption and then finding 
out far too late that the logical edifice they have built has come crashing 
down.
But it seems that there are around 2-3 common gotchas with most SharePoint 
components - and the newer the component the more the gotchas.
Some of the big ones people know about are things like managed metadata support 
for InfoPath/SharePoint workspace. So if you have any caveats that has nailed 
you, would you mind sharing them with this list or mailing them to me? I'm sure 
each of us has a couple of good ones :)
What's the biggest issue/caveat that's nailed you?
Regards
Paul


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


Heretic's Guide to Best Practices is now out...

2011-12-13 Thread Paul Culmsee
Hi all

Chris's mention of Andrew and Ant's excellent Innovations Games reminded me 
something that I forgot to mention to this list.

My first book is now out... The catch is, it's not a SharePoint book at all. 
Nevertheless it is all about collaboration in the face of complexity and I hope 
the list will forgive me for mentioning this Christmas stocking filter :-)

http://www.amazon.com/Heretics-Guide-Best-Practices-Organisations/dp/1462058531

A Kindle version will be out soon too.

My co-author Kailash has a page up with some reviewer quotes: 
http://eight2late.wordpress.com/2011/12/06/book-announcement-the-heretics-guide-to-best-practices/.
 A website and more co-ordinated promotion is to come...

Regards

Paul


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


RE: Heretic's Guide to Best Practices is now out...

2011-12-13 Thread Paul Culmsee
Yeah mate that can be arranged.

Can you send me the details through of how many and where? Otherwise I will ask 
my business partner, Chris Tomich who is on the committee for the Perth user 
group. Presumably he has access to the this info?

Regards

Paul

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ishai Sagi
Sent: Wednesday, 14 December 2011 6:44 AM
To: ozMOSS
Subject: RE: Heretic's Guide to Best Practices is now out...

Paul - any chance of getting promotional copies to the assorted Australian SP 
user groups? I think all SPUG members would like a copy, and promoting it 
through us may work for you?
I know I did it with my book - and I think purchases in AU are higher than 
usual thanks to that.


[Description: Description: Description: C:\Users\Brian\Pictures\EXD 
Logos\Extelligent logo no text.jpg]Ishai Sagi | Solutions Architect
0488 789 786 | is...@exd.com.aumailto:is...@exd.com.au | 
www.sharepoint-tips.comhttp://www.sharepoint-tips.com/ | 
@ishaisagihttp://twitter.com/ishaisagi

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Paul Culmsee
Sent: Tuesday, 13 December 2011 7:33 PM
To: ozMOSS
Subject: Heretic's Guide to Best Practices is now out...

Hi all

Chris's mention of Andrew and Ant's excellent Innovations Games reminded me 
something that I forgot to mention to this list.

My first book is now out... The catch is, it's not a SharePoint book at all. 
Nevertheless it is all about collaboration in the face of complexity and I hope 
the list will forgive me for mentioning this Christmas stocking filter :-)

http://www.amazon.com/Heretics-Guide-Best-Practices-Organisations/dp/1462058531

A Kindle version will be out soon too.

My co-author Kailash has a page up with some reviewer quotes: 
http://eight2late.wordpress.com/2011/12/06/book-announcement-the-heretics-guide-to-best-practices/.
 A website and more co-ordinated promotion is to come...

Regards

Paul


inline: image001.jpginline: image003.jpg___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: 2010 service account warning

2011-08-23 Thread Paul Culmsee
Hi Paul

I always run things in least privilege configuration and the only time I run
the farm account as an admin is when I am:

1.   Provisioning the user profile service

2.   Applying a service pack or cumulative update

After install I always revoke the local administrators right. The effect is
a couple of DCOM fixes need to be made but for most installs that usually is
about it. For a dev box I think its really important to run it this way,
because otherwise something that might work perfectly fine in dev may not
work when deployed to prod which is more likely to be least-privilege.

regards

Paul

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Paul Noone
Sent: Tuesday, 23 August 2011 11:24 AM
To: ozMOSS (ozmoss@ozmoss.com)
Subject: 2010 service account warning

 

Hi guys,

We've just installed our 2010 dev farm. All we have done is provision CA, no
services as yet.

We are receiving the following warning:

Accounts used by application pools or service identities are in the local
machine Administrators group.

The more I look into this, the more perplexed I become. The opinions on
whether the SP_Farm account should be in this group appear divided. But the
fact is that it has to be in order to provision and install services.

So what's the opinion of the list? Do you remove it after provisioning, or
do you leave it where it is??

I'm also seeing a Missing server side dependencies error. I have activated
the SharePoint Server Standard Site Features and  SharePoint Server
Enterprise Site Features for CA. I then re-analysed this rule but it's still
there.

Some online references suggest enabling the Search Server Web Parts parts
but there's no feature matching that name.

Could these messages be appearing simply because we've yet to run the Farm
Config wizard?

Regards,

Paul

 

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


RE: Off topic: BDC connecting to asset management system

2011-08-08 Thread Paul Culmsee
Buy Brett Lonsdale's book on the BDC - it's the definitive guide. If you
were in Perth I'd give you one as I have a spare :-)

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Marko Salonen
Sent: Monday, 8 August 2011 1:16 PM
To: ozMOSS
Subject: Off topic: BDC connecting to asset management system

 

Hi 


I am just wondering if anyone has ever worked on connecting MOSS 2007 to an
asset management system like Hansen 8? 

I haven't worked with a BDC before so a lot to learn! 

 

Cheers!

 

Marko

MORETON BAY REGIONAL COUNCIL (MBRC) PRIVILEGED PRIVATE AND CONFIDENTIAL -
The information contained in this e-mail and any attachments is confidential
and may attract legal privilege. It is only intended for the named
recipient/s. If you are not a named recipient any use of this information
including copying, distribution and publication is prohibited.
Confidentiality and legal privilege are not waived or lost as a result of
mistaken or erroneous delivery. If you are not a named recipient, please
delete all copies immediately and contact the sender to advise of the error.

It is recommended that you scan this email and any attachment before
opening. MBRC does not accept any responsibility or liability for loss or
damage arising directly or indirectly from opening this email, opening any
attachments or any communication errors.

The views expressed in this email and any attachments are the personal views
of the sender unless otherwise stated.

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


RE: Search Crawl stuck in Stopping State

2011-08-06 Thread Paul Culmsee
I've seen this before. I didn't reply earlier because I hit it with WSS3
search, but that error message is telling. maybe this might help or help you
narrow things down.

 

http://www.cleverworkarounds.com/2009/08/03/troubleshooting-spsearch-and-goo
d-practices-for-moving-large-files/

 

 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Nigel Witherdin
Sent: Friday, 5 August 2011 7:50 AM
To: OzMoss
Subject: RE: Search Crawl stuck in Stopping State

 

Hi,

 

The ULS show this error relating to search (though it seems to be query
related, not crawl):

 

Caught exception while retrying Tripoli component: 0x80070002
ddb9e893-6060-46a3-8b12-a7be0e432581

CTripoliConnectionWrapper::SignalError with 0x80070002.
ddb9e893-6060-46a3-8b12-a7be0e432581

Error 0x80070002 from component SVMSP003PR on machine
82c100d7-f0f0-4732-b5a6-aef8a7902756-query-3.
ddb9e893-6060-46a3-8b12-a7be0e432581

_RLokErrorKind In: 0x80070002.  ddb9e893-6060-46a3-8b12-a7be0e432581

_RLokErrorKind Out: 0x80070002, Type: 2.
ddb9e893-6060-46a3-8b12-a7be0e432581

Retry of query component 82c100d7-f0f0-4732-b5a6-aef8a7902756-query-3 has
failed with error: The system cannot find the file specified.   0x80070002.
It will be retried again in 64 seconds.
ddb9e893-6060-46a3-8b12-a7be0e432581

 

Cheers,

 

Nigel

 

  _  

From: akhanna...@gmail.com
Date: Thu, 4 Aug 2011 21:44:31 +1200
Subject: Re: Search Crawl stuck in Stopping State
To: ozmoss@ozmoss.com

Did you find any pointer to possible cause of this in the ULS logs or
Windows Log.



On Thu, Aug 4, 2011 at 3:16 PM, Nigel Witherdin
nigel_wither...@hotmail.com wrote:

Probably as a last resort

 

Cheers, 

  _  

From: jos...@beyondurban.com
To: ozmoss@ozmoss.com
Date: Wed, 3 Aug 2011 19:38:58 -0700


Subject: RE: Search Crawl stuck in Stopping State

Seen this a few time unfortunately.
 
The only way I have been able to resolve this is to delete the search
service app. Is this an option?
 
Cheers
 
Josh
 
 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Nigel Witherdin
Sent: Thursday, 4 August 2011 11:32 AM
To: OzMoss
Subject: RE: Search Crawl stuck in Stopping State

 

Hi Ken,

 

I have tried restarting the service from the services.msc snap-in on all
boxes (and confirmed that this did actually remove the mssearch.exe
process), and have also tried restarting the timer service on all boxes, but
this did not help

 

Cheers,

 

Nigel

  _  

From: lied...@hotmail.com
To: ozmoss@ozmoss.com
Subject: RE: Search Crawl stuck in Stopping State
Date: Thu, 4 Aug 2011 10:58:01 +0930

Hi Nigel,

  Have you tried to restart the search service?

Ken

  _  

From: nigel_wither...@hotmail.com
To: ozmoss@ozmoss.com
Subject: Search Crawl stuck in Stopping State
Date: Thu, 4 Aug 2011 01:11:52 +

Hi All,
 
At a customer site where the environment is SP 2010 using Enterprise search,
the crawl of the Local SharePoint site content source is stuck in a state
of Stopping.
 
Have attempted to force the crawl to stop by using the PowerShell commands:
 
$searchapp = Get-SPEnterpriseSearchServiceApplication Search Service
Application  
$contentsource = Get-SPEnterpriseSearchCrawlContentSource Local SharePoint
Sites -SearchApplication $searchapp
$contentsource.StopCrawl()
 
However this does not appear to have any affect. Also tried the STSADM
command:
 
Stsadm -o osearch -action stop
 
But this gives the response:
 
'stop' action failed. Additional information: Invalid search service
unprovisioning: application 'Search Service Application' still has a ready
component '82c100d7-f0f0-4732-b5a6-aef8a7902756-crawl-1' on server
'SVMSP005PR'.
 
Not sure what is the best way to progress - need to stop the crawl so I can
reconfigure the content source, reset the index and then recrawl the corpus.
Any advice would be greatly appreciated.
 
Cheers,
 
Nigel


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


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


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


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



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

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


RE: sharepoint search server express 2010

2011-06-14 Thread Paul Culmsee
Yeah my understanding is that you can add a WFE, but the search service will
only ever be one server. Assuming that's true, and given that many orgs who
would invest in a multi-server farm would likely buy standard, there is
little disincentive to not to Search server express. I have foundation
clients running it (and used the previous version also)

 

One warning - a client of mine really did a number on his farm with a
botched install of Office Web Apps on it. 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Brian Farnhill
Sent: Tuesday, 14 June 2011 9:25 AM
To: ozMOSS
Subject: RE: sharepoint search server express 2010

 

I believe you can still separate SQL, the limitation is around having only a
single application server. Check out this document on TechNet for more info
on the differences and choosing between the full and express versions of
Search Server 

 

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

 


Description: Description: avatarpic-l

Brian Farnhill
Solutions Architect, Extelligent Design | SharePoint Server MVP
phone: 0408 289 303 | twitter:  http://twitter.com/BrianFarnhill
@BrianFarnhill | blog:  http://blog.brianfarnhill.com/
blog.brianfarnhill.com | xbox:
http://live.xbox.com/en-AU/MyXbox/Profile?gamertag=Noble+Downfall Noble
Downfall

 

 

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


RE: WSS 3.0 SQL Express 4GB limit

2011-02-07 Thread Paul Culmsee
Hiya

 

Out of interest, who is using RBS? Coming from enterprise DMS systems before
working with SharePoint, I have long held the view that SQL was not the
place for documents. SharePoint people often find the concept foreign but
it's the prevailing wisdom in many other ECM systems out there.

 

Nevertheless, I haven't taken the plunge yet but I have a client in mind as
part of a soon to happen upgrade to 2010.  Has it been solid? These days I
am the kind of guy who like grandpa, laments increased complexity and yearns
for the simplicity of the past. Has anybody had negative experiences?

 

Regards

 

Paul

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Tom Bizannes
Sent: Tuesday, 8 February 2011 6:36 AM
To: ozMOSS
Subject: RE: WSS 3.0 SQL Express 4GB limit

 

Uzma,

 

Why not upgrade to SharePoint Foundation and use remote blob storage?

 

Then your database will not be so big etc.

 

Regards,

Tom Bizannes

SharePoint and SQL Specialist

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Uzma Naz
Sent: Monday, 7 February 2011 10:38 PM
To: ozmoss@ozmoss.com
Subject: WSS 3.0 SQL Express 4GB limit

 

Hi there, 
 
I was wondering.. is it possible to create a new content database to
generate a further 4GB of space within a stand alone, WSS 3.0 environment
with SQL Express installed? 
 
Uzma

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


RE: NothingButSharePoint.com

2010-12-07 Thread Paul Culmsee
Hi Jeremy

 

Very impressive indeed. 

 

The learning that you would have gone through to create this would have been
immense. A very impressive piece of collaborative work and I still shake my
head at how you managed to keep up the mental bandwidth to do it on top of
your day job.

 

Regards

 

Paul

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Jeremy Thake
Sent: Tuesday, 7 December 2010 3:51 PM
To: ozMOSS
Subject: NothingButSharePoint.com

 

Just a little plug for a new SharePoint community site to amalgamate
SharePointDevWiki.com, EndUserSharePoint.com and SharePointJoel.com built on
SharePoint 2010 that we released last night.

 

Please check it out and let me know what you think:

http://www.nothingbutsharepoint.com

 

There is an article I wrote on what we've done so far in building this.

https://www.nothingbutsharepoint.com/sites/devwiki/articles/Pages/How-we-did
-The-Beginning.aspx

 

Cheers,

 

Jeremy Thake

National SharePoint Solution Architect at CSG Australia

m: +61 400 767 022 - b: wss.made4the.net - t: @jthake - GMT + 8

Co-Founder of NothingButSharePoint.com

 

Description: Description: Description: Description: Description: See full
size image

 

 

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


RE: The site template was not provisioned successfully. Delete this site collection in Central Administration, and then create a new site collection.'.

2010-09-15 Thread Paul Culmsee
Hi Ken

 

I hit a similar issue to this at a site and it turned out some naughty
changes had been made to web.config file in C:\Program Files\Common
Files\Microsoft Shared\Web Server Extensions\14\CONFIG. I had to literally
remove all safecontrol entries and add back until I narrowed it down. 

 

Detail here:
http://www.cleverworkarounds.com/2010/08/17/why-me-web-part-errors-on-new-we
b-applications/

 

Hope its relevant

 

Regards

 

Paul

 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of ken zheng
Sent: Thursday, 16 September 2010 12:48 PM
To: ozmoss@ozmoss.com
Subject: The site template was not provisioned successfully. Delete this
site collection in Central Administration, and then create a new site
collection.'.

 

Hi All:

   I got this error when try to create a site collection using
Collaboration Portal template and it is fine to create a site collection
by using Team Site template.

  The details of the error from log was:

Exception was: 'Microsoft.SharePoint.WebPartPages.WebPartPageUserException:
This page has encountered a critical error. Contact your system
administrator if this problem persists. at
Microsoft.SharePoint.ApplicationRuntime.SafeControls.RethrowExceptionIfNeede
d() at
Microsoft.SharePoint.ApplicationRuntime.SafeControls.IsSafeControl(Type
type, String unsafeErrorMessage) at
Microsoft.SharePoint.WebPartPages.TypeCache.get_Item(Type type) at
Microsoft.SharePoint.WebPartPages.WebPart.WriteXmlGlobal(Boolean
disableSafeControlsCheck) at
Microsoft.SharePoint.WebPartPages.BinaryWebPartSerializer.Serialize(Personal
izationScope scope) at
Microsoft.SharePoint.WebPartPages.BinaryWebPartSerializer.get_Links() at
Microsoft.SharePoint.WebPartPages.SPWebPartManager.AddWebPartToStore(WebPart
webPart, Int32 viewId, String viewGuid

I guess the problem is one of the safer web part missing, but just wonder
how could I know which one and anyway to avoid the error.

Cheers

Ken

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


RE: anybody willing to co-present on NZ SharePoint Conference June 9-10?!

2010-03-05 Thread Paul Culmsee
Does this count as business? J

 

http://www.cleverworkarounds.com/2010/02/22/sharepoint-webcasts-reporting-se
rvices-for-the-really-really-good-looking/

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Michael Nemtsev
Sent: Thursday, 4 March 2010 8:23 PM
To: 'ozMOSS'
Subject: anybody willing to co-present on NZ SharePoint Conference June
9-10?!
Importance: High

 

Hello,

 

Urgently looking for the co-presenter on topic of Reporting Services and
Performance Point in SharePoint 2010 who is willing to share the stage at

SharePoint Conference in NZ June 9-10 http://www.sharepointconference.co.nz/

 

Have a confirmed topic, but need somebody else to join to present abt
business area (mine stuff is technical)

 

WBR,

Michael Nemtsev, Microsoft MVP

 

http://www.sharepoint-sandbox.com http://www.sharepoint-sandbox.com/   

http://msmvps.com/blogs/laflour 

 

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


Come west - SharePoint 2010 bootcamps in perth

2010-02-15 Thread Paul Culmsee
Hiya 

 

* blatant plug alert *

 

I met Steve Smith of Combined Knowledge last year in New Zealand. He's been
busy doing 2010 training for Microsoft staff all around the place. I asked
him offhand to run that same SP2010 Dev and ITPro sessions in Perth and he
accepted. As a result, Perth will host the first Combined Knowledge Sp2010
bootcamps and for the first time since federation itself, Perth gets to host
something first! :-)

 

So I am putting the call out to you eastern stater's to do what us poor old
west aussies have always had to do. Get on a plane! If you want to be part
of the first CK bootcamps to be held in Australia for SP2010 then take a
look at the details I have provided below.

 

http://www.sevensigma.com.au/2010/02/07/first-ever-sharepoint-2010-training-
courses-2/

 

regards

 

Paul

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


RE: The SharePoint + Domain Controller situation

2010-02-05 Thread Paul Culmsee
I had a client who had SharePoint on a prod DC and I had to go through the
process of getting it off. This old post has some nuggets from the
experience and perhaps offers some insights into problems it can cause. 

Despite the post being about a prod install, it's probably handy info to
know...

http://www.cleverworkarounds.com/2008/09/16/sometimes-microsoft-bashing-is-j
ustified/



-Original Message-
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Michael Nemtsev
Sent: Friday, 5 February 2010 4:06 PM
To: 'ozMOSS'
Subject: RE: The SharePoint + Domain Controller situation

There is nothing bad, except that DC role turns off HDD caching to protect
AD data.
It leads to the performance degradation to work with the HDD. 
It's not an issue for the SharePoint because it's not drive intensive system
and it uses SQL server (RAM) most of the time

The bad situation is when you consider using DC + SharePoint on development
station (VS and other tools) - performance degrade is very visible in this
case 


WBR,
Michael Nemtsev, Microsoft MVP

http://www.sharepoint-sandbox.com  
http://msmvps.com/blogs/laflour 


-Original Message-
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Joseph Clark
Sent: Friday, 5 February 2010 4:40 PM
To: ozMOSS
Subject: The SharePoint + Domain Controller situation

Hi List!

As a fairly new SharePoint developer, I've seen anecdotal references all 
over the Internet about how installing SharePoint and the Domain 
Controller server role on the same server is a one-way ticket to 
disaster town.

What I am yet to discover is *why* this is bad? What problems does it cause?

I'm trying to setup some nice clean virtual machine images for my 
development environment and was wondering what's the ideal setup?  
Should I run my dev environment SharePoint server just using local 
accounts? Is it OK to have the DC on the same computer in a controlled 
development environment? Should I run an additional virtual machine to 
act as the domain controller?

All advice/suggestions appreciated :-)

Cheers,
Joe.


-- 
Register now for Atlassian Summit 2010, June 9-11
http://summit.atlassian.com

Joseph Clark
.NET Developer

Atlassian
+61 422 812 044 mobile
173-185 Sussex St.
Sydney, NSW
Australia


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

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

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


RE: CQWP in 2010

2010-01-27 Thread Paul Culmsee
Thats an architectural limitation of content databases. When you think about
it, crossing site collections is actually quite inefficient because its two
separate underlying SQL databases. I'd be very interested indeed just to see
how expensive SDK based cross site collection queries are at a DB level. Ie
slap on the lightning conductor web part, pull some data and to a sql trace.
Perhaps the numbers have been crunched somewhere - I've not gone looking.

 

Regards

 

Paul

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Jason Taylor
Sent: Thursday, 28 January 2010 1:36 PM
To: ozMOSS
Subject: RE: CQWP in 2010

 

Looking at the query scope settings they look exactly the same as 2007,
allowing only site collection, sites  sub-sites or a list. Unless there is
something under the hood it doesn't look like you can.

 

Cheers,

 

Jason Taylor

SAGE Automation

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Paul Noone
Sent: Thursday, 28 January 2010 10:40 AM
To: ozMOSS
Subject: CQWP in 2010

 

Can anyone confirm whether the Content Query Web Part in 2010 has been
enhanced to allow cross-site querying?

 

Regards,

Paul

Online Developer, ICT
CEO Sydney

 


Winner of a National Australian Human Resources Institute Award and
Australian Engineering Excellence Awards 2008 'Presidents Prize'

  _  

Disclaimer: The information contained in this e-mail is intended only for
the use of the person(s) to whom it is addressed and may be confidential or
contain legally privileged information. If you are not the intended
recipient you are hereby notified that any perusal, use, distribution,
copying, modification or disclosure is strictly prohibited. If you have
received this e-mail in error please immediately advise us by return e-mail
and delete the document without making a copy. No warranty is made that any
attachments are free from viruses. It is the recipient's responsibility to
establish its own protection against viruses and other damage.

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


Free web part for the Copenhagen conference

2009-12-15 Thread Paul Culmsee
Hiya

 

I hope the list won't mind this small plug.. we have been doing some
interesting work lately in a non SharePoint (but related) collaboration
discipline and through that, embarked in a new initiative that includes
releasing a free web part for any organisations who might be interested in
following what's happening.

 

http://www.copenhagensummitmap.org/

 

The above site was the brainchild of my colleague Chris Tomich, who would be
known to some as an occasional contributor to this list. He recognised the
importance of the Copenhagen summit in terms of a massive worldwide
collaboration event on a very complex problem, and hit upon the idea of
pooling the expertise of some sense-making practitioners around the world to
create a living view of the conference as it unfolds. The intention is to
build a rich map of information taken from a variety of sources including
live/delayed web casts of the conference and any other materials made
available from the conference. The process of building the maps aims to be
unbiased and all information is considered suitable content for the maps.

 

This is essentially a wiki on steroids crossed between a debate tool. It
allows people to rapidly understand the issues of the debate via visual
exploration, as opposed to viewing a bunch of web casts or reading 50-100
page discussion papers. By placing this webpart somewhere on your
SharePonint portals, you offer your colleagues a different glimpse of what
is going on in Denmark.

 

I also blogged
http://www.cleverworkarounds.com/2009/12/14/sharepoint-debategraph-and-cope
nhagen-2009-collaboration-on-a-global-scale/  about it the other day, with
more detail and some screencasts to further convey the idea.

 

Thanks

 

Paul Culmsee

http://www.cleverworkarounds.com/2009/12/14/sharepoint-debategraph-and-copen
hagen-2009-collaboration-on-a-global-scale/

 

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


RE: Help..InfoPath and UserProfileService

2009-11-19 Thread Paul Culmsee
You also didn't mention (the the groups benefit we are troubleshooting over
MSN), that hitting the webservice with the browser lists all the methods
just fine whether on the server locally or from the same client.

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Tommy Segoro
Sent: Thursday, 19 November 2009 4:21 PM
To: ozMOSS
Subject: RE: Help..InfoPath and UserProfileService

 

Hi everyone,

 

I've run Proc Mon and no access denied there L

 

Client has added the URLs as Trusted sites since ages ago.

 

I've turned off proxy and still no luck. I even give EVERYONE access to 12
folder and sub-folders/files and still no luck...

 

I even tried to  turn on Failure logon audit on client and yet no error
message there...

 

I'm going crazy here..I really can't check anything else. The only thing
that I suspect is a corrupted IIS meta base or something.

 

Hmphh...

Tommy

 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Matthew Cosier
Sent: Thursday, 19 November 2009 4:14 PM
To: ozMOSS
Subject: Re: Help..InfoPath and UserProfileService

 

Yeah that could be it as well, ACLs on the directory.

 

Tommy: If none of this works, can you please verify that you can hit the web
service locally on the prod box within internet explorer (being locally, you
should get the option to execute the service as well, see what happens).  If
it works locally, you're definitely looking at some kind of security issue
between the client and the server - there's a few options here, but let us
know!

 

Matthew Cosier

On Thu, Nov 19, 2009 at 7:11 PM, Sezai Komur sharepointse...@gmail.com
wrote:

Have a look at the file and folder permissions in prod, there's a chance
they might be different to test, thus causing the auth popup. Maybe try
using Process Monitor in prod to see what's causing the auth popup. 

see:
http://weblogs.asp.net/steveschofield/archive/2008/03/07/detecting-permissio
n-issues-using-auditing-and-process-monitor.aspx 


Also - what versions of IIS are setup in test and prod?

 

On Thu, Nov 19, 2009 at 3:45 PM, Tommy Segoro tommy.seg...@l7.com.au
wrote:

Paul,

 

I'm connecting at site level. Form template is published at root site
collection level and it also tries to connect to a webservice at root level
but still no joy.

 

Following Jeremy's reply, what's even more strange is, I tried to create a
test blank site collection level at Test server with port 30167, I then
tried to connect to its web  service via InfoPath eg
http://test:30167/_vti_bin/userprofileservice.asmx it works fine. 

 

I then create the same blank site collection on Prod http://prod:30167
http://prod:30167/ , I then tried to connect to the web service and it
prompts me with authentication box ARGHGHGHGHGHHGHGHG..it drives me nuts L

 

So I suspect there must be something wrong with Prod's IIS L

 

Please help. 911

 

 

Tommy

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Paul Culmsee
Sent: Thursday, 19 November 2009 3:36 PM


To: 'ozMOSS'
Subject: RE: Help..InfoPath and UserProfileService

 

Hehe, then I know who it is too ;-)

 

Tommy, what about the other webservices? Just this one?  Presumably you are
connecting to it with no params to get additional user detail? Are you
connecting to it at the same site level to where the form is published?

 

Regards

 

Paul

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Jeremy Thake
Sent: Thursday, 19 November 2009 3:31 PM
To: ozMOSS
Subject: RE: Help..InfoPath and UserProfileService

 

I've had this at a particular client in Perth... ;-) probably the same
one...this can sometimes be because the IIS metabase gets corrupted. The
only way to recover is to delete the IIS web application and create it
again.

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Tommy Segoro
Sent: Thursday, 19 November 2009 1:38 PM
To: ozMOSS
Subject: RE: Help..InfoPath and UserProfileService

 

Same DC. Anonymous is turned off only Windows Authentication is allowed.

 

I tried to replicate the problem by building a 3rd server and yet I can't
replicated it L Something must have changed in Prod but I'm not sure what.
What areas should we check?

 

 

Please help. I've spent more than 2 days trying to resolve this issue.

 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Paul Noone
Sent: Thursday, 19 November 2009 12:55 PM
To: ozMOSS
Subject: RE: Help..InfoPath and UserProfileService

 

Same DC for both? Do you have anonymous access enabled?

 

Regards,

Paul

Online Developer, ICT
CEO Sydney

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Tommy Segoro
Sent: Thursday, 19 November 2009 3:50 PM
To: ozMOSS
Subject: Help..InfoPath and UserProfileService

 

Hi everyone,

 

I've got a strange problem right now. I've got 2 servers, Test and Prod. In
Test, if I

RE: Help..InfoPath and UserProfileService

2009-11-18 Thread Paul Culmsee
Hehe, then I know who it is too ;-)

 

Tommy, what about the other webservices? Just this one?  Presumably you are
connecting to it with no params to get additional user detail? Are you
connecting to it at the same site level to where the form is published?

 

Regards

 

Paul

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Jeremy Thake
Sent: Thursday, 19 November 2009 3:31 PM
To: ozMOSS
Subject: RE: Help..InfoPath and UserProfileService

 

I've had this at a particular client in Perth... ;-) probably the same
one...this can sometimes be because the IIS metabase gets corrupted. The
only way to recover is to delete the IIS web application and create it
again.

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Tommy Segoro
Sent: Thursday, 19 November 2009 1:38 PM
To: ozMOSS
Subject: RE: Help..InfoPath and UserProfileService

 

Same DC. Anonymous is turned off only Windows Authentication is allowed.

 

I tried to replicate the problem by building a 3rd server and yet I can't
replicated it L Something must have changed in Prod but I'm not sure what.
What areas should we check?

 

 

Please help. I've spent more than 2 days trying to resolve this issue.

 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Paul Noone
Sent: Thursday, 19 November 2009 12:55 PM
To: ozMOSS
Subject: RE: Help..InfoPath and UserProfileService

 

Same DC for both? Do you have anonymous access enabled?

 

Regards,

Paul

Online Developer, ICT
CEO Sydney

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Tommy Segoro
Sent: Thursday, 19 November 2009 3:50 PM
To: ozMOSS
Subject: Help..InfoPath and UserProfileService

 

Hi everyone,

 

I've got a strange problem right now. I've got 2 servers, Test and Prod. In
Test, if I tried to connect a blank InfoPath form to
http://test/_vti_bin/userprofileservice.asmx it all works fine. But as soon
as I tried to connect to http://prod/_vti_bin/userprofileservice.asmx I get
an authentication box.

 

I tried to compare the settings between 2 servers (web.config, IIS, SQL,
file permission, etc), they're all the same! L

 

Has anyone ever encountered this problem before? The solutions in Google
don't help at all.

 

 

Cheers,

Tommy

 

 

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


RE: MOSS 2007 Search Engine Vulnerability

2009-10-25 Thread Paul Culmsee
I have two sets of business cards - one set specifically to deal with
network admins and security Nazis :-) The latter has my certs on it.
 
If you want to deal with the security nazi, then send them to
securityfocus.com and search the database there. It contains a huge database
of vulnerabilities across vendor and product. If anything has been found, it
will be here.

http://www.securityfocus.com/vulnerabilities

Regards

Paul (CISSP and former anal retentive security nazi :-)

-Original Message-
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of chris_py_...@manulife.com
Sent: Monday, 26 October 2009 10:35 AM
To: ozMOSS
Cc: ozMOSS; ozmoss-boun...@ozmoss.com
Subject: RE: MOSS 2007 Search Engine Vulnerability

I have tried some common sql injection method like '1=1' thing however it
looks like it handles it fine, however they are not entirely satisfied with
the testing as they need some sort of proofs that it is 'really' free from
SQL injection threat.

We might need to change MOSS search engine to google search because of
this :(, this is so downright stupid

sorry I'm just being frustrated right now :)


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


RE: Changing Views in Infopath form

2009-10-20 Thread Paul Culmsee
Evil? Evil? Infopath rocks!!

 

http://www.cleverworkarounds.com/2009/03/05/why-infopath-rocks/

 

:-)

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Paul Noone
Sent: Wednesday, 21 October 2009 5:09 AM
To: ozMOSS
Subject: RE: Changing Views in Infopath form

 

That seems like the easiest approach based on the OOTB options.

 

Create a checkbox at the top of the form that will set the display for the
form. Better still, have two. One for View1 and one for View2 - e.g. Submit
Leave Application and Approve Leave Application. You can also audience
target sections of a form I believe but it's been a long time since I've had
to play with that evil program. :0

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Marko Salonen
Sent: Tuesday, 20 October 2009 5:37 PM
To: ozMOSS
Subject: RE: Changing Views in Infopath form

 

Option 3) Instead of using Views, Hide and unhide Sections as necassery.

 

Regards,

 

Marko

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Marko Salonen
Sent: Tuesday, 20 October 2009 4:11 PM
To: ozMOSS
Subject: RE: Changing Views in Infopath form

 

LOL. 

 

Yes, I wish there was one like that! Only the Button control has a option
like that. 

I cannot use a button for this though. My options are ( I imagine):

 

1)  Create a button that's not visible, and try to create an event to
press that button when the user selects the checkbox (anyone ever done
this?)

2)  Switch views when the user selects the checkbox (what I am trying to
do programmatically) 

 

Regards,

 

Marko

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Chris Grist
Sent: Tuesday, 20 October 2009 4:01 PM
To: ozMOSS
Subject: RE: Changing Views in Infopath form

 

Ah or maybe i made that option up ;).

 

Chris Grist
ICT Systems Support Manager
Education.au Limited

 

Level 1, 182 Fullarton Road
DULWICH SA 5065

 

p +61 8 83343291
f  +61 8 83343211

 

e cgr...@educationau.edu.au
w www.educationau.edu.au http://www.educationau.edu.au/ 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Marko Salonen
Sent: Tuesday, 20 October 2009 3:39 PM
To: ozMOSS
Subject: RE: Changing Views in Infopath form

 

Hi

 

You mean create a button to switch views? Unfortunately that doesn't meet
what I am after..

 

Regards,

 

Marko

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Chris Grist
Sent: Tuesday, 20 October 2009 2:50 PM
To: ozMOSS
Subject: RE: Changing Views in Infopath form

 

Why not just use a GUI Control Rule instead of coding it? Probally be a bit
easier.

 

Chris Grist
ICT Systems Support Manager
Education.au Limited

 

Level 1, 182 Fullarton Road
DULWICH SA 5065

 

p +61 8 83343291
f  +61 8 83343211

 

e cgr...@educationau.edu.au
w www.educationau.edu.au http://www.educationau.edu.au/ 

 

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf
Of Marko Salonen
Sent: Tuesday, 20 October 2009 3:19 PM
To: ozMOSS
Subject: Changing Views in Infopath form

 

Hi All

 

I have a InfoPath 2007 form  (browser enabled) that I want to create and use
two views with. 

I have a check box that should change the view, but I get a COM error, but
nothing in the event viewer as to why.

 

CODE: 

  public void InternalStartup()

{

 
EventManager.XmlEvents[/my:myFields/my:group1/my:delegate].Changed += new
XmlChangedEventHandler(delegate_Changed);

}

 

public void delegate_Changed(object sender, XmlEventArgs e)

{

  this.ViewInfos.SwitchView(DelegateView);

}

 

That should work right?

Kind Regards,

Marko 

 

  _  

This email and any files transmitted with it are intended solely for the use
of the individual or entity to whom this email is addressed.  This email's
contents are confidential and may contain copyright and/or legally
privileged information.  If you are not the intended recipient, you must not
read, print, store, copy, forward or use this email for any reason. If this
e-mail was sent to you in error, please notify the sender by return email,
and delete this email without making a copy.  Any confidentiality or
privilege is not waived or lost because this email has been sent to you by
mistake.  Thank you.

P Please consider the environment before printing this email

 

  _  

IMPORTANT: This e-mail, including any attachments, may contain private or
confidential information. If you think you may not be the intended
recipient, or if you have received this e-mail in error, please contact the
sender immediately and delete all copies of this e-mail. If you are not the
intended recipient, you must not reproduce any part of this e-mail or
disclose its contents to any other party. This email represents the views of
the individual sender, which do not necessarily reflect those of
Education.au except where 

Interesting metadata issue with Office 2003 SP2 and MOSS 2007 SP2

2009-08-14 Thread Paul Culmsee
Hiya

 

I have a site where one user reported that metadata was being 'lost' when
saving a document to a particular doc lib from Word 2003.

 

When I checked it out, the problem is actually on the document load. The
user loads the document into Word from the affected doc lib, and when you
check the properties in word (file-properties with that poor-mans document
info panel), it is clear that the metadata has not been populated from the
doc lib. Therefore when they save, blank metadata is written back, hence the
perception that metadata is lost.

 

The affected user has full control access to the site, and all other doc
libs are unaffected.

 

Not only does the metadata not populate, some columns are not even displayed
in properties dialog. I log on as a different user, and suddenly I see the
metadata, as well as additional columns.

 

If the affected user logs in via another PC, the issue remains. Try any
other document library on the site, and it is all fine. SP2 was installed 3
weeks ago and that seems to be around when users first noticed the issue.

 

This is a pretty stock site who have been running happily for a year now. No
naughty customisations, happy logs, good response time and no memory leaks. 

 

Has anybody else seen this one or similar behaviour before? It's a new one
for me...

 

Paul Culmsee

 

seven sigma business solutions

tel: 0410 533 585 fax: +61 (08) 9474 2601

www.sevensigma.com.au

www.cleverworkarounds.com

 


Support procedure: http://www.codify.com/lists/support
List address: ozmoss@ozmoss.com
Subscribe: ozmoss-subscr...@ozmoss.com
Unsubscribe: ozmoss-unsubscr...@ozmoss.com
List FAQ: http://www.codify.com/lists/ozmoss
Other lists you might want to join: http://www.codify.com/lists



RE: 2010 sneak peak

2009-07-13 Thread Paul Culmsee
Well said Michael. 

 

The sort of audience that is interested in sneak peaks are not necessarily
the business perspective anyway. The business audience will look at it when
they are good and ready - and will get interested once they know how much it
costs :-)

 

Regards

 

Paul

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Michael
Nemtsev
Sent: Tuesday, 14 July 2009 10:02 AM
To: ozmoss@ozmoss.com
Subject: RE: 2010 sneak peak

 

SharePoint Community became crazy about this sneak view, everybody is
tweeting the same thing :),  but nobody published any overview of what is
really new from the business perspective

 

What SharePoint 2010 solved and brings new - no single world. 

Nobody published any SDK overview (I tired to tweet about new method in SDK
via @laflour but need more time) 

 

It reminds me a Tweek person from South Park - exited, but no value :)

 

Michael Nemtsev
Readify | Microsoft MVP

http://msmvps.org/blogs/laflour

T: 0424 184 978 | E:  mailto:michael.nemt...@readify.net
michael.nemt...@readify.net

ts you might want to join:  http://www.codify.com/lists
http://www.codify.com/lists


Support procedure: http://www.codify.com/lists/support
List address: ozmoss@ozmoss.com
Subscribe: ozmoss-subscr...@ozmoss.com
Unsubscribe: ozmoss-unsubscr...@ozmoss.com
List FAQ: http://www.codify.com/lists/ozmoss
Other lists you might want to join: http://www.codify.com/lists



RE: Follow up: 'Explorer view' and office documents

2009-07-07 Thread Paul Culmsee
(If you read that document Michael referred to carefully, it's actually a
disturbing read. )

 

For what it's worth, the best way to learn all about to web client is not to
search on web client by webdav mini redirector instead.

 

Something just occurred to me. You don't have a proxy server configured do
you? Are your prod servers set to exclusion for your production
workstations? Or going through published ISA? 

 

Regards

 

Paul

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Nigel Hertz
Sent: Wednesday, 8 July 2009 8:07 AM
To: ozmoss@ozmoss.com
Subject: RE: Follow up: 'Explorer view' and office documents

 

Hey Michael,

 

I hadn't actually seen that document myself, but having a brief look through
it, it covers the same steps we went through with MS Support.

 

The strange thing with the whole scenario, was that the problem only
occurred on our production server using workstations. Using workstations on
our extranet or test environments worked fine, and using citrix on
production worked fine.

 

Nigel

 

 


Support procedure: http://www.codify.com/lists/support
List address: ozmoss@ozmoss.com
Subscribe: ozmoss-subscr...@ozmoss.com
Unsubscribe: ozmoss-unsubscr...@ozmoss.com
List FAQ: http://www.codify.com/lists/ozmoss
Other lists you might want to join: http://www.codify.com/lists



RE: Site features vs site collection features

2009-06-22 Thread Paul Culmsee
The RTM version of the product J

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Bill Williamson
Sent: Monday, 22 June 2009 4:59 PM
To: ozmoss@ozmoss.com
Subject: Re: Site features vs site collection features

 

What's the sharepoint analogy to suing your own fans though? Attempting 
migration/using CMS features?

On Mon, Jun 22, 2009 at 6:13 PM, Paul Culmsee paul.culm...@sevensigma.com.au 
wrote:

Here’s a dodgy analogy that I have used to explain the difference to people – 
(I like dodgy analogies ;-) 

Take an example of a Metallica concert.

Metallica (the band) is the site feature. Without them you have no concert as 
they play the music. However if you removed the stage, the roadies, the 
lighting, the alcohol and the soundsystem then you wouldn’t have a Metallica 
concert, despite Metallica standing around looking lost.

So the site collection feature can be viewed as “setting the stage” for the 
site feature. It puts all the necessary pre-requisites into place for the site 
scoped feature to work. 

Regards

Paul

www.cleverworkarounds.com

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Sezai Komur
Sent: Monday, 22 June 2009 2:48 PM
To: ozmoss@ozmoss.com
Subject: Re: Site features vs site collection features

You are right about the Office SharePoint Server Publishing site feature, a ton 
of things are not available without it active, if you create a basic Team Site 
you can't manage navigation, switch the master page, create publishing pages 
etc, you'll notice a big difference in the number of options available in the 
site actions menu. The page editing toolbar only displays on publishing pages. 
Activating the Office SharePoint Server Publishing will create a pages library 
and other lists and libraries required to support publishing.

It also depends on the site template used to create the subsites, if you create 
a new publishing site and view the site features you'll notice that the Office 
SharePoint Server Publishing site feature is already activated for the new site 
(because it is referenced in the Onet.xml for the publishing site).

Whether or not you need the features enabled depends on what you need to use 
the site for really, I've seen this cause confusion before, by default if you 
create a basic team site in a publishing enabled site collection it won't have 
the publishing feature enabled in the team site. Then users wonder why they 
can't create publishing pages and need to use a content editor web part instead.

Sezai.

On Mon, Jun 22, 2009 at 2:17 PM, Jeremy Thake jeremy.th...@readify.net wrote:

The difference is in the scope. You will need the Site Collection Features and 
the Site Features both activated to get all the features. Most of the Site 
Templates will do this for you, but if you are doing it after the fact, you 
should activate them at both if you need them. This is a more granular way to 
allocate Features to particular sites underneath a site collection.

For publishing...you don’t “have to”, but you won’t get certain functionality 
in new sites if you don’t activate it. I may be wrong, but off the top of my 
head the Page Editing Toolbar won’t be there on a sub site if you don’t active 
the Publishing Site Feature on it, even if the Publishing Site Collection 
feature is there.

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Noone
Sent: Monday, 22 June 2009 4:00 PM
To: ozmoss@ozmoss.com
Subject: Site features vs site collection features

Hi all,

After a quick audit of my sites I’ve come looking for some clarification as to 
what the difference is between site features and site collection features.

For example, If I have enabled the following features at the site collection 
level, do I also need to activate them for each new sub site. It doesn’t appear 
to be the case but it does make it confusing to determine which features are 
actually set for a specific site.



Regards,

Paul

Online Developer, ICT
CEO Sydney

  _  

Support procedure: https://www.codify.com/lists/support
List address: ozmoss@ozmoss.com

Subscribe: ozmoss-subscr...@ozmoss.com

Unsubscribe: ozmoss-unsubscr...@ozmoss.com

List FAQ:  http://www.codify.com/lists/ozmoss 
http://www.codify.com/lists/ozmoss

Other lists you might want to join:  http://www.codify.com/lists 
http://www.codify.com/lists

  _  

Support procedure: https://www.codify.com/lists/support
List address: ozmoss@ozmoss.com

Subscribe: ozmoss-subscr...@ozmoss.com

Unsubscribe: ozmoss-unsubscr...@ozmoss.com

List FAQ:  http://www.codify.com/lists/ozmoss 
http://www.codify.com/lists/ozmoss

Other lists you might want to join:  http://www.codify.com/lists 
http://www.codify.com/lists

  _  

Support procedure: https://www.codify.com/lists/support
List address: ozmoss@ozmoss.com

Subscribe: ozmoss-subscr...@ozmoss.com

Unsubscribe: ozmoss-unsubscr...@ozmoss.com

List FAQ:  http://www.codify.com/lists/ozmoss 
http://www.codify.com/lists/ozmoss

Other lists

RE: Site features vs site collection features

2009-06-22 Thread Paul Culmsee
I’m glad Metallica helped J. Now if you want to understand document management 
look no further than death metal (Opeth) and to understand site definitions vs 
site templates I use boy-bands (cleverworkarounds site).

 

Anyway back to your observations...

 

I meddled with the forces you are meddling with a long time ago. If you disable 
the features after enabling, they do not get removed and that’s quite 
deliberate and I blogged about the behaviour in my 2007 branding series. Mind 
you, if you manually create a pages library and then try and activate the 
publishing feature, it barfs about it already being there.

 

Based on that presumption, I think that your prognosis is likely right but I’m 
not an expert on content deployment. It sounds like content deployment tries to 
ensure that all required artefacts are there and doesn’t rely on the feature 
being there (this is counter intuitive to me but as I said I’m not an expert on 
content deployment). 

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 23 June 2009 7:00 AM
To: ozmoss@ozmoss.com
Subject: RE: Site features vs site collection features

 

LOL. Thanks guys. Believe it or not that actually makes sense.

 

What has got me stumped is that the site in question (team site without 
publishing enabled) does in fact have a page library, publishing master and 
layout pages, edit toolbar, search, profiles etc. This site was created via 
content deployment so I’m wondering if the features were made available without 
actually having to enable them again at the destination?

 

Are these features also responsible for the switch from usageDetails.aspx to 
SpUsageWeb.aspx when accessing Site Usage Report? Both are quit useless but 
I’ve always been confused by the difference from site to site.

 

Anyway, I’ll take the collective advice and enable them for the subsites too.

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Culmsee
Sent: Monday, 22 June 2009 7:45 PM
To: ozmoss@ozmoss.com
Subject: RE: Site features vs site collection features

 

The RTM version of the product J

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Bill Williamson
Sent: Monday, 22 June 2009 4:59 PM
To: ozmoss@ozmoss.com
Subject: Re: Site features vs site collection features

 

What's the sharepoint analogy to suing your own fans though? Attempting 
migration/using CMS features?

On Mon, Jun 22, 2009 at 6:13 PM, Paul Culmsee paul.culm...@sevensigma.com.au 
wrote:

Here’s a dodgy analogy that I have used to explain the difference to people – 
(I like dodgy analogies ;-) 

Take an example of a Metallica concert.

Metallica (the band) is the site feature. Without them you have no concert as 
they play the music. However if you removed the stage, the roadies, the 
lighting, the alcohol and the soundsystem then you wouldn’t have a Metallica 
concert, despite Metallica standing around looking lost.

So the site collection feature can be viewed as “setting the stage” for the 
site feature. It puts all the necessary pre-requisites into place for the site 
scoped feature to work. 

Regards

Paul

www.cleverworkarounds.com

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Sezai Komur
Sent: Monday, 22 June 2009 2:48 PM
To: ozmoss@ozmoss.com
Subject: Re: Site features vs site collection features

You are

  _  

Support procedure: https://www.codify.com/lists/support
List address: ozmoss@ozmoss.com

Subscribe: ozmoss-subscr...@ozmoss.com

Unsubscribe: ozmoss-unsubscr...@ozmoss.com

List FAQ:  http://www.codify.com/lists/ozmoss 
http://www.codify.com/lists/ozmoss

Other lists you might want to join:  http://www.codify.com/lists 
http://www.codify.com/lists

right about the Office SharePoint Server Publishing site feature, a ton of 
things are not available without it active, if you create a basic Team Site you 
can't manage navigation, switch the master page, create publishing pages etc, 
you'll notice a big difference in the number of options available in the site 
actions menu. The page editing toolbar only displays on publishing pages. 
Activating the Office SharePoint Server Publishing will create a pages library 
and other lists and libraries required to support publishing.

It also depends on the site template used to create the subsites, if you create 
a new publishing site and view the site features you'll notice that the Office 
SharePoint Server Publishing site feature is already activated for the new site 
(because it is referenced in the Onet.xml for the publishing site).

Whether or not you need the features enabled depends on what you need to use 
the site for really, I've seen this cause confusion before, by default if you 
create a basic team site in a publishing enabled site collection it won't have 
the publishing feature enabled in the team site. Then users wonder why they 
can't create publishing pages and need to use a content editor web part instead.

Sezai

RE: Attack Workflow to document library?

2009-05-05 Thread Paul Culmsee
I'm pretty sure Paul Galvin wrote about this a while back...

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Noone
Sent: Wednesday, 6 May 2009 8:06 AM
To: ozmoss@ozmoss.com
Subject: RE: Attack Workflow to document library?

 

Would be nice to see a blog post on how to achieve this feat. [hint]

 

I was always under the impression that SPD workflows could not be
successfully copied.

 

Regards,

Paul

Online Developer, ICT
CEO Sydney


Support procedure: http://www.codify.com/lists/support
List address: ozmoss@ozmoss.com
Subscribe: ozmoss-subscr...@ozmoss.com
Unsubscribe: ozmoss-unsubscr...@ozmoss.com
List FAQ: http://www.codify.com/lists/ozmoss
Other lists you might want to join: http://www.codify.com/lists



RE: Service Pack 2 [SEC=UNCLASSIFIED]

2009-04-28 Thread Paul Culmsee
Well, when I say discrete steps I mean I run the wss patch, run the wizard
then do MOSS straight after. You don't leave it for a week :-)

 

Has this failed for anyone?

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Daniel Brown
Sent: Wednesday, 29 April 2009 8:29 AM
To: ozmoss@ozmoss.com
Subject: RE: Service Pack 2 [SEC=UNCLASSIFIED]

 

Different files, different schema, Shared Service Provider, MySites, site
templates, lists/library templates, etc. WSS hotfixes/sp's don't contain the
updates for such things.

 

It will update only the WSS bits, but for the rest of MOSS it makes it go
ka-put.

 

The path for applying any update to MOSS has always been... install the WSS
patch.. cancel the config wizard, install the moss patch and then run the
wizard.

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Culmsee
Sent: Wednesday, 29 April 2009 9:50 AM
To: ozmoss@ozmoss.com
Subject: RE: Service Pack 2 [SEC=UNCLASSIFIED]

 

Why will it cause issues? I've never come across it myself, and I preferred
(till now) to do things in discrete steps so I know which step causes me a
problem)

 

So now you have me curious...

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Daniel Brown
Sent: Wednesday, 29 April 2009 8:13 AM
To: ozmoss@ozmoss.com
Subject: RE: Service Pack 2 [SEC=UNCLASSIFIED]

 

Incorrect.

 

Its WSS-MOSS-Config Wizard

 

You don't run the config wizard after you install the WSS update.

 

Running the config wizard after the WSS update WILL cause issues.

 

  _  

Support procedure: https://www.codify.com/lists/support
List address: ozmoss@ozmoss.com

Subscribe: ozmoss-subscr...@ozmoss.com

Unsubscribe: ozmoss-unsubscr...@ozmoss.com

List FAQ:  http://www.codify.com/lists/ozmoss
http://www.codify.com/lists/ozmoss

Other lists you might want to join:  http://www.codify.com/lists
http://www.codify.com/lists

  _  

Support procedure: https://www.codify.com/lists/support
List address: ozmoss@ozmoss.com

Subscribe: ozmoss-subscr...@ozmoss.com

Unsubscribe: ozmoss-unsubscr...@ozmoss.com

List FAQ:  http://www.codify.com/lists/ozmoss
http://www.codify.com/lists/ozmoss

Other lists you might want to join:  http://www.codify.com/lists
http://www.codify.com/lists


Support procedure: http://www.codify.com/lists/support
List address: ozmoss@ozmoss.com
Subscribe: ozmoss-subscr...@ozmoss.com
Unsubscribe: ozmoss-unsubscr...@ozmoss.com
List FAQ: http://www.codify.com/lists/ozmoss
Other lists you might want to join: http://www.codify.com/lists



Re: Unknown errors with people and groups

2009-04-16 Thread paul . culmsee
 

Hi mate 

What made my spider senses single here is the fact that you said
reparented after import. Although I did not experience your error,
I had weird side effects in doing this too and the legendary Gary
lapointe saved my butt :-) 


http://www.cleverworkarounds.com/2007/11/14/gary-lapointe-is-a-genius-and-has-good-music-taste-too/
[1]
 I may be miles off, but that word reparenting and publishing
feature makes me think it smells similar..
 On Fri 17/04/09 8:25 AM , Paul Noone
paul.no...@ceosyd.catholic.edu.au sent:
Hi guys, 
I’ve recently migrated some sites to a new collection and
everything seems to have worked with the exception of people and
group management on one site. 
Whenever I try to access the Site Permissions (/_layouts/user.aspx)
or Group Settings (_layouts/editgrp.aspx) page for this site I
receive the Unknown error screen. I receive the same error when
trying to apply changes in the Set Up Groups for this Site page
(_layouts/permsetup.aspx). 
Has anyone experienced this or have any idea what’s going on? 
Kind regards,
 Paul Noone
 Online Developer, ICT
 CEO Sydney
 ph: (02) 9568 8461 

fax: (02) 9568 8483
 email: paul.no...@ceosyd.catholic.edu.au [2]
 web: http://www.ceosyd.catholic.edu.au/ [3] 
-
  Support procedure: https://www.codify.com/lists/support [4]
 List address: ozmoss@ozmoss.com Subscribe:
ozmoss-subscr...@ozmoss.com Unsubscribe:
ozmoss-unsubscr...@ozmoss.com List FAQ:
http://www.codify.com/lists/ozmoss [5] Other lists you might want to
join: http://www.codify.com/lists [6]


Links:
--
[1]
http://www.cleverworkarounds.com/2007/11/14/gary-lapointe-is-a-genius-and-has-good-music-taste-too/
[2] mailto:paul.no...@ceosyd.catholic.edu.au
[3] http://www.ceosyd.catholic.edu.au/
[4] https://www.codify.com/lists/support
[5] http://www.codify.com/lists/ozmoss
[6] http://www.codify.com/lists

Support procedure: http://www.codify.com/lists/support
List address: ozmoss@ozmoss.com
Subscribe: ozmoss-subscr...@ozmoss.com
Unsubscribe: ozmoss-unsubscr...@ozmoss.com
List FAQ: http://www.codify.com/lists/ozmoss
Other lists you might want to join: http://www.codify.com/lists



RE: SQL Timer Jobs

2009-02-15 Thread Paul Culmsee
That smells like your machine account has expired in Active directory or
something like that, or when you brought it back up, it now has a new SID in
Active directory, but the SQL server still has the old SID in its
permissions and is barfing. I've had this sort of thing before.

 

You might need to do a little manual surgery in SQL Server permissions?

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Noone
Sent: Monday, 16 February 2009 1:52 PM
To: ozmoss@ozmoss.com
Subject: RE: SQL Timer Jobs

 

Found it! J

 

The first GUID is a fairly generic service ID but the second one is for the
Config Refresh timer job.

 

The job runs twice per minute on every server in the farm and the status
screen in Central Admin shows 100% success in all cases. But the SQL logs
show a repeated login failure for one of the front ends.

 

2009-02-11 11:43:07.01 Logon   Error: 18456, Severity: 14, State: 11.

2009-02-11 11:43:07.01 Logon   Login failed for user 'NT
AUTHORITY\ANONYMOUS LOGON'. [CLIENT: xx.xx.x.xxx]

 

State: 11 means Valid login but server access failure. But what the hell
does that mean? And why is the ANONYMOUS account beign used??

 

If it's any help, this is the WFE that was killed a couple of months ago
which we then had to bring back up. It's possible we missed something during
this process.

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Noone
Sent: Monday, 16 February 2009 11:57 AM
To: ozmoss@ozmoss.com
Subject: RE: SQL Timer Jobs

 

Hi Chris,

 

I was saving that for a last resort. Thanks for the query tips.

 

I was hoping to use Mike Stringfellow's suggestion of exporting the
sitecollection and then search the XML for any reference to those GUIDs.
Unfortunately it's a little large for either an export or backup using
standard STSADM commands.

 

Does anyone know if there's an option to export/backup a sitecollection
WITHOUT content??

 

Regards,

Paul

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Christopher
Scalley
Sent: Friday, 13 February 2009 4:33 PM
To: ozmoss@ozmoss.com
Subject: RE: SQL Timer Jobs

 

Hi Paul,

I believe the GUIDs are visible if you look directly in the SQL
tables/views.  Not a very elegant solution, but if you can't find any other
way it should provide you what you need.  

 

If you use a SQL query to look in tables like:

 

   Sites  

   Webs

   Lists

   Webparts

 

and look in one of the first couple of columns you can guess which column is
the GUID.  You can also try tables/views starting with All.

 

 

So for example you might use SQL Management Studio to run a query like:

 

select * 

from lists

 

I can then see the the tp_id column is probably the GUID  (tp_WebID is not
unique in the table so that's not the one - this is showing which Web the
list is related to I guess).  So I'd then run the following query searching
for the particular GUID's you're interested in:

 

select *

from lists

where tp_id like '%C91183C6-0AA9-451A-A282-952D7E88A85A'%' or tp_id like
'%C5271BBD-917E-4A5E-9331-FCB3E1683597%'

 

 

Alternatively, I can give you some code (a SQL cursor) that will look
through every field in every table in a database.  That may put a
significant load on the SQL server, if you're content databases are more
than a few GBs.  But it would save you time looking through the tables
yourself.

 

Hope that helps!

 

 

P.S. My background is in SQL, I'm just learning Sharepoint.

 

Regards

Chris Scalley 
Technical Specialist

Managed Services 

 


T

+61 2 9286 2255

image001


F

+61 2 9286 2200


M

+61 (0) 400 660 371


E

cscal...@cdm.com.au 


W

  http://www.cdm.com.au/ www.cdm.com.au 

 

Communications, Design  Management Pty Limited

Level 23, 1 Oxford Street 

NSW 2010, Darlinghurst

  _  


This communication, including any attachments, is confidential. If you are
not the intended recipient, you should not read it - please contact me
immediately, destroy it, and do not copy or use any part of this
communication or disclose anything about it.

 

From: ozmoss@ozmoss.com [mailto:ozm...@ozmoss.com] On Behalf Of Paul Noone
Sent: Friday, 13 February 2009 10:59 AM
To: ozmoss@ozmoss.com
Subject: SQL Timer Jobs

 

Hi guys,

 

We're continuing to get dozens of event log errors on most of the servers.
Most were references to an old SSP which didn't seem to get deleted
properly. Others were to files/paths which no longer existed.

 

But I have it a wall with the following.

 

Every minute I get two errors on the SQL box regarding connection issues
with one of the WFEs (we have two but only one is throwing errors!).

 

SQL Profiler shows the following two lines that match the event logs but how
can I work out which site, web or list is responsible from the GUID?

 

ULT-SPPWEB-01 is the WFE which continues to throw errors.

 

exec proc_StartTimerRunningJob
'C91183C6-0AA9-451A-A282-952D7E88A85A',NULL,'C5271BBD-917E-4A5E-9331-FCB3E16