RE: CSOM - Syntactic issue with retrieved CAML query from list view

2015-11-29 Thread James Boman
Paul,
  Using the JSOM for this is hard work.

I would fire off a REST request like this:

https://tenant.sharepoint.com/_vti_bin/listdata.svc/ListName/$count?$filter=Field
 eq Value

You should get back just the number of rows that match the filter.  No XML or 
JSON to worry about – just a number.

Cheers,
  J
[cid:image001.png@01D12AFB.644D4B00]



James Boman | Product Lead
• T: +61872001100<callto:+61872001100>  • M: +61417857298<callto:+61417857298>




From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 25 November 2015 11:04 AM
To: ozMOSS <ozmoss@ozmoss.com>
Subject: CSOM - Syntactic issue with retrieved CAML query from list view

Hi all,

Long time no speak! :)

I'm trying to retrieve the number of list items in a specified list view via 
JavaScript.

The problem is that the get_viewQuery method does not return a valid CAML query.

What it returns is:

 \

 

 

   
   

  

What I need is:


 \

 
 

  
 
 
  

 


Apparently this issue also applies to C#.

The only solution I've found is to wrap the returned CAML like so:

viewQuery = String.format("{0}", 
view.get_viewQuery());

But this is limited and not does not allow for OrderBy, ViewFields and other 
possibilities.

Has anyone hit this before and found a viable solution?

Cheers,

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: [RESOLVED] RE: Problems with Following using SP.UserProfiles

2014-09-10 Thread James Boman
?  I love the way you guys always push me to find my own solutions. :P
We do our best :)

J.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 10 September 2014 1:42 PM
To: ozMOSS
Subject: [RESOLVED] RE: Problems with Following using SP.UserProfiles

I love the way you guys always push me to find my own solutions. :P
The username is now being escaped correctly and all is good in the world.
As usual, I'm happy to share the solution with anyone who's interested.
From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Wednesday, 10 September 2014 9:28 AM
To: ozMOSS
Subject: RE: Problems with Following using SP.UserProfiles

Right! So I've resolved issue 1. Passing in a valid user does wonders. :P

Would still appreciate any advice on issue 2 -  the best place and method to 
modify the username.


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Wednesday, 10 September 2014 8:21 AM
To: ozMOSS
Subject: RE: Problems with Following using SP.UserProfiles

OK. Making progress. I'm now getting stuck on two things.


1.   The username is being passed into the function as a string. Because 
domain\first.last contains a backslash,  Javascript is seeing it as 
domainfirst.last. So I need to pass the original value in as domain\\first.last.

Currently I'm passing it in raw from a MenuItemTemplateItem like so:

FollowMe.ClientOnClickScript = getFollowingStatus('%UserName%');

And Username is defined in my entity as:

emp.UserName = (String)profile[PropertyConstants.AccountName].Value;

2.  I can't seem to get the following status for my actorInfo. :\ Has anyone 
had any success with this?

// Get the current client context.
   clientContext = SP.ClientContext.get_current();

   // Get the SocialFeedManager instance.
   followingManager = new SP.Social.SocialFollowingManager(clientContext);

   // Create a SocialActorInfo object to represent the target user.
   actorInfo = new SP.Social.SocialActorInfo();
   actorInfo.set_accountName(user);

   // Find out whether the current user is following the target user.
 isFollowed = followingManager.isFollowed(actorInfo);
Any help appreciated.

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 9 September 2014 11:04 AM
To: ozMOSS
Subject: Problems with Following using SP.UserProfiles

Hi all,

I borrowed some javascript from 
MSDNhttp://msdn.microsoft.com/en-us/library/dn155790%28v=office.15%29.aspx#bk_FollowPeople
 for a simple Follow/Unfollow link.

For whatever reason it's throwing undefined for:

Unable to get property 'SocialFollowingManager' of undefined or null reference

And:

Unable to get property 'SocialActorInfo' of undefined or null reference

Viewing source I can see that SP.UserProfiles.debug is already loaded by 
default.

RegisterSod(userprofile, \u002f_layouts\u002f15\u002fsp.userprofiles.debug...

I've also tried loading SP.UserProfiles.js using both methods below but 
continue to have problems.

SP.SOD.executeOrDelayUntilScriptLoaded(getFollowingStatus, 
'SP.UserProfiles.js');
SP.SOD.executeFunc('SP.UserProfiles.js, 'SP.Social', getFollowingStatus);

Does anyone have any suggestions before I paste the full source?

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal



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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal



The content of this email is confidential to the intended recipient at the 
email address to which it has been 

RE: Passing query string param to filter expression on ObjectDataSource

2014-09-01 Thread James Boman
Paul,

HttpContext.Current.Request.QueryString.Clear();

This will clear the querystring on the request object that is about to be 
destroyed, so is probably not going to be a strategy that will work.  You might 
want to look into modifying the response object, but probably more likely to 
succeed is something like 
thishttp://blogs.msdn.com/b/tinghaoy/archive/2005/12/22/506852.aspx where you 
can alter the query string by setting the PostBackUrl on the search button on 
your page.

Cheers,
  J.

James Boman ■ Phone: +61872001100callto:+61872001100 ■ Mobile: 
+61417857298callto:+61417857298 ■ Skype: JDBomancallto:JDBoman ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au/


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 2 September 2014 8:45 AM
To: ozMOSS
Subject: RE: Passing query string param to filter expression on ObjectDataSource

Hi Prashanth,

Redirecting to the target page and appending the query is no problem.

However the Staff Lookup web part on the target page is a custom part. I want 
to perform a search on page load if the key/value is present and then clear it 
on postback. Hope that makes sense.

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Prashanth Thiyagalingam
Sent: Monday, 1 September 2014 8:11 PM
To: ozMOSS
Subject: Re: Passing query string param to filter expression on ObjectDataSource

If you are using OOTB search web part then you can do this in client side, get 
the query string in js and then do a redirection to the target page with the 
query string value
Cheers,
Prashanth

Sent from my iPhone

On Sep 1, 2014, at 1:58 PM, Paul Noone 
p.no...@keller.com.aumailto:p.no...@keller.com.au wrote:
Hi all,

I have a custom people search web part which uses a simple form, SPGrid and a 
DataTable.

image003.jpg

I’d like to extend this so that people can search for staff from another page 
via a Search Box.

image004.png …where k=”Paul…

What I want to do is:


1.   Check if the k param has a value.

2.   Use it in my query and apply it to the datasource’s filter expression.

3.   Clear the query string on postback.

I’ve added the following to the OnLoad event but it throws a NullReference 
exception.

Any help appreciated.

// Get URL and check for k query string param in case of search from another 
page
String txtNameFromQuery = HttpContext.Current.Request.QueryString[k];

if(!String.IsNullOrEmpty(txtNameFromQuery))
{
   // Set txtName field to query string value for additional searches
   txtName.Text = txtNameFromQuery;

   // Define the search query
   String q = Name LIKE '% + txtNameFromQuery + %';

   // Apply query to filterexpression
   ds.FilterExpression = q;
   ViewState[FilterExpression] = (String)ds.FilterExpression;

   // Remove any query string parameters from the URL
   HttpContext.Current.Request.QueryString.Clear();
}

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


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

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: Passing query string param to filter expression on ObjectDataSource

2014-09-01 Thread James Boman
Paul I think the click handler would be too late.  I think you want to do it in 
the initial pre-render

The life cycle would then be:


1.   User clicks search in search webpart, cause navigation to URL with k 
in query string

2.   Your onload/prerender runs, receives the k param, filters the dataset, 
renders the result back out to the user, sets the postbackurl on the search 
button
(k param is visible in the URL bar at this point)

3.   User clicks on the search button in your custom webpart, the postback 
url does not include the k param because it has a custom postback url.

4.   Your onload/prerender runs (there is no k param this time), normal 
search activities are processed and results rendered to the user.
(k param disappears)

If the objective is for the user ever to see the k parameter then you can add 
to the above solution with javascript to hide it using 
pushstatehttps://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Manipulating_the_browser_history:

Example:
Suppose http://mozilla.org/foo.html executes the following JavaScript:
var stateObj = { foo: bar };
history.pushState(stateObj, page 2, bar.html);
This will cause the URL bar to display http://mozilla.org/bar.html, but won't 
cause the browser to load bar.html or even check that bar.html exists.

Cheers,
  James.

James Boman ■ Phone: +61872001100callto:+61872001100 ■ Mobile: 
+61417857298callto:+61417857298 ■ Skype: JDBomancallto:JDBoman ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au/
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 2 September 2014 9:38 AM
To: ozMOSS
Subject: RE: Passing query string param to filter expression on ObjectDataSource

That makes sense. I initially had it redirecting.

Would it be just as good to add the query string check into the click handler 
for the Search button?
if (!String.IsNullOrEmpty(queryString)) {
  Button1.PostBackUrl = queryString;
}
And would Request.QueryString.Remove(k) be just as effective?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of James Boman
Sent: Tuesday, 2 September 2014 9:51 AM
To: ozMOSS
Subject: RE: Passing query string param to filter expression on ObjectDataSource

Paul,

HttpContext.Current.Request.QueryString.Clear();

This will clear the querystring on the request object that is about to be 
destroyed, so is probably not going to be a strategy that will work.  You might 
want to look into modifying the response object, but probably more likely to 
succeed is something like 
thishttp://blogs.msdn.com/b/tinghaoy/archive/2005/12/22/506852.aspx where you 
can alter the query string by setting the PostBackUrl on the search button on 
your page.

Cheers,
  J.

James Boman ■ Phone: +61872001100callto:+61872001100 ■ Mobile: 
+61417857298callto:+61417857298 ■ Skype: JDBomancallto:JDBoman ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au/


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 2 September 2014 8:45 AM
To: ozMOSS
Subject: RE: Passing query string param to filter expression on ObjectDataSource

Hi Prashanth,

Redirecting to the target page and appending the query is no problem.

However the Staff Lookup web part on the target page is a custom part. I want 
to perform a search on page load if the key/value is present and then clear it 
on postback. Hope that makes sense.

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Prashanth Thiyagalingam
Sent: Monday, 1 September 2014 8:11 PM
To: ozMOSS
Subject: Re: Passing query string param to filter expression on ObjectDataSource

If you are using OOTB search web part then you can do this in client side, get 
the query string in js and then do a redirection to the target page with the 
query string value
Cheers,
Prashanth

Sent from my iPhone

On Sep 1, 2014, at 1:58 PM, Paul Noone 
p.no...@keller.com.aumailto:p.no...@keller.com.au wrote:
Hi all,

I have a custom people search web part which uses a simple form, SPGrid and a 
DataTable.

image003.jpg

I’d like to extend this so that people can search for staff from another page 
via a Search Box.

image004.png …where k=”Paul…

What I want to do is:


1.   Check if the k param has a value.

2.   Use it in my query and apply it to the datasource’s filter expression.

3.   Clear the query string on postback.

I’ve added the following to the OnLoad event but it throws a NullReference 
exception.

Any help appreciated.

// Get URL and check for k query string param in case of search from another 
page
String txtNameFromQuery = HttpContext.Current.Request.QueryString[k];

if(!String.IsNullOrEmpty(txtNameFromQuery))
{
   // Set txtName field to query string

RE: Server Error in '/' Application -- in modal dialogs

2014-08-26 Thread James Boman
Just remember that the web.config in the WSS Root is not the only Web.config 
the settings need to be changed in.

If your error is coming out of the LAYOUTS folder you may need to change the 
web.config there as well to see the actual error message.

Cheers,
  James.

James Boman ■ Phone: +61872001100callto:+61872001100 ■ Mobile: 
+61417857298callto:+61417857298 ■ Skype: JDBomancallto:JDBoman ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au/
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 27 August 2014 8:59 AM
To: ozMOSS
Subject: Server Error in '/' Application -- in modal dialogs

Hi all,

Lately I've been receiving the dreaded custom error settings screen below in a 
few modal diaologs.

CustomErrors are Off, CallStack and Debug are off for this web app, so I'm not 
really sure what to do to get my errors displayed in the browser.

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: Use a newtwork share as the source for a document library

2014-08-17 Thread James Boman
Paul,
  Have you considered using FILESTREAM storage on the SQL server 
for storing the files as files, while still keeping the benefits of housing 
them in a SharePoint document library?

Cheers,
  James.

James Boman ■ Phone: +61872001100callto:+61872001100 ■ Mobile: 
+61417857298callto:+61417857298 ■ Skype: JDBomancallto:JDBoman ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au/
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 18 August 2014 9:56 AM
To: ozMOSS
Subject: Use a newtwork share as the source for a document library

Hi all,

Has anyone successfully achieved this?

I have terabytes worth of CAD files and other types that are simply not 
suitable to storing in a DB.

I want to provide a Document Library view of this location and provide basic 
read/write (upload) functionality.

Would my best option be a custom BCS connector that interacts with the file 
system directly?

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: Use a newtwork share as the source for a document library

2014-08-17 Thread James Boman
Paul,

Does using SharePoint synch button on a library physically copy the entire 
library to the local PC?

Yes - as far as I know it will copy the entire library to the local machine for 
offline use.  Dumping of files into the same path will cause OneDrive for 
Business upload them in the background.  I find this feature very handy.

Can I specify a UNC path to a remote server using FILESTREAM?

From my understanding, the FILESTREAM feature of SQL server is an 
implementation (not the only one) of the BLOB storage API in SharePoint.  A 
document library in a content database with FILESTREAM enabled behaves no 
differently from a user point of view.  While you can see the filesystem that 
SQL uses to store the BLOBs, you can't/shouldn't make changes to that 
filesystem.  Mapping of UNC paths would continue to work the same way it does 
for all document libraries (via WebDAV) using open in explorer mode ribbon 
button or using the connect to website feature in the map drive dialog.

[cid:image001.png@01CFBADC.8AB0FCA0]

Kind regards,


James Boman ■ Phone: +61872001100callto:+61872001100 ■ Mobile: 
+61417857298callto:+61417857298 ■ Skype: JDBomancallto:JDBoman ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au/


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 18 August 2014 11:55 AM
To: ozMOSS
Subject: RE: Use a newtwork share as the source for a document library

Hi James,

I'm open to both. My understanding is they want to a way to easily access or 
dump files (when offline) for these types of files.


·   Does using SharePoint synch button on a library physically copy the 
entire library to the local PC?


·   Can I specify a UNC path to a remote server using FILESTREAM?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of James Boman
Sent: Monday, 18 August 2014 12:16 PM
To: ozMOSS
Subject: RE: Use a newtwork share as the source for a document library

Paul,
  Have you considered using FILESTREAM storage on the SQL server 
for storing the files as files, while still keeping the benefits of housing 
them in a SharePoint document library?

Cheers,
  James.

James Boman ■ Phone: +61872001100callto:+61872001100 ■ Mobile: 
+61417857298callto:+61417857298 ■ Skype: JDBomancallto:JDBoman ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au/
From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Monday, 18 August 2014 9:56 AM
To: ozMOSS
Subject: Use a newtwork share as the source for a document library

Hi all,

Has anyone successfully achieved this?

I have terabytes worth of CAD files and other types that are simply not 
suitable to storing in a DB.

I want to provide a Document Library view of this location and provide basic 
read/write (upload) functionality.

Would my best option be a custom BCS connector that interacts with the file 
system directly?

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal



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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: SP2013 CUs and SPs

2014-07-16 Thread James Boman
Paul,
  YES - AFAIK, and regardless of the binary patches you install - 
the version in your database will not be updated until you run the PT wizard 
on the servers which then upgrades the database to match.

Cheers,
  J.

James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Thursday, 17 July 2014 11:51 AM
To: ozMOSS
Subject: SP2013 CUs and SPs

Hi all,

Am I correct in assuming that these still need to be manually downloaded and 
installed?
I'm getting ready to patch some servers which are up-to-date with Windows 
Updates and have all current Update for Microsoft SharePoint Enterprise Server 
2013 patches applied, but still show RTM version (15.0.4420.1017) in Servers in 
Farm.

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: SP2013 CUs and SPs

2014-07-16 Thread James Boman
You are lucky - I have seen SP1 and later CU's take 6 hours to install and 
another 3 hours on the PT wizard.

It does depend to some extent on how much content needs to be upgraded, and if 
you have search deployed.

J.


James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Thursday, 17 July 2014 1:39 PM
To: ozMOSS
Subject: RE: SP2013 CUs and SPs

Thanks James. That was my understanding too.

I had run the wizard after the last round of Windows Updates but these patches 
all had RTM version, which is what led me to download and install SP1 manually. 
Only took half an hour and no restart required. Most surprised!

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of James Boman
Sent: Thursday, 17 July 2014 12:56 PM
To: ozMOSS
Subject: RE: SP2013 CUs and SPs

Paul,
  YES - AFAIK, and regardless of the binary patches you install - 
the version in your database will not be updated until you run the PT wizard 
on the servers which then upgrades the database to match.

Cheers,
  J.

James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Thursday, 17 July 2014 11:51 AM
To: ozMOSS
Subject: SP2013 CUs and SPs

Hi all,

Am I correct in assuming that these still need to be manually downloaded and 
installed?
I'm getting ready to patch some servers which are up-to-date with Windows 
Updates and have all current Update for Microsoft SharePoint Enterprise Server 
2013 patches applied, but still show RTM version (15.0.4420.1017) in Servers in 
Farm.

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal



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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: RESOLVED: [SP2013]Up Folder button or Folder path breadcrumbs

2014-06-19 Thread James Boman
Have you tried 
thishttp://academy.bindtuning.com/lets-bring-the-breadcrumb-back-to-sharepoint-2013/?
  Simple and works for me.

Don't forget to change the ThemeKey to spcommon

Cheers
  James.

James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Friday, 20 June 2014 1:29 PM
To: 'ozMOSS'
Subject: RESOLVED: [SP2013]Up Folder button or Folder path breadcrumbs

Created a new placeholder and stuck it within:

!--SPM:SharePoint:AjaxDelta id=DeltaBreadcrumbDropdown runat=server--
!--SPM:SharePoint:PopoutMenu...

Using the ListSiteMapPath provider.

Seems like a lot of overkill but it works so I'm not complaining.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Friday, 20 June 2014 12:54 PM
To: 'ozMOSS'
Subject: [SP2013]Up Folder button or Folder path breadcrumbs

Hi all,

Having a world of problems with breadcrumbs in general - and for lists in 
particular.

I'd like to show Site-Subsite-Library-Folder but can't seem to find the 
right sitemapprovider and settings for 2013 .

I'd happily settle for an Up Folder link at this stage to avoid having a 
system masterpage. The one in the ribbon is to obscured for end-users.

Does anyone know how I can replicate the same functionality in my masterpage 
without adding wads of custom javascript? What function is called from the 
ribbon?

Cheers,

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal



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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: Workflow Manager in multi-server farm

2014-06-03 Thread James Boman
Paul,

Like OWA, ideally you would install Workflow Manager on a separate server to 
the SharePoint Farm, but if you have to use a server that is also a SharePoint 
Farm member then choose an APP server so that the latency of user web requests 
are not affected.

Cheers,
  J.


James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 4 June 2014 3:12 PM
To: ozMOSS
Subject: RE: Workflow Manager in multi-server farm

Thanks James,

So if I have a SharePoint farm with only two server, I should just install it 
on one then?

If I install on a WFE is there anything else I need to do apart from join it to 
the farm?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of James Boman
Sent: Wednesday, 4 June 2014 1:39 PM
To: ozMOSS
Subject: RE: Workflow Manager in multi-server farm

When you have more than one Workflow Manager server, you group them into Farms 
just like SharePoint and OWA servers are grouped into their own Farms.

For reasons that are not clear to me (perhaps some sort of quorum system) high 
availability scenarios are only available for Workflow Manager when you have 
odd numbers of Workflow Manager servers.

From msdn:http://msdn.microsoft.com/en-us/library/jj193451(v=azure.10).aspx
High Availability

Workflow Manager farm supports a farm of a single computer running both 
Workflow Manager farm and the required Service Bus farm. If you require high 
availability you must expand the farm to three computers. Refer to Joining an 
Existing 
Farmhttp://msdn.microsoft.com/en-us/library/jj193433(v=azure.10).aspx on how 
to expand farm. Two node farms cannot guarantee high availability.


James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 3 June 2014 1:42 PM
To: ozMOSS
Subject: Workflow Manager in multi-server farm

Hi all,

I was pretty keen to get Workflow Manager installed so I can start using the 
SP2013 workflow platform...until I came across this well obscured statement in 
a related TechNet 
articlehttp://technet.microsoft.com/en-us/library/jj193434.aspx.

Workflow Manager only supports a farm with 1 computer or a farm with 3 
computers.

Which completely contradicts 
http://technet.microsoft.com/en-us/library/jj658588(v=office.15).aspx#section4

...if you have a farm that contains five servers ...you will still need to 
install the Workflow Manager Client on the four additional servers

And nowhere does it mentions what DBs are created, or whether you also need to 
install it on the SQL server.

Can someone who has been through this installation please help clarify?

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal



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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: InfoPath form upgrade support for next version of SharePoint

2014-05-27 Thread James Boman
Paul,

If I were you - I would wait.

Two reasons:

-  InfoPath will be fully supported until 2023.

-  The next version of SharePoint includes FoSL (Forms over 
SharePoint Lists).  This is essentially a port of the Access Services forms 
designer to work on top of standard SharePoint lists.  Once this is available, 
then people can re-author their customised SharePoint list forms.

Cheers,
  James.


James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 28 May 2014 8:28 AM
To: ozMOSS
Subject: InfoPath form upgrade support for next version of SharePoint

Hi guys,

I have a 2013 site that uses customised list forms (InfoPath) extensively. Does 
anyone know if MS plan to provide any kind of upgrade support for next 
SharePoint version? Or should I just go ahead and rebuild these in a supported 
way now? My preference is the latter.

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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


___
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: [SP2013] Duplicate Database Servers in Servers in Farm

2014-03-12 Thread James Boman
I have done this before on 2007 (a long time ago now) and the general strategy 
was to backup all the databases, restore them onto the new database server, and 
then use a STSADM command to rename the database server.  This then changed all 
references to the database server to the new server.

After a quick look the STSADM command appears to have been migrated to 
powershell herehttp://technet.microsoft.com/en-us/library/ff607556.aspx.


James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Thursday, 13 March 2014 2:32 PM
To: ozMOSS
Subject: [SP2013] Duplicate Database Servers in Servers in Farm

Hi all,

So I've inherited a 2013 farm in my new role and it has a number of issues. :)

One of my efforts to resolve SQL latency is to move all SP databases from a 
shared instance and onto a new server.

I've done this before in a properly configured farm without issue by following 
the usual steps. However, my Servers in Farm screen lists two instances of the 
same database server: by IP address and by server name.

Most of the content databases use the IP address, as do Search and other 
services. The add Content Database screen also uses the IP address be default.

So what to do? And what are the possible ramifications?


·   Can I simply create an Alias for each in CLICONFG?

·   Is there a way to easily identify all instances of the server name use 
and change these to the IP address (or vice versa) via Powershell?

Thanks in advance.

Regards,

Paul
--
Paul Noone
SharePoint Admin/Developer,
Keller Asutralia Group
M: 0409 283 961
E: p.no...@keller.com.aumailto:p.no...@keller.com.au | 
www.keller.com.auhttp://www.keller.com.au/
[Keller Australia | Global Scale, Local Focus]
Suite 607, 2-8 Brookhollow Ave
Baulkham Hills NSW 2153


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 information.



This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal


inline: image001.jpg___
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: some event receivers not firing when scanning into sharepoint

2014-02-20 Thread James Boman
Ishai,
  I have experienced this problem when uploading files via the 
object model on the server.

I found the cause of the problem was that my process was being terminated too 
quickly.  My main thread was uploading files, and the event handlers were 
running as additional threads for my process. (Not in w3wp, but in the process 
using the object model to upload the files).

I found that if I let the thread wait around a bit before terminating it - the 
event handlers would have a chance to finish processing.

Hope that helps.

Cheers,
  James.


James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ishai Sagi
Sent: Friday, 21 February 2014 1:34 PM
To: ozMOSS
Cc: ozmoss@ozmoss.com
Subject: Re: some event receivers not firing when scanning into sharepoint

Thanks- but not really our problem- we only use windows, and the scan works- 
just event handlers not operating.

Thanks, Ishai Sagi
Extelligent Design
www.extelligentdesign.comhttp://www.extelligentdesign.com
Sent from my phone
+61 488 789 786

On 21 Feb 2014, at 13:59, Sutha Thavaratnarajah 
sutha1...@hotmail.commailto:sutha1...@hotmail.com wrote:
Hi Ishai,

We use ABBY, We had an issue when we have two mode of authentication(form and 
windows).  as a quick solution, I just extend the web app with windows 
authentication only. then we did not have any issues.

Thanks.

Sutha.

From: is...@exd.com.aumailto:is...@exd.com.au
To: ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Subject: some event receivers not firing when scanning into sharepoint
Date: Fri, 21 Feb 2014 01:22:38 +

Hi everyone!

I have a client who uses ABBYY - a scanning and ocr solution that supports 
sharepoint. My issue is that when the software uploads a scanned document to my 
document library, some of my event handlers do not fire - while others do. This 
is regardless to sequence (I tried to put one that doesn't fire as higher 
sequence) or errors (the verbose logging shows the event handler doesn't even 
kick off).

If I upload a file to the library using the browser UI, the event handlers all 
kick in, no issues. Same if I use code to move files around.



So - can anyone think what I can do to troubleshoot this? Did anyone have a 
similar experience?







image002.jpgIshai 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 | MVP 
Profilehttps://mvp.support.microsoft.com/profile/Ishai | FAX: 02 61083517



___ Sponsored by Infotext - Amazing 
Search for Microsoft SharePoint - http://www.infotext.com/ ozmoss mailing list 
ozmoss@ozmoss.commailto:ozmoss@ozmoss.com 
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss
___
Sponsored by Infotext - Amazing Search for Microsoft SharePoint - 
http://www.infotext.com/
ozmoss mailing list
ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss
___
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: Question on sharepoint 2013 with SSL offloading

2014-02-19 Thread James Boman
My advice to customers is to avoid SSL offloading if you want any of the 
advanced integration features of SharePoint 2013.  From TechNet on Exchange 
Integrationhttp://technet.microsoft.com/library/jj552524(office.15).aspx:

Secure Sockets Layer (SSL) configured for the Default Zone is a requirement for 
web applications that are deployed in scenarios that support server-to-server 
authentication and app authentication. This is such a scenario. As a 
prerequisite for configuring Site Mailboxes, the computer that is running 
SharePoint Server must have SSL configured. For more information, see Create 
claims-based web applications in SharePoint 
2013http://technet.microsoft.com/en-US/library/ee806885.aspx and follow the 
steps for creating an SSL site collection and server certificate.

There are other scenarios with Project Server 2013 where SSL offloading is also 
not supported.

Cheers,
  James.



James Boman  ■ Office: +61 (08) 7200 1100tel:+61872001100 ■ Mobile: +61 (0) 
417 857 298tel:+61417857298 ■ Skype: JDBomanskype:JDBoman?call ■ Web: 
www.ipmo.com.auhttp://www.ipmo.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Marc  Sally Seydel
Sent: Thursday, 20 February 2014 4:36 PM
To: ozMOSS
Subject: Question on sharepoint 2013 with SSL offloading

Hi all

Has anyone sucessfully configured a sharepoint 2013 farm with ssl offloading 
and has OWA server (WAC) and the apps domain (apps store , access services)  
and workflow manager.

 I have been pulling my hair (what I have left).  the issue seems to be due to 
the public address being https,  I cannot get apps domain working.

sharepoint recieves as http sends as https (public adress) .

If I change public address to http apps domain works (appstore), but breaks the 
rest of hte farm.

I cannot find any documentation on it.

thanks in advance



--
Marc
Tattsgroup
___
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: Filter certain fields from available field types

2012-11-21 Thread James Boman
Paul,
   Perhaps you could just display fields where Hidden = False?  
That narrows the number of fields down considerably.
J.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Web Admin
Sent: Thursday, 22 November 2012 10:16 AM
To: ozMOSS
Subject: Filter certain fields from available field types

Hi all,

I'm developing a list field manager which allows List Managers to apply certain 
properties not available through the UI.

For obvious reasons, I would like to restrict the fields returned in my 
collection to those which aren't highly volatile. :)

Unfortunately I can't find a common SPFieldType or property to cover all cases. 
I'm currently removing Sealed and Computed only.

Does anyone have any suggestions that won't require dozens of explicit 
exceptions? I'm toying with the idea of creating a list view and only returning 
those fields.

Regards,

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


RE: Content deployment question

2012-06-20 Thread James Boman
There could be lots of reasons for that.

Two that spring to mind are:

· the CQWP is set to query a Content Type and your Content Type GUID's 
may not be matching between Authoring and PROD if you have not used a WSP 
package to deploy them.

· the CQWP uses a custom transform stored in the itemstyle.xsl file 
that has not been deployed with the content deployment job.  Manually moving 
this file over to PROD may help render the output.

... or it could be something else.

Cheers,
James.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Peter Milliner
Sent: Wednesday, 20 June 2012 4:23 PM
To: ozMOSS
Subject: Content deployment question

Hello all,

We have an authoring site and a production site - we run a content deployment 
from authoring to production server (our website)

I have recently added a CQWP to one of our pages and is viewable and working on 
authoring site but when full deployment is run - nothing is showing up on the 
production site (website).

Can anybody point me in the right direction.

Regards
Peter Milliner
SharePoint
Marketing and Communications
Bendigo TAFE
[Description: Bendigo TAFE colour]www.bendigotafe.edu.au
Disclaimer: This email is intended for the recipient only. It may contain 
confidential or sensitive information which should not be passed on to 
unauthorised persons. Views expressed in this email are the author's own and 
form no basis for any contractual obligation by Bendigo TAFE, nor do they imply 
a formal endorsement by the Institute of those views.
[Description: Bendigo TAFE env]Please consider the environment before printing 
this e-mail.
inline: image001.pnginline: image002.gif___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


Discussion Boards after SP1 + March 2012 CU?

2012-04-18 Thread James Boman
Hey there people,
   I was just wondering if any of you have experienced a problem 
where after SharePoint 2010 SP1 + Feb 2012 CU update the discussion boards 
operate like plain announcement lists - and don't show the special discussion 
view any more?

Cheers,
   James.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au


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


RE: SPS2010 User Profiles

2012-04-02 Thread James Boman
Nigel,
+1 for Chris’s idea of checking the Forefront Identity Manager Agent UI.

Run this: C:\Program Files\Microsoft Office Servers\14.0\Synchronization 
Service\UIShell\miisclient.exe
and have a poke around, commonly has better log detail than ULS.

Good luck,
   J.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Chris Grist
Sent: Monday, 2 April 2012 6:10 PM
To: ozMOSS (ozmoss@ozmoss.com)
Subject: RE: SPS2010 User Profiles

Have you checked the logs in the UI for miis?


Chris Grist | Service Delivery Manager  MCITP, MCPD, MCTS, VCP, CCA
[Loftus IT]
Applications | Infrastructure | Consulting

Tel 1300 LOFTUS | Mob 0432 898 500
Ground Floor, 175 Fullarton Road, Dulwich SA 5065
Email chris.gr...@loftusit.com.aumailto:chris.gr...@loftusit.com.au | Web 
http://www.loftusit.com.au

NOTE: This email and any files transmitted with it are confidential and may 
contain information intended only for the addressee(s). If you have received 
this communication in error, you must not copy or distribute any part of it or 
otherwise disclose its contents to anyone - please notify Loftus IT 
immediately. Loftus IT does not accept liability for any errors or omissions in 
the information provided herein. No representation is made that email and any 
files transmitted with it are virus-free - virus scanning is the responsibility 
of the recipient and is recommended.
From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Nigel Hertz
Sent: Monday, 2 April 2012 9:00 AM
To: ozMOSS (ozmoss@ozmoss.commailto:ozmoss@ozmoss.com)
Subject: SPS2010 User Profiles

Hi all

I’ve got a couple of questions relating to user profiles in SPS2010.


1)  The “MySite Cleanup Job” is responsible for removing user profiles (and 
mysites) of people that are “missing from import”. Does anyone know of a way to 
disable the email part of this clean-up job? This is the email that is sent to 
a user’s manager say “Person X has left, you have 14 days to check their stuff”.

2)  Our profile imports aren’t working properly. Every now and then, a new 
person joins and ha their account created in AD. When the profile import job 
runs, it only imports SOME of the data from AD. Other fields (e.g. Mobile, 
State, Post code and most importantly – Manager) don’t get imported. This 
leaves a bunch of empty lines in the profile view, however it also results in 
the ‘Organization Browser’ not working. For some other users it works fine 
without issue. As a test, I deleted my own profile and mysite, then manually 
ran a full import, and it didn’t bring in all the info. I’ve added 2 
screenshots to show an example.

I’m not too concerned about point 1 above, but point 2 is something I need to 
get resolved, and nothing I’ve tried works.

Nigel


Kind Regards,
Nigel Hertz

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



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


RE: Parser error with custom field control

2012-03-27 Thread James Boman
Paul,
   It really depends on how you have setup the XML file that 
defines your custom field.  Looks like you XML file should contain similar to:
?xml version=1.0 encoding=utf-8 ?
FieldTypes
  FieldType
Field Name=FieldTypeClass CEO.SP14.CascadingLookUp, 
CEO.SP14.CascadingLookUp, Version=1.0.0.0, Culture=neutral, PublicKeyToken= 
/Field
Field 
Name=FieldEditorUserControl/_controltemplates/CEO.SP14.CascadingLookUp/clueditcontrolwithfilter.ascx/Field


The reason you use ASCX files is so you can use the design surface.  When 
properly using the designer, this will create your code-behind with a partial 
class so that it can include the designer generated code.  Unlike previousl 
versions of Studio, you don't have to worry about Visual Studio 2010 deploying 
your code-behind files.  Your class declaration should look like:
namespace CEO.SP14.CascadingLookup {


public partial class CLUEditControlWithFilter : UserControl, IFieldEditor {

If you still can't get it to work, I would download some of the example custom 
field code in the SharePoint SDK as a reference to compare to yours.
Cheers,
   James.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 28 March 2012 12:46 PM
To: 'ozMOSS'
Subject: RE: Parser error with custom field control

I think I've found the problem but am not sure how to resolve it.
My assembly name and default namespace is CEO.SP14.CascadingLookup.

However the designer file is showing the following:

namespace CEO.SP14 {


public partial class CascadingLookUp {

Shouldn't this be:
namespace CEO.SP14.CascadingLookup {


public partial class CLUEditControlWithFilter {

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 28 March 2012 11:15 AM
To: 'ozMOSS'
Subject: RE: Parser error with custom field control

Hi James,
Yes, I can confirm everything is as you state.
The only exception is that I'm not specifying partial in my class declaration.
From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
James Boman
Sent: Tuesday, 27 March 2012 2:08 PM
To: ozMOSS
Subject: RE: Parser error with custom field control

Paul,
   Looks like this ASCX is actually the control for the field 
editor.  Two things - the ASCX needs to be in a folder in the CONTROLTEMPLATES 
directory, and the usercontrol code-behind must implement the IFieldEditor 
interface.  Declare your class in the code-behind like this:

public partial class MyFieldEditor : UserControl, IFieldEditor

Cheers,
   J.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 27 March 2012 8:48 AM
To: 'ozMOSS'
Subject: RE: Parser error with custom field control

OK. So I commented out the code behind reference and now get this.
Does that offer a clue??
Unable to cast object of type 
'ASP._controltemplates_ceo_cascadinglookup_clueditcontrolwithfilter_ascx' to 
type 'Microsoft.SharePoint.WebControls.IFieldEditor'.
Description: An unhandled exception occurred during the execution of the 
current web request. Please review the stack trace for more information about 
the error and where it originated in the code.

Exception Details: System.InvalidCastException: Unable to cast object of type 
'ASP._controltemplates_ceo_cascadinglookup_clueditcontrolwithfilter_ascx' to 
type 'Microsoft.SharePoint.WebControls.IFieldEditor'.

Source Error:
An unhandled exception was generated during the execution of the current web 
request. Information regarding the origin and location of the exception can be 
identified using the exception stack trace below.


Stack Trace:

[InvalidCastException: Unable to cast object of type 
'ASP._controltemplates_ceo_cascadinglookup_clueditcontrolwithfilter_ascx' to 
type 'Microsoft.SharePoint.WebControls.IFieldEditor'.]
   
Microsoft.SharePoint.ApplicationPages.FieldCustomizationPage.CreateChildControls()
 +1189
   Microsoft.SharePoint.ApplicationPages.FieldNewPage.CreateChildControls() +27
   System.Web.UI.Control.EnsureChildControls() +146
   
Microsoft.SharePoint.ApplicationPages.FieldCustomizationPage.OnLoad(EventArgs 
e) +83
   Microsoft.SharePoint.ApplicationPages.FieldNewPage.OnLoad(EventArgs e) +18
   System.Web.UI.Control.LoadRecursive() +66
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, 
Boolean includeStagesAfterAsyncPoint) +2428



From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun

RE: Parser error with custom field control

2012-03-26 Thread James Boman
Paul,
   Looks like this ASCX is actually the control for the field 
editor.  Two things - the ASCX needs to be in a folder in the CONTROLTEMPLATES 
directory, and the usercontrol code-behind must implement the IFieldEditor 
interface.  Declare your class in the code-behind like this:

public partial class MyFieldEditor : UserControl, IFieldEditor

Cheers,
   J.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 27 March 2012 8:48 AM
To: 'ozMOSS'
Subject: RE: Parser error with custom field control

OK. So I commented out the code behind reference and now get this.
Does that offer a clue??
Unable to cast object of type 
'ASP._controltemplates_ceo_cascadinglookup_clueditcontrolwithfilter_ascx' to 
type 'Microsoft.SharePoint.WebControls.IFieldEditor'.
Description: An unhandled exception occurred during the execution of the 
current web request. Please review the stack trace for more information about 
the error and where it originated in the code.

Exception Details: System.InvalidCastException: Unable to cast object of type 
'ASP._controltemplates_ceo_cascadinglookup_clueditcontrolwithfilter_ascx' to 
type 'Microsoft.SharePoint.WebControls.IFieldEditor'.

Source Error:
An unhandled exception was generated during the execution of the current web 
request. Information regarding the origin and location of the exception can be 
identified using the exception stack trace below.


Stack Trace:

[InvalidCastException: Unable to cast object of type 
'ASP._controltemplates_ceo_cascadinglookup_clueditcontrolwithfilter_ascx' to 
type 'Microsoft.SharePoint.WebControls.IFieldEditor'.]
   
Microsoft.SharePoint.ApplicationPages.FieldCustomizationPage.CreateChildControls()
 +1189
   Microsoft.SharePoint.ApplicationPages.FieldNewPage.CreateChildControls() +27
   System.Web.UI.Control.EnsureChildControls() +146
   
Microsoft.SharePoint.ApplicationPages.FieldCustomizationPage.OnLoad(EventArgs 
e) +83
   Microsoft.SharePoint.ApplicationPages.FieldNewPage.OnLoad(EventArgs e) +18
   System.Web.UI.Control.LoadRecursive() +66
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, 
Boolean includeStagesAfterAsyncPoint) +2428



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: Tuesday, 27 March 2012 8:54 AM
To: 'ozMOSS'
Subject: RE: Parser error with custom field control

I could but then nothing would render at all I don't.
It seems that the problem is with parsing the field, so maybe the XML schema 
has changed?
The control definitely inherits from System.Web.UI.UserControl!
From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com]mailto:[mailto:ozmoss-boun...@ozmoss.com] 
On Behalf Of Paul Turner
Sent: Tuesday, 27 March 2012 8:44 AM
To: ozMOSS
Subject: RE: Parser error with custom field control

Have you tried to take the CodeBehind out.


Regards

Paul Turner


NOTICE - This communication is intended only for the person or entity to which 
it is addressed and may contain confidential and/or privileged material. Any 
review, retransmission, dissemination or other use of, or taking any action in 
reliance on, this communication by persons or entities other than the intended 
recipient is prohibited. If you are not the intended recipient of this 
communication please delete and destroy all copies and telephone SMS Management 
 Technology on 1300 842 767 immediately. Any views expressed in this 
Communication are those of the individual sender, except where the sender 
specifically states them to be the views of SMS Management  Technology. Except 
as required by law, SMS Management  Technology does not represent, warrant 
and/or guarantee that the integrity of this communication has been maintained 
nor that the communication is free from errors, virus, interception or 
interference.
___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Parser error with custom field control

2012-03-25 Thread James Boman
Paul,
   Custom columns must be Farm scopes features, and so usually 
don't require safecontrol entries - however if you really need to mark your 
control as safe explicitly then you could consider using the built-in UI in the 
package manager to add the safe controls elements into the manifest.xml 
automatically.
Cheers,
   James.
[cid:image003.png@01CD0B64.7CF41AE0]



James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 26 March 2012 2:22 PM
To: ozMOSS (ozmoss@ozmoss.com)
Subject: Parser error with custom field control

I'm getting the following error when trying to create a new column (site and 
list) using this custom field.
[cid:image001.jpg@01CD0B63.3C22E4C0]
Everything is being deployed but the SafeControl entry is not being added to 
the web.config. I've got an empty elements file and it is packaged in the 
feature along with the solution. I don't want to explicitly set the Safe 
Control Entries property for the elements folder.
[cid:image002.png@01CD0B63.3C22E4C0]
Is there any kind of workaround?? Can I create a SafeControl item and add it to 
the feature??
inline: image001.jpginline: image002.pnginline: image003.png___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: [RESOLVED] VS2010 can't connect to ListData.svc

2012-03-19 Thread James Boman
Its so unsatisfying when that fixes it.
[cid:image001.jpg@01CD069B.5C97EB50]

James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 20 March 2012 12:46 PM
To: ozMOSS (ozmoss@ozmoss.com)
Subject: [RESOLVED] VS2010 can't connect to ListData.svc

Rebooted all farm servers. :|

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: Tuesday, 20 March 2012 11:57 AM
To: ozMOSS (ozmoss@ozmoss.commailto:ozmoss@ozmoss.com)
Subject: VS2010 can't connect to ListData.svc

Hi all,
A quick net search reveals I'm not alone with this issue but I've applied all 
suggested resolutions and still can't connect.

I can hit the service URL through a browser both locally and remotely over 
http. But VS keeps chucking bizarre errors.

Initially I was getting 404 or 400 errora. Since disabling anonymous access and 
Windows Auth on the _vti_bin directory and installing ADO.NET 1.5 CTP2 I am now 
receiving this error:

The HTML document does not contain Web service discovery information.
Metadata contains a reference that cannot be resolved: 
'http://dev/_vti_bin/ListData.svc'.
The requested service, 'http://dev/_vti_bin/ListData.svc' could not be 
activated. See the server's diagnostic trace logs for more information.
If the service is defined in the current solution, try building the solution 
and adding the service reference again.

And the Event log:

Log Name:  Application
Source:System.ServiceModel 3.0.0.0
Date:  20/03/2012 11:44:35 AM
Event ID:  3
Task Category: WebHost
Level: Error
Keywords:  Classic
User:  SYD \moss
Computer:  DEV
Description:
WebHost failed to process a request.
Sender Information: 
System.ServiceModel.ServiceHostingEnvironment+HostingManager/38493088
Exception: System.ServiceModel.ServiceActivationException: The service 
'/_vti_bin/ListData.svc' cannot be activated due to an exception during 
compilation.  The exception message is: Exception has been thrown by the target 
of an invocation.. --- System.Reflection.TargetInvocationException: Exception 
has been thrown by the target of an invocation. --- 
System.NullReferenceException: Object reference not set to an instance of an 
object.
   at Microsoft.SharePoint.Linq.ListDataService..ctor()
   --- End of inner exception stack trace ---
   at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, 
SignatureStruct signature, IntPtr declaringType)
   at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, 
Binder binder, Object[] parameters, CultureInfo culture)
   at 
System.ServiceModel.Description.ServiceDescription.CreateImplementation(Type 
serviceType)
   at System.ServiceModel.ServiceHost.CreateDescription(IDictionary`2 
implementedContracts)
   at 
System.ServiceModel.ServiceHostBase.InitializeDescription(UriSchemeKeyedCollection
 baseAddresses)
   at System.ServiceModel.ServiceHost..ctor(Type serviceType, Uri[] 
baseAddresses)
   at System.ServiceModel.Web.WebServiceHost..ctor(Type serviceType, Uri[] 
baseAddresses)
   at System.Data.Services.DataServiceHost..ctor(Type serviceType, Uri[] 
baseAddresses)
   at 
Microsoft.SharePoint.Client.Services.MultipleBaseAddressDataServiceHost..ctor(Type
 serviceType, Uri[] baseAddresses)
   at 
Microsoft.SharePoint.Client.Services.MultipleBaseAddressDataServiceHostFactory.CreateServiceHost(Type
 serviceType, Uri[] baseAddresses)
   at 
System.ServiceModel.Activation.ServiceHostFactory.CreateServiceHost(String 
constructorString, Uri[] baseAddresses)
   at 
System.ServiceModel.ServiceHostingEnvironment.HostingManager.CreateService(String
 normalizedVirtualPath)
   at 
System.ServiceModel.ServiceHostingEnvironment.HostingManager.ActivateService(String
 normalizedVirtualPath)
   at 
System.ServiceModel.ServiceHostingEnvironment.HostingManager.EnsureServiceAvailable(String
 normalizedVirtualPath)
   --- End of inner exception stack trace ---
  at 
System.ServiceModel.ServiceHostingEnvironment.HostingManager.EnsureServiceAvailable(String
 normalizedVirtualPath)
   at 
System.ServiceModel.ServiceHostingEnvironment.EnsureServiceAvailableFast(String 
relativeVirtualPath)
Process Name: w3wp
Process ID: 4148

Event Xml:
Event xmlns=http://schemas.microsoft.com/win/2004/08/events/event;
  System
Provider Name=System.ServiceModel 3.0.0.0 /
EventID Qualifiers=491543/EventID
Level2/Level
Task5/Task
Keywords0x80/Keywords
TimeCreated SystemTime=2012-03-20T00:44:35.0Z /
EventRecordID51971/EventRecordID
ChannelApplication/Channel
ComputerDEV /Computer
Security UserID=S-1-5-21-671855840-1878179929-22317393-21179 /
  /System
  EventData

RE: Hidden Risk list fields reappearing

2012-03-12 Thread James Boman
Kirk,
   That's very odd.  I know that hiding fields in risk lists is 
very common, and we do it for many of our clients.  We tend not to rename any 
of the OOB Risks/Issues field names as it causes the Project Server cubes to 
break.

Before altering the list-level content type on the Risks list in your template 
site, you may want to try updating the Project Server content types using the 
bulk edit tool option in Server Settings:
[cid:image002.png@01CD0127.461C8940]

After that is complete try re-creating your template from the template site.

Cheers,
   James.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Kirk Barrett
Sent: Thursday, 8 March 2012 6:06 PM
To: ozMOSS
Subject: Hidden Risk list fields reappearing

Hi All,
I have a baffling SharePoint/Project Server 2010 issue that I thought maybe th 
OzMOSS brains trust might be able to help me with.

I am working on customising  the Risks list in a standard project server 
project site. At the moment the customisation involves hiding a few fields we 
don't wish to use, renaming a couple of fields and changing the order. Once 
this is done we save the site as a template and associate it with a project 
type in Project Server.

The problem I'm encountering is that when a site is created (both manually and 
as part of creating a new project in Project Server) from the customised site 
template all of the hidden fields are now visible and the reordering is lost. 
The field renaming is still in place though.

I've been scratching my head on this one on and off for a couple of days with 
no joy. Anyone have any ideas?

Thanks in advance,


Kirk.
inline: image002.png___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Custom Workflow Activity

2011-12-18 Thread James Boman
As others have mentioned - passing the current user token into the SPSite 
constructor while Elevating is probably not the best idea.
IMHO - If you are going pass a user token to the SPSite constructor it should 
be:

SPContext.Current.Site.SystemAccount.UserToken

Which is what we usually do this instead of Elevating - as the 
RunWithElevatedPrivileges is an expensive COM call, that can leak memory (at 
least in 2007).  In our team the rule is you only use 
RunWithElevatedPrivileges if you are trying to make off-box connections, or 
messing with Farm Properties etc.

The other obvious thing to consider with custom workflow activities is that 
from a security point of view they should ideally be registered in the 
web.config:

  WorkflowService Assembly=Your.Assembly, Version=1.0.0.0, 
Culture=neutral, PublicKeyToken=1234567890123456 
Class=Your.Assembly.ActivityService /

Also consider adding your assembly (and any extra assemblies it loads) to the 
configuration/System.Workflow.ComponentModel.WorkflowCompiler/authorizedTypes 
section.

There are also extra considerations with workflow activities when you have a 
App Server in the farm that does NOT run the WFE role.

Good Luck,
   James.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ishai Sagi
Sent: Saturday, 17 December 2011 9:09 AM
To: ozMOSS
Subject: RE: Custom Workflow Activity

That code doesn't really elevate privilages - either the token or the 
RunWithElevatedPrivileges is redundant. I think the problem will be in the 
CreateTerm function. If you share that with us we may see the cause of the 
issue.


[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 Ajay
Sent: Friday, 16 December 2011 5:49 PM
To: ozMOSS
Subject: Fwd: Custom Workflow Activity

I have discovered it's permission issue when workflow starts automatically.
I have elevated priveleges and also opened the site using token of admin 
account stil no luck.
See my code below
SPUser user = web.AllUsers[mydomain\\sharePoint_admin];
SPUserToken token = user.UserToken;
SPSecurity.RunWithElevatedPrivileges(delegate()

{
using (SPSite site = new SPSite(siteCollection.ID, token))

{

CreateTerm(site, title);

}

});

-- Forwarded message --
From: Ajay akhanna...@gmail.commailto:akhanna...@gmail.com
Date: Fri, Dec 16, 2011 at 7:11 PM
Subject: Custom Workflow Activity
To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com

Hi Guys,

I have created a custom WF activity hooked up in SharePoint designer.
It creates a sub-site and some user groups.

So far so good, then the requirement came to add the site name to the Term 
Store.

The workflow is configured to start on Item Added.

On Automatic start, problem is the workflow just creates the sub-site, does not 
create the term store entry and shows status as Cancelled.
When I manually start this workflow, than everything is fine, it creates site, 
adds term store entry and shows Status as Completed.
I ran a debugger stepped through the code all works fine.

What can be the reason for this.. is it permissions / identity issue when it 
runs manually opposed to automatic workflow start.

Cheers,
A

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


RE: moving dbs

2011-05-31 Thread James Boman
I have used the STSADM -o renameserver method with some success, because from 
what I remember you can't use the SQL alias method if you are using the default 
instance of a SQL Server.  I though you had to have installed against a named 
instance to be able to create the SQL alias properly.

Thus for installations already using the default instance of a SQL Server the 
STSADM -o renameserver was the best approach.

My memory is a bit rusty on this - so am happy to be corrected if wrong.

Cheers,
James.


James Boman  ■ Telephone: +61 (08) 7200 1100 ■ Mobile: +61 (0) 417 857 298 ■ 
Web: http://www.ipmo.com.au || http://www.projectserver.com.au

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Jason Taylor
Sent: Wednesday, 1 June 2011 1:47 PM
To: ozMOSS
Subject: RE: moving dbs

Not a DNS alias, a SQL Server alias. You configure this using the program: 
cliconfg.exe. Just copy this into the Windows Run box then Alias tab to 
configure using a TCP connection.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Chris Grist
Sent: Wednesday, 1 June 2011 1:43 PM
To: 'ozMOSS'
Subject: RE: moving dbs

So this would just be a DNS Alias?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Jason Taylor
Sent: Wednesday, 1 June 2011 12:30 PM
To: ozMOSS
Subject: RE: moving dbs

A while ago we had this situation of moving to another server. We ended up 
using a more simple approach and just created a SQL Server database alias using 
the old server as the alia name and the new server as the server name. Since 
then we install SharePoint using a database alias so we never have to deal with 
this again.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Chris Grist
Sent: Wednesday, 1 June 2011 12:15 PM
To: ozMOSS
Subject: moving dbs

Hi All,
Has anyone been through this process: 
http://technet.microsoft.com/en-us/library/cc512725.aspx
How long did it take you and any thing to be aware of?

Chris Grist
MCITP, MCTS, VCP
Senior Technical Consultant
[Description: 
http://lftzm01.loftusit.local:80/home/chr...@zimbra.loftusit.com.au/Briefcase/image001.gif]
Ground Level
175 Fullarton Rd
Dulwich SA 5065

t: (08) 8304 
f: (08) 8364 2910
m: 0432 898 500
NOTE: This email and any files transmitted with it are confidential and may 
contain information intended only for the addressee(s). If you have received 
this communication in error, you must not copy or distribute any part of it or 
otherwise disclose its contents to anyone - please notify Loftus IT 
immediately. Loftus IT does not accept liability for any errors or omissions in 
the information provided herein. No representation is made that email and any 
files transmitted with it are virus-free - virus scanning is the responsibility 
of the recipient and is recommended.


SAGE is the first and only Australian company certified to the global benchmark 
standards of the Control Systems Integration Association. To see how this 
benefits you, simply visit www.controlsys.orghttp://www.controlsys.org

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.

SAGE is the first and only Australian company certified to the global benchmark 
standards of the Control Systems Integration Association. To see how this 
benefits you, simply visit www.controlsys.orghttp://www.controlsys.org

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.
inline: image001.gif___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: SharePoint 2010 and Rights Management Services?

2011-03-15 Thread James Boman
crickets

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Jeremy Thake
Sent: Tuesday, 15 March 2011 7:39 PM
To: ozMOSS
Subject: RE: SharePoint 2010 and Rights Management Services?

tumbleweed ;-)

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Sezai Komur
Sent: Tuesday, 15 March 2011 12:05 PM
To: ozmoss
Subject: SharePoint 2010 and Rights Management Services?

http://blogs.msdn.com/b/rms/archive/2010/02/05/integrating-ad-rms-and-sharepoint.aspx

Has anyone had a look at Rights Management Services with SharePoint Server 2010?

All I see online are references to RMS and MOSS 2007.

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


RE: MOSS 2007 - 2010 upgrade path and host headers

2011-03-14 Thread James Boman
Paul,
You should be able to set up the new 2010 farm with the 
identical host headers of your production farm without causing any issues just 
remember:

* Change the TTL on the SOA record in DNS to a low value now, before 
you need to do the cutover.

* If using the server console to test the website:

o   Apply the loopback check fix method 2: 
http://support.microsoft.com/kb/896861

o   Modify the hosts file in \Windows\System32\drivers\etc to point to 
localhost for the host header name.

* Do the content migration

* Change the hosts file on UAT machines, for the testers to validate 
the new 2010 installation.

* Once the migration is complete, change the A record (or CNAME) to 
point to your new farm/load balancer and you're good to go!

* Remember to get rid of the hosts entry on the UAT machines and the 
server console, and set TTL in DNS back to a more reasonable level.
Cheers,
James.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 15 March 2011 9:25 AM
To: ozMOSS
Subject: MOSS 2007 - 2010 upgrade path and host headers

Hi guys,

We're looking at setting up a 2010 farm and getting everything ready for 
content migration and I want to get a rough project plan in place. I'm unsure 
how to manage the process of identical host headers and subsequent DNS changes 
for existing web apps. I would be interested to hear how others managed this.

Kind regards,

Paul Noone

---
Online Developer/SharePoint Administrator
Information Communication and Technology
Catholic Education Office, Sydney
p: (02) 9568 8461
f: (02) 9568 8483
e: paul.no...@ceosyd.catholic.edu.aumailto:paul.no...@ceosyd.catholic.edu.au
w: http://www.ceosyd.catholic.edu.au/

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


RE: MultiColumn Custom Field Problem

2011-03-08 Thread James Boman
Couple of downsides of related field property to keep in mind:

1.   In my experience the RelatedField property breaks site templates, as 
its not part of the schema.

2.   The only way to display the value of the related field in list view is 
to use CAML DisplayPatterns that are now deprecated. If you try to use XSL 
rendering for the field you cannot get the VALUE of the related field if it is 
not already in the view - so no matter how good your XPATH skills are, you 
can't make a custom field that renders the contents of a related field if the 
related field is not in the view.

Where does this leave you?

* Use standard custom properties on your custom field to store the 
name(s) of your related field(s).

* Use the related fields in the list views to enable 
sorting/grouping/filtering, while using the custom field in the 
new/edit/display forms.

Cheers,
James.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Turner
Sent: Wednesday, 9 March 2011 11:40 AM
To: ozMOSS
Subject: RE: MultiColumn Custom Field Problem


Use related fields (set it's value to what you want to sort on).



http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfield.relatedfield.aspx



http://msdn.microsoft.com/en-us/library/ms459059.aspx



Regards,

Paul Turner
MCT, MCPD: Enterprise, MCSD, MCDBA, MCTS, Microsoft vTSP
Consultant

M: 0412 748 168
A: 66 Henley Beach Road, Mile End SA 5031
E: paul.tur...@dws.com.aumailto:paul.tur...@dws.com.au  W: 
www.dws.com.auhttp://www.dws.com.au/

This email and any files transmitted with it are confidential and are only for 
the use of the person to whom they are addressed. If you are not the intended 
recipient you have received this email in error and are requested to delete it 
immediately. Any opinion expressed in this e-mail may not necessarily be that 
of DWS Pty Ltd.
Please consider the environment before printing this email.

From: ozmoss-boun...@ozmoss.com [ozmoss-boun...@ozmoss.com] on behalf of James 
Boman [james.bo...@i-pmo.com.au]
Sent: Wednesday, 9 March 2011 10:10 AM
To: ozMOSS
Subject: RE: MultiColumn Custom Field Problem
When making custom fields, the underlying data type is very important.  The 
Multi-Column Value Type is very useful for storing arrays of values, but the 
downside is that it can't be sorted, filtered, grouped, indexed or edited using 
the normal SharePoint UI.

You might want to consider changing to a different underlying data type to get 
more OOB functionality.  We have several custom fields that when added to a 
list, create other simple columns in the list that don't appear on the 
new/edit/display forms to enable indexing, grouping and other OOB features.

Cheers,
J.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul English
Sent: Wednesday, 9 March 2011 10:02 AM
To: 'ozmoss@ozmoss.com'
Subject: MultiColumn Custom Field Problem

I'm having an issue with a custom field that I've created.  It is a MultiColumn 
field that renders a list of names taken from a BDC.  The problem I have is 
when I add the column to a Document library I get the following message appear.

This field type cannot be edited from most client programs and might block the 
programs from saving documents to this library.

When I create a new document in the library the Doc panel displays the control 
but is greyed out and says Edit property on server. I've set the 
AllowBaseTypeRendering property to True and the ParentType property is 
MultiColumn in my fieldtypes.xml as suggested in several Google posts but this 
hasn't made any difference. The field seems to work fine when added to a List.

Has anybody been able to resolve this problem using a DropDown? Could it be 
because Word doesn't recognise dropdowns as MultiColumns ?

Thanks

Paul






The information transmitted by this e-mail is intended only for the addressee 
and may contain confidential  and/or privileged material. Any interception, 
review, retransmission, dissemination, or other use of, or taking of any action 
upon this information by persons or entities other than the intended recipient 
is prohibited by law and may subject them to criminal or civil liability. 
Unless explicitly attributed, the opinions expressed are personal and not those 
of HomeStart or the South Australian Government. If you received this 
communication in error, please contact us immediately at 
ad...@homestart.com.aumailto:ad...@homestart.com.au, and delete the 
communication.
___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Encode XSL field value

2011-03-06 Thread James Boman
Could you try something like this?

input type=button
value=Enquire Now
name=btnFormAction
onclick=var strTitle = encodeURIComponent('{@Title}'); 
window.location.href='../Apply/Apply.aspx?title=' + strTitle; return false;
/



From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 7 March 2011 3:00 PM
To: ozMOSS
Subject: Encode XSL field value

Hi all,

I've customised a list form with a form button that redirects to a new form 
where it pre-populates the Title field using the value supplied in the query 
string. Problem is users want to be able to use illegal characters in the title 
field!

Can someone tell me how I can encode my Title field for this purpose?

input type=button
value=Enquire Now
name=btnFormAction
onclick=window.location.href='../Apply/Apply.aspx?title={@Title}'; return 
false;
/

I'm assuming I need to create another variable that holds the encoded value but 
not sure of the best method.

xsl:variable name=title2
 xsl:value-of select=@Title disable-output-escaping=yes/
/xsl:variable

xsl:copy-of select=$title2 /

Then use that in my query string:

window.location.href='../Apply/Apply.aspx?title={$title2}'

But I can't seem to get this working as expected. Maybe the order or placement 
in the template? : \

Kind regards,

Paul Noone

---
Online Developer/SharePoint Administrator
Information Communication and Technology
Catholic Education Office, Sydney
p: (02) 9568 8461
f: (02) 9568 8483
e: paul.no...@ceosyd.catholic.edu.aumailto:paul.no...@ceosyd.catholic.edu.au
w: http://www.ceosyd.catholic.edu.au/

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


RE: Profile database and photos (MOSS 2007)

2011-03-02 Thread James Boman
Nigel,
I remember I implemented the Write-Back for your SharePoint 
2003 installation - was this re-implemented in some fashion for your SharePoint 
2007 installation?

Cheers,
J.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Thursday, 3 March 2011 10:01 AM
To: ozMOSS
Subject: Profile database and photos (MOSS 2007)

Hey all

Got a strange question that's sort of bugging me.

In the user profile database on MOSS 2007, there's the option to add user 
photos. Currently, all our employee photos are stored in a teamsite, and their 
'mySite' points their photo URL to that teamsite. This URL is also stored in 
Active Directory (under the 'websites' | 'other' property)

What generally happens is reception updates these URL's in the profile database 
on SharePoint.

My understanding is that up until a week ago, the profile database updated AD 
with these URL's, but since last week Wednesday, this has stopped happening, 
with the result being that AD now overwrites the picture URL field in 
SharePoint (i.e. If the URL has been changed in SharePoint, AD overwrites it, 
with the result being that ).

Is this 'writeback' to AD even possible out the box? (I never thought it was, 
but the evidence seems to point otherwise) Nothing has changed in the UPD to my 
knowledge, and the property field mappings have been unchanged for a few months.




[cid:image001.png@01CBD990.09B6E410]




*Please ensure that you log all issues or requests with the IT Service Centre. 
When logging calls, please include a detailed description of the problem.*


Nigel Hertz

Software Developer | Information Technology
Stockland
Level 25 | 133 Castlereagh Street | Sydney NSW 2000
T: 02 9035 2617 | F: 02 8988 2617



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.
inline: image001.png___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Updating list item permissions via SharePoint Web Services

2010-12-16 Thread James Boman
Joseph,
You should probably use Microsoft.SharePoint.Client and not use 
the webservices directly.

See here: http://msdn.microsoft.com/en-us/library/ee535228.aspx

using System;
using Microsoft.SharePoint.Client;
using SP = Microsoft.SharePoint.Client;

namespace Microsoft.SDK.SharePointServices.Samples
{
class BreakSecurityInheritance
{
static void Main()
{
string siteUrl = http://MyServer/sites/MySiteCollection;;
ClientContext oContext = new ClientContext(siteUrl);
SP.List oList = oContext.Web.Lists.GetByTitle(Announcements);

oList.BreakRoleInheritance(true, false);

oContext.ExecuteQuery();
}
}
}

Cheers,
James

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Joseph Clark
Sent: Friday, 17 December 2010 11:49 AM
To: ozMOSS
Subject: Updating list item permissions via SharePoint Web Services

Howdy all,

I'm trying to write some code that updates permissions on a List/document 
library in SharePoint. I can see there is a Permissions 
http://msdn.microsoft.com/en-us/library/permissions.permissions_methods%28v=office.12%29.aspx
 web service for performing this kind of work, but there doesn't appear to be 
anything exposed by this interface for changing the permissions on individual 
items in a list (ie. the usual SPListItem.BreakRoleInheritance stuff).

Does anyone know if this is possible using the out-of-the-box web services? Or 
will I have to deploy my own web service for this purpose?

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


RE: Updating list item permissions via SharePoint Web Services

2010-12-16 Thread James Boman
Ah - okay, yes this is the new Client Object model available from 
JavaScript/Silerlight/.NET is a much more pleasant way to deal with the 
SharePoint webservices.  Keep in mind the authentication schemes vary slightly 
on the new webservices vs. 2007 (with 2010 using claims-based auth) so you may 
find writing individual handlers for each is the best approach.

Although not documented by Microsoft there are some examples of using the 2007 
web services floating around that might help:

ws_Permissions.Permissions ws = newws_Permissions.Permissions();
NetworkCredential nc = newNetworkCredential(sUserName, sPassword, sDomain);
ws.Credentials = nc;
ws.Url = sOneSubSite +@/_vti_bin/permissions.asmx;
int iMask = 0x0001;
ws.AddPermission(Shared Documents,List, Manager, role, iMask);
int iMask2 =0x0001|0x0002|0x0004|0x0008;
ws.UpdatePermission(Shared Documents,List, Manager, role, iMask2);


(from 
http://aspalliance.com/791_Using_SharePoint_Web_Services_to_Change_Subsite_Permissions.all)

Cheers,
J.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Joseph Clark
Sent: Friday, 17 December 2010 12:50 PM
To: ozMOSS
Subject: Re: Updating list item permissions via SharePoint Web Services

Ah, that's the new client model in SP2010? It looks awesome! I have to support 
both SP2010 and MOSS/WSS3 unfortunately :(

On Fri, Dec 17, 2010 at 1:01 PM, James Boman 
james.bo...@i-pmo.com.aumailto:james.bo...@i-pmo.com.au wrote:
Joseph,
You should probably use Microsoft.SharePoint.Client and not use 
the webservices directly.

See here: http://msdn.microsoft.com/en-us/library/ee535228.aspx

using System;
using Microsoft.SharePoint.Client;
using SP = Microsoft.SharePoint.Client;

namespace Microsoft.SDK.SharePointServices.Samples
{
class BreakSecurityInheritance
{
static void Main()
{
string siteUrl = http://MyServer/sites/MySiteCollection;;
ClientContext oContext = new ClientContext(siteUrl);
SP.List oList = oContext.Web.Lists.GetByTitle(Announcements);

oList.BreakRoleInheritance(true, false);

oContext.ExecuteQuery();
}
}
}

Cheers,
James

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Joseph Clark
Sent: Friday, 17 December 2010 11:49 AM
To: ozMOSS
Subject: Updating list item permissions via SharePoint Web Services

Howdy all,

I'm trying to write some code that updates permissions on a List/document 
library in SharePoint. I can see there is a Permissions 
http://msdn.microsoft.com/en-us/library/permissions.permissions_methods%28v=office.12%29.aspx
 web service for performing this kind of work, but there doesn't appear to be 
anything exposed by this interface for changing the permissions on individual 
items in a list (ie. the usual SPListItem.BreakRoleInheritance stuff).

Does anyone know if this is possible using the out-of-the-box web services? Or 
will I have to deploy my own web service for this purpose?

Cheers,
Joe.

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

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


RE: Publish Page creation location - MOSS 2007

2010-11-23 Thread James Boman
I can confirm - Publishing Pages don't work properly outside the Pages 
library.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 24 November 2010 1:43 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

I don't think you'll be able to do that Nigel.

Publishing pages are special, which is why you only get one Pages library per 
web. I don't think you can even rename the Pages library without running into 
problems.

Regards,

Paul

--
Online Developer/Administrator,
ICT Projects Team
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Wednesday, 24 November 2010 2:11 PM
To: ozMOSS
Subject: Publish Page creation location - MOSS 2007

Hi all

Is it possible to change the location that a publishing page is created in? The 
scenario is as follows:

I want to replace a bunch of legacy html files that use the meta-refresh tag to 
redirect users, with publishing pages that use the 'redirect page' page layout.

I've tested this, and it works perfectly. My only issue is that they are 
created in the pages document library, and I want them in a document library 
of my choosing.

Is it possible to do this, or should I create them by default, and then use the 
'manage content and structure' to move them where I want?

Nigel




Nigel Hertz

Software Developer | Information Technology
Stockland
Level 25 | 133 Castlereagh Street | Sydney NSW 2000
T: 02 9035 2617 | F: 02 8988 2617



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


RE: Publish Page creation location - MOSS 2007

2010-11-23 Thread James Boman
You could just go for simplicity and make a webpart page anywhere your like 
with a content editor webpart containing something like:

script
window.setInterval(window.location='http://www.google.com';, 1000);
/script



From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Michael Hanes
Sent: Wednesday, 24 November 2010 2:12 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

 Any idea as to what sort of issues you might run into?

Certain death ;-) Simply put, the page library is a core component of the 
publishing feature.

As it seems like you main priority is simply redirecting users, have you 
considered other alternatives outside SharePoint? I love reverse proxies in 
front of a web-facing deployment to handle stuff like this; if your redirect 
list is fixed (and users don't need to be getting in there) you could also use 
URL rewriting-anything that will return an HTTP 301 or 302 response.

Also have a look at http://urlrewriter.net/

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Wednesday, 24 November 2010 11:31 AM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

Not the answer I wanted to hear :) Any idea as to what sort of issues you might 
run into? I created a couple and moved them before my original mail, and the 
redirects seemed to work okay.

Michael - thanks for the link - I'll have a read through that article now.

N



From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
James Boman
Sent: Wednesday, 24 November 2010 2:19 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

I can confirm - Publishing Pages don't work properly outside the Pages 
library.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 24 November 2010 1:43 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

I don't think you'll be able to do that Nigel.

Publishing pages are special, which is why you only get one Pages library per 
web. I don't think you can even rename the Pages library without running into 
problems.

Regards,

Paul

--
Online Developer/Administrator,
ICT Projects Team
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Wednesday, 24 November 2010 2:11 PM
To: ozMOSS
Subject: Publish Page creation location - MOSS 2007

Hi all

Is it possible to change the location that a publishing page is created in? The 
scenario is as follows:

I want to replace a bunch of legacy html files that use the meta-refresh tag to 
redirect users, with publishing pages that use the 'redirect page' page layout.

I've tested this, and it works perfectly. My only issue is that they are 
created in the pages document library, and I want them in a document library 
of my choosing.

Is it possible to do this, or should I create them by default, and then use the 
'manage content and structure' to move them where I want?

Nigel




Nigel Hertz

Software Developer | Information Technology
Stockland
Level 25 | 133 Castlereagh Street | Sydney NSW 2000
T: 02 9035 2617 | F: 02 8988 2617



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

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


RE: Publish Page creation location - MOSS 2007

2010-11-23 Thread James Boman
Even if you have a short or no delay before redirect, you can always edit the 
page by putting a ?contents=1 on the end of the url, and then temporarily 
close, or delete the CEWP.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Wednesday, 24 November 2010 3:18 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

Yeah, I think that might be the best route - stick some text there saying you 
will be redirected in x seconds - otherwise you won't be able to edit it later 
:)




*Please ensure that you log all issues or requests with the IT Service Centre. 
When logging calls, please include a detailed description of the problem.*

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
James Boman
Sent: Wednesday, 24 November 2010 3:27 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

You could just go for simplicity and make a webpart page anywhere your like 
with a content editor webpart containing something like:

script
window.setInterval(window.location='http://www.google.com';, 1000);
/script



From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Michael Hanes
Sent: Wednesday, 24 November 2010 2:12 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

 Any idea as to what sort of issues you might run into?

Certain death ;-) Simply put, the page library is a core component of the 
publishing feature.

As it seems like you main priority is simply redirecting users, have you 
considered other alternatives outside SharePoint? I love reverse proxies in 
front of a web-facing deployment to handle stuff like this; if your redirect 
list is fixed (and users don't need to be getting in there) you could also use 
URL rewriting-anything that will return an HTTP 301 or 302 response.

Also have a look at http://urlrewriter.net/

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Wednesday, 24 November 2010 11:31 AM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

Not the answer I wanted to hear :) Any idea as to what sort of issues you might 
run into? I created a couple and moved them before my original mail, and the 
redirects seemed to work okay.

Michael - thanks for the link - I'll have a read through that article now.

N



From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
James Boman
Sent: Wednesday, 24 November 2010 2:19 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

I can confirm - Publishing Pages don't work properly outside the Pages 
library.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 24 November 2010 1:43 PM
To: ozMOSS
Subject: RE: Publish Page creation location - MOSS 2007

I don't think you'll be able to do that Nigel.

Publishing pages are special, which is why you only get one Pages library per 
web. I don't think you can even rename the Pages library without running into 
problems.

Regards,

Paul

--
Online Developer/Administrator,
ICT Projects Team
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Wednesday, 24 November 2010 2:11 PM
To: ozMOSS
Subject: Publish Page creation location - MOSS 2007

Hi all

Is it possible to change the location that a publishing page is created in? The 
scenario is as follows:

I want to replace a bunch of legacy html files that use the meta-refresh tag to 
redirect users, with publishing pages that use the 'redirect page' page layout.

I've tested this, and it works perfectly. My only issue is that they are 
created in the pages document library, and I want them in a document library 
of my choosing.

Is it possible to do this, or should I create them by default, and then use the 
'manage content and structure' to move them where I want?

Nigel




Nigel Hertz

Software Developer | Information Technology
Stockland
Level 25 | 133 Castlereagh Street | Sydney NSW 2000
T: 02 9035 2617 | F: 02 8988 2617



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

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

Stockland Notice: If this communication has

RE: Help with 401 errors on public site

2010-11-22 Thread James Boman
These behavioural inconsistencies are usually caused by the timing of when the 
ViewFormPagesLockdown feature first gets enabled, and the inheritance state of 
each web.

If you have some sites in an existing site collection that have security 
inheritance already broken at the first time you enable the 
ViewFormPagesLockdown feature they may not inherit the Special Permission level 
that ViewFormPagesLockdown creates, while other sites get it.  Once you have 
enabled the ViewFormPagesLockdown feature once, the special permission level is 
already created,  the behaviour is set, and deactivating/activating it has no 
effect on the inconsistent sites.

After activating ViewFormPagesLockdown, breaking inheritance on sites in the 
collection maintains the special permission level, even though you can't see it 
through the UI.  So you may end up with two sites both with broken security 
inheritance that behave differently from an Anonymous point of view.

I have seen some solutions to the problem that involve ignoring the 
ViewFormPagesLockdown feature and instead changing the class that the system 
pages inherit from (like View All Site Content - viewlsts.aspx) to something 
like SecuredFormPage (or something like it).  But have never recommended it due 
to later support concerns.

As you can tell, I have a few battle scars on this one.

Cheers,
J.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 23 November 2010 8:15 AM
To: ozMOSS
Subject: RE: Help with 401 errors on public site

Hi Chris,

We have exactly the same behaviour with a subsite collection doing all the 
right things. Settings are identical and I can't for the life of me work out 
why. ViewFormpagesLockdown is disabled, anonymous access is set sitewide - and 
yet anonymous users CANNOT directly access anything in _layouts and are not 
able to view list form pages with explicit access enabled on the list.

I wound up deleting that site as an aberration after extensive testing to find 
the cause. Some sources believe it was the combination of enabling anonymous 
access for Lists and Libraries, then deactivating the feature, then changing 
access to sitewide... In the end I never cracked it.

If you ever work it out I'd love to know the answer; especially if you can get 
it working for a root site!

Regards,

Paul

--
Online Developer/Administrator,
ICT Projects Team
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Chris Howell
Sent: Tuesday, 23 November 2010 12:20 AM
To: ozMOSS
Subject: Re: Help with 401 errors on public site

Hi,

Thanks for all the responses. Still working my way through them and need to 
discuss with my colleague who I'm working with on this issue.

Strangest thing we've found now is that we actually have a sub site that 
exhibits the behaviour we would like but need to get to the bottom of why this 
sub site does it but not others.

Will keep digging and let you know what we find/come up with.

Cheers,

Chris

From: Paul Noone 
paul.no...@ceosyd.catholic.edu.aumailto:paul.no...@ceosyd.catholic.edu.au
Reply-To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Date: Mon, 22 Nov 2010 08:29:38 +1100
To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Subject: RE: Help with 401 errors on public site

Hi Chris,

There is no way around this without writing a customer provider. We hit the 
same issue and the decision was made to disable the feature to return normal 
functionality and access to much needed list forms by users and search 
botsalike.

There were two caveats around this:


1.Modify all list views to remove Modified and Checked-Out fields to 
alleviate some of the privacy concerns.

a.I strongly suggest a coded solution using a provisioning feature at site 
creation.

b.We additionally purchased a solution that allows us to permission fields.

2.Hiding the View All Site Content page.

a.Still haven't got around to this because I can't find a simple solution 
that doesn't involved modifying the OOTB page.

b.Am considering creating a new page that requires authenticated users and 
replacing the link to viewlsts.aspx with the new page.

Would be interested in hearing what solution you ultimately apply.

Regards,

Paul

--
Online Developer/Administrator,
ICT Projects Team
CEO Sydney

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Chris Howell
Sent: Saturday, 20 November 2010 11:21 AM
To: ozMOSS
Subject: Re: Help with 401 errors on public site

James,

Thanks for the response. AFAIK we are using the ViewFormPagesLockDown feature.

Some work was done previously with permissions but as I understand it, that 
only resolved issues for internal staff accessing the site; the problem still 
remained for external anonymous users.

Cheers,

Chris

From: James Boman james.bo...@i-pmo.com.aumailto:james.bo...@i-pmo.com.au
Reply

RE: Help with 401 errors on public site

2010-11-21 Thread James Boman
Easy way to test the ViewFormPagesLockdown - open a browser and hit your 
anonymous site with:

http://www.yousite.com.au/_layouts/viewlsts.aspx

You would be surprised how many Internet facing MOSS sites there are where this 
is allowed.  For example:

For example - this Pakistan Government site: http://www.hec.gov.pk
Allows you to get to: http://www.hec.gov.pk/_layouts/viewlsts.aspx

Which shows you all sorts of un-intended information, author names and dates 
etc.

You don't want that happen to your site.

Cheers,
James.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Chris Howell
Sent: Saturday, 20 November 2010 10:51 AM
To: ozMOSS
Subject: Re: Help with 401 errors on public site

James,

Thanks for the response. AFAIK we are using the ViewFormPagesLockDown feature.

Some work was done previously with permissions but as I understand it, that 
only resolved issues for internal staff accessing the site; the problem still 
remained for external anonymous users.

Cheers,

Chris

From: James Boman james.bo...@i-pmo.com.aumailto:james.bo...@i-pmo.com.au
Reply-To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Date: Thu, 18 Nov 2010 23:53:57 +
To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Subject: RE: Help with 401 errors on public site

I know it might not be immediately helpful, but on the topic of 401's in 
Internet facing sites there is something to be to be aware of that might be 
contributing to your 401 woes...

If you use the ViewFormPagesLockDown feature (as all public facing MOSS sites 
should) it has security ramifications such that if you break security 
inheritance at the list or item level, Anonymous Internet users will lose 
access (regardless of the permissions granted), and be presented with 401 
errors.

It doesn't matter if you specifically grant access to the items/lists, and 
toggle the Anonymous setting - Internet users will lose access if the Special 
Permission level is not inherited.

So for Internet sites you must choose between

* Enabling the ViewFormPagesLockDown feature and living with web level 
security only

* Not using ViewFormPagesLockDown and having all your system forms 
available (like View All Site Content)

I logged an incident with Microsoft Support - and got the By Design 
resolution.

Cheers,
James.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Chris Howell
Sent: Thursday, 18 November 2010 3:19 PM
To: ozMOSS
Subject: Help with 401 errors on public site

Hi,

We have a public facing internet site and we're seeing a lot of 401 errors in 
Web Trends.

The errors are occuring for links such as:

http://www.oursiteurl.au/Pages/

We've got a couple of questions that we're looking to resolve so was hoping to 
get some input from the list.

1. How do we find any links that exist within the site that are linking 
directly to a /pages/ link as it appears that somehow people are being taken to 
this from a link but we're not aware of them; all links we can find are to a 
specific page within the library.

2. How have people implemented work arounds at the /Pages/ level to redirect to 
the default.aspx page in the library and avoid a 401 error? I've found some 
sites; the WA one being a very good example 
(http://www.westernaustralia.com/au/Pages/Welcome_to_Western_Australia.aspx) 
where this is done.

Anyone on the list had any involvement with that site or others and could share 
info or point to resources?

Thanks in advance.

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


RE: Help with 401 errors on public site

2010-11-18 Thread James Boman
I know it might not be immediately helpful, but on the topic of 401's in 
Internet facing sites there is something to be to be aware of that might be 
contributing to your 401 woes...

If you use the ViewFormPagesLockDown feature (as all public facing MOSS sites 
should) it has security ramifications such that if you break security 
inheritance at the list or item level, Anonymous Internet users will lose 
access (regardless of the permissions granted), and be presented with 401 
errors.

It doesn't matter if you specifically grant access to the items/lists, and 
toggle the Anonymous setting - Internet users will lose access if the Special 
Permission level is not inherited.

So for Internet sites you must choose between

* Enabling the ViewFormPagesLockDown feature and living with web level 
security only

* Not using ViewFormPagesLockDown and having all your system forms 
available (like View All Site Content)

I logged an incident with Microsoft Support - and got the By Design 
resolution.

Cheers,
James.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Chris Howell
Sent: Thursday, 18 November 2010 3:19 PM
To: ozMOSS
Subject: Help with 401 errors on public site

Hi,

We have a public facing internet site and we're seeing a lot of 401 errors in 
Web Trends.

The errors are occuring for links such as:

http://www.oursiteurl.au/Pages/

We've got a couple of questions that we're looking to resolve so was hoping to 
get some input from the list.

1. How do we find any links that exist within the site that are linking 
directly to a /pages/ link as it appears that somehow people are being taken to 
this from a link but we're not aware of them; all links we can find are to a 
specific page within the library.

2. How have people implemented work arounds at the /Pages/ level to redirect to 
the default.aspx page in the library and avoid a 401 error? I've found some 
sites; the WA one being a very good example 
(http://www.westernaustralia.com/au/Pages/Welcome_to_Western_Australia.aspx) 
where this is done.

Anyone on the list had any involvement with that site or others and could share 
info or point to resources?

Thanks in advance.

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


RE: Can't access site collection scopes

2010-11-14 Thread James Boman
When you go to view the search scopes page, does the URL have ?mode=ssp on 
the end?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 15 November 2010 2:47 PM
To: ozMOSS
Subject: Can't access site collection scopes

Has nyone seen this before or have any idea what might be causing it?

This error occurs when trying to view the Search Scopes 
(_layouts/viewscopes.aspx) for any web app in the farm. The temp path 
highlighted seems very dodgy indeed.

8
Exception of type 
'Microsoft.SharePoint.Portal.WebControls.UnknownModeException' was thrown. at 
Microsoft.SharePoint.Portal.Search.Admin.Pages.SearchAdminPageBase.ErrorHandler(Object
 sender, EventArgs e)
at System.Web.UI.TemplateControl.OnError(EventArgs e)
at System.Web.UI.Page.HandleError(Exception e)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, 
Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, 
Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest()
at System.Web.UI.Page.ProcessRequest(HttpContext context)
at ASP._layouts_viewscopes_aspx.ProcessRequest(HttpContext context) in 
c:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET 
Files\root\a4a225be\d0aa5016\App_Web_viewscopes.aspx.2a428413.so90lgc5.0.cs:line
 0
at 
System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean 
completedSynchronously)


Kind regards,

Paul Noone

---
Online Developer/Administrator
Information Communication and Technology
Catholic Education Office, Sydney
p: (02) 9568 8461
f: (02) 9568 8483
e: paul.no...@ceosyd.catholic.edu.aumailto:paul.no...@ceosyd.catholic.edu.au
w: http://www.ceosyd.catholic.edu.au/

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


SPS2010: Assigning a Farm-unique number to list items?

2010-10-21 Thread James Boman
Good morning SharePoint gurus!

I was brainstorming to find the best way to make a list where list items are 
allocated a Farm unique number on save.

i.e. when an item is saved, one of the column values is CV0001000 , and the 
next item gets CV0001001 even if it is in another list in another site 
collection.

Options under consideration:

* The numbering feature in Information Management Policies seems to 
only apply to document libraries and not lists - is this true?

* List Event Handler, backed up by a webservice to store the numbers in 
a centralised list somewhere

* Custom Field Type with same custom webservice backing.

* Hmmm... a better way?

Any ideas?

Cheers,
J.





James Boman
Solution Architect

[Description: Description: Description: i-pmo]
[Description: Description: Description: i-pmotl] Telephone: +61 (08) 7200 1100
[Description: Description: Description: i-pmotl] Mobile: +61 (0) 417 857 298
[Description: Description: Description: i-pmotl] Web : 
http://www.i-pmo.com.auhttp://www.i-pmo.com.au/
[Description: Description: Description: i-pmotl] Skype :

[Description: Description: Skype me]skype:JDBoman?call

JDBomanskype:JDBoman?call


[Description: Description: 
C:\Users\JBoman\AppData\Roaming\Microsoft\Signatures\iPMO_files\image004.png]

inline: image001.jpginline: image002.jpginline: image003.pnginline: image004.png___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Programmatically creating subsites (MOSS)

2010-09-27 Thread James Boman
Nigel,
I realise your question is probably already answered with the 
codeplex link, but the way I create sites in a new database is like this (in 
VB):

Private Const mintENGLISH As Integer = 1033
strDatabaseServer = objRootSite.ContentDatabase.Server
strDatabaseName = WSS_Content_SiteInNewDatabase

objNewSiteColleciton = colSiteColleciton.Add(strUrl, txtTitle.Text, 
strDescription, mintENGLISH, objTemplate.Name, objRootSite.Owner.LoginName, 
objRootSite.Owner.Name, String.Empty, Nothing, Nothing, Nothing, 
strDatabaseServer, strDatabaseName, Nothing, Nothing)

Cheers,
James.



James Boman
iPMO

[Description: Description: i-pmotl] Telephone: +61 (08) 7200 1100
[Description: Description: i-pmotl] Mobile: +61 (0) 417 857 298
[Description: Description: i-pmotl] Web : 
http://www.i-pmo.com.auhttp://www.i-pmo.com.au/
[Description: Description: i-pmotl] Skype :

[Description: Skype me]skype:JDBoman?call

JDBomanskype:JDBoman?call



From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Monday, 27 September 2010 1:55 PM
To: ozMOSS
Subject: Programmatically creating subsites (MOSS)

Hey all

I know it's possible to create subsites etc programmatically using code similar 
to the below:

SPWebApplication webApp = new SPSite(http://MySiteCollection;).WebApplication;
SPSiteCollection siteCollections = webApp.Sites;

SPSite newSiteCollection = siteCollections.Add(sites/Site_Name,
Site_Title, Site_Description, 1033, STS#0,
DOMAIN\\User, Owner_User_Name, Owner_Email);



What I would like to know is if anyone is aware of a way to programmatically 
create sites in the same manner as the 'stsadm -o createsiteinnewdb' command?

Nigel




Nigel Hertz

Software Developer | Information Technology
Stockland
Level 25 | 133 Castlereagh Street | Sydney NSW 2000
T: 02 9035 2617 | F: 02 8988 2617



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.
inline: image001.jpginline: image002.png___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Edit Blog with Word through ISA and FBA

2010-09-27 Thread James Boman
Perhaps you could also try Windows Live Writer for updating SharePoint Blogs - 
as it handles more authentication scenarios.

Cheers

J.


Sent from my HTC HD2


From: Jag SRK jag@live.com
Sent: Monday, 27 September 2010 5:04 AM
To: ozmoss@ozmoss.com ozmoss@ozmoss.com
Subject: RE: Edit Blog with Word through ISA and FBA

Hi Ian,

If you can get your users to access the SharePoint Blog on a VPN enabled 
Laptops then this is easy. I believe you already looked into this aspect.

To achieve better Office 2007 integration with MOSS + FBA you will need Office 
2007+April (2009) Office Cumulative Update and some Server/Client side tweaking.

Check the following TechNet articles for better rundown on the steps required.

http://blogs.technet.com/b/steve_chen/archive/2009/11/01/office-2003-2007-integration-and-forms-based-authentication-fba-with-sharepoint-moss.aspx

http://blogs.msdn.com/b/sharepoint/archive/2009/05/13/update-on-sharepoint-forms-based-authentication-fba-and-office-client.aspx
 (SharePoint Team Blog)

Hope this articles should help you.

Cheers,
Jag


Date: Fri, 24 Sep 2010 19:28:46 +0930
Subject: Edit Blog with Word through ISA and FBA
From: cut...@gmail.com
To: ozmoss@ozmoss.com

Hello,

We have a blog hosted internally on MOSS 2007. A group is going overseas on a 
tour and want to update the blog about their travels while they are away.

Editing with Word 2007 is the most convenient for them. It works while 
connected to the domain but not while outside the network. Connection to the 
intranet is via ISA 2006 FBA.

I gather that word needs to somehow do the FBA with ISA before it can connect. 
Can this be done and can anyone tell me how?

Cheers,

Iain Carlin

___ 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


August CU's

2010-09-05 Thread James Boman
Hey there,

Anyone been able to download the SharePoint Foundation 2010 August CU? 
(http://support.microsoft.com/kb/2352346 )

I have got the SPS2010 CU: http://support.microsoft.com/kb/2352342
and the SPS2010  ProjectServer2010 CU: http://support.microsoft.com/kb/2352345
but I have not been able to download the SPF2010 CU.

Traditionally I believe you were supposed to install the WSS hotfixes first - 
so I am a bit apprehensive about applying the SPS2010 CU without first applying 
the SPF2010 CU - or does that rule no longer apply?

Cheers,
James.





James Boman
Solution Architect

[Description: Description: i-pmo]
[Description: Description: i-pmotl] Telephone: +61 (08) 7200 1100
[Description: Description: i-pmotl] Mobile: +61 (0) 417 857 298
[Description: Description: i-pmotl] Web : 
http://www.i-pmo.com.auhttp://www.i-pmo.com.au/
[Description: Description: i-pmotl] Skype :

[Description: Skype me]skype:JDBoman?call

JDBomanskype:JDBoman?call


[Description: 
C:\Users\JBoman\AppData\Roaming\Microsoft\Signatures\iPMO_files\image004.png]






inline: image001.jpginline: image002.jpginline: image003.pnginline: image004.png___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: What's New web part with exclusion

2010-08-05 Thread James Boman
Could you get the web url into your query result (see posts about 
CommonViewFields) and then put the exclusion in your ItemStyle.xslt?

Something like:

xsl:if test=!starts-with($WebURL,'/News')
div class=myStyle
!-- Content goes here --
/div
/xsl:if


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 4 August 2010 9:15 AM
To: ozMOSS
Subject: RE: What's New web part with exclusion

I was hoping I could just use QueryOverride property and use the URL parameter 
as a filter?

I've been trying to use this MSDN article as a guide but I can't even get the 
[Today]-7 filter to stick. :(

http://msdn.microsoft.com/en-us/library/aa981241.aspx

Regards,

Paul

--
Online Developer/Administrator,
ICT Projects Team
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Michael Nemtsev
Sent: Wednesday, 4 August 2010 9:26 AM
To: 'ozMOSS'
Subject: RE: What's New web part with exclusion

Javascript post-processing removing non news ulrs?

Michael Nemtsev
Microsoft MVP
B: http://msmvps.com/blogs/laflour
S: http://www.sharepoint-sandbox.com

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Wednesday, 4 August 2010 8:46 AM
To: ozMOSS
Subject: What's New web part with exclusion

Hi all,

Does anyone have any nifty ideas on how to exclude a specific site/URL from a 
CQWP query? It doesn't seem to be too strong on exclusions and site/URL isn't 
available as a filter.

Basically I want to query all Pages libraries and exclude any from the /News 
subsite.

Regards,

Paul

--
Online Developer/Administrator,
ICT Projects Team
CEO Sydney

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


RE: Screen recordings

2010-06-08 Thread James Boman
-1 Camtasia: My experience with it was poor because the resulting videos always 
needed some custom TechSmith codec installed on the viewer's machine :(
+1 Expression Media Encoder: Creates Windows Media Player compatible files 
straight out of the gate, requiring no transcoding afterward to get rid of the 
custom codecs.  Also easy to then prepare the video for Silverlight streaming 
on the web.  In some scenarios clients have wanted to host their own streaming 
video (no YouTube).

J.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Turner
Sent: Tuesday, 8 June 2010 12:52 PM
To: ozMOSS
Subject: RE: Screen recordings

+ 1 Camtasia


Regards,

Paul Turner
MCT, MCPD: Enterprise, MCSD, MCDBA, MCTS, MSF, Microsoft vTSP
Consultant

M: 0412 748 168
A: 66 Henley Beach Road, Mile End SA 5031
E: paul.tur...@dws.com.aumailto:paul.tur...@dws.com.au  W: 
www.dws.com.auhttp://www.dws.com.au/

This email and any files transmitted with it are confidential and are only for 
the use of the person to whom they are addressed. If you are not the intended 
recipient you have received this email in error and are requested to delete it 
immediately. Any opinion expressed in this e-mail may not necessarily be that 
of DWS Pty Ltd.
Please consider the environment before printing this email.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Adam Clark
Sent: Tuesday, 8 June 2010 12:42 PM
To: ozMOSS
Subject: RE: Screen recordings

I've always used Camtasia. It's a good product.

Regards,

Adam Clark
Principal Solutions Architect

[cid:image001.gif@01CB07B5.2AE8DC90]

Office:   1300 611 359
Mobile: +61 412 344 037
Email:adam.cl...@sharingminds.com.aumailto:adam.cl...@sharingminds.com.au
Web: http://www.sharingminds.com.auhttp://www.sharingminds.com.au/
Blog:  http://adamclark.wordpress.comhttp://adamclark.wordpress.com/

[cid:image002.jpg@01CB07B5.2AE8DC90]http://www.sharepointconference.com.au/

Proudly speaking and sponsoring the following events:
SharePoint Saturday Brisbanehttp://www.sharepointsaturday.org/brisbane - 8th 
May 2010
Australian SharePoint Conferencehttp://www.sharepointconference.com.au/ - 
16th  17th June

Business Productivity Specialists with:
[cid:image003.png@01CB07B5.2AE8DC90]


[cid:image004.png@01CB07B5.2AE8DC90]http://www.sharepointsaturday.org/brisbane





From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Marko Salonen
Sent: Tuesday, 8 June 2010 1:07 PM
To: ozMOSS
Subject: Screen recordings

Hi

OffTopic
Can anybody recommend any screen recording software that I can use to make some 
instructional videos with?
/OffTopic

Cheers!

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
inline: image001.gifinline: image002.jpginline: image003.pnginline: image004.png___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Difference between Publishing Portal and Collaboration Portal?

2010-05-09 Thread James Boman
Thats strange - I just tried creating a new publishing sub-site in a 
Collaboration Portal site collection and the URL is all in lower case LHS nav 
and in breadcrumb:

http://pnsg7892q-vms08:6901/newsubsite/Pages/default.aspx

*shrug*

J.



From: ozmoss-boun...@ozmoss.com [ozmoss-boun...@ozmoss.com] On Behalf Of Paul 
Noone [paul.no...@ceosyd.catholic.edu.au]
Sent: Monday, 10 May 2010 12:18 PM
To: ozMOSS
Subject: RE: Difference between Publishing Portal and Collaboration Portal?

While you’re at it can you also find out why links within the navigation 
components get converted to uppercase every time you create a subsite?? At 
first I thought this was our custom definition but I’ve since performed a test 
using OOTB site defs and the problem persists.

The only solution I’ve found is to go to Site Settings-Look and feel-Title, 
description, and icon and click OK. Thank LBJ that URLs aren’t case-sensitive!

Scenario: Create a publishing subsite. Roll mouse over Quick Launch or 
Breadcrumbs and see something like this:

_http://stg-www/TEST/SUBTEST/Pages/subtest.aspx


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
James Boman
Sent: Monday, 10 May 2010 12:30 PM
To: ozMOSS
Subject: RE: Difference between Publishing Portal and Collaboration Portal?


We have done everything as per Microsoft 
advicehttp://technet.microsoft.com/en-us/library/cc263468.aspx on exposing 
anonymous sites, so I will log a support incident to see if I can get anyone to 
tell me what the special sauce is inside the Publishing Portal template.

Cheers,

   J.



From: ozmoss-boun...@ozmoss.com [ozmoss-boun...@ozmoss.com] On Behalf Of Paul 
Noone [paul.no...@ceosyd.catholic.edu.au]
Sent: Friday, 7 May 2010 7:47 AM
To: ozMOSS
Subject: RE: Difference between Publishing Portal and Collaboration Portal?
Yes, I have. That’s why I deactivated the feature. Only solution I’ve been able 
to find. :)

It seems that the FormViewPageLockDown does a lot more than it claims and can 
also screw with Contributor access to form views and some lists/layout pages  - 
e.g. People and Groups.

Note: Disabling this feature still prevents anonymous browsing of Pages and 
Document libraries and I have not seen any of the issues others mention with 
anon users suddenly being able to access these. I did spend some time tweaking 
permissions for anon user access to lists afterwards.

Regards,

Paul
Online Developer, ICT
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
James Boman
Sent: Thursday, 6 May 2010 3:34 PM
To: ozMOSS
Subject: RE: Difference between Publishing Portal and Collaboration Portal?


I have also noticed that:

 *   In a Collaboration Portal if you break inheritance on a single Page in the 
Pages library anonymous users loose acces to the page entirely
 *   In a Publishing Portal if you break inheritance on a single Page in the 
Pages library anonymous users can still access the page fine

Surely someone has bumped into this before?



From: ozmoss-boun...@ozmoss.com [ozmoss-boun...@ozmoss.com] On Behalf Of James 
Boman [james.bo...@dws.com.au]
Sent: Wednesday, 5 May 2010 4:50 PM
To: ozmoss@ozmoss.com
Subject: Difference between Publishing Portal and Collaboration Portal?
Hey there people,
   I am hoping someone on this list knows the answer to this:

When you create a SharePoint 2007 site using the Collaboration Portal template 
and apply the site lockdown feature (ViewFormPagesLockDown), links to documents 
in document libraries in the navigation do not appear for anonymous users (they 
get security trimmed)

When you create a SharePoint 2007 site using the Publishing Portal template, 
the site lockdown feature is automatically enabled as part of the template, but 
links to documents in document libraries placed in the navigation DO appear for 
anonymous users.

Anyone have any ideas why this is, or how to change an existing Internet facing 
site to enable the links in the navigation to appear for anonymous users?

Cheers,
   James.




James Boman
Software Consultant, BSc. MCSD:EAD, MCDBA.


M: 0417 857 298  P:  08 8238 0921  F:  08 8234 5966
A: 66 Henley Beach Rd, Mile End SA 5031
E: james.bo...@dws.com.aumailto:james.bo...@dws.com.au  W: 
www.dws.com.auhttps://www.dws.com.au/


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


RE: Difference between Publishing Portal and Collaboration Portal?

2010-05-05 Thread James Boman
I have also noticed that:

 *   In a Collaboration Portal if you break inheritance on a single Page in the 
Pages library anonymous users loose acces to the page entirely
 *   In a Publishing Portal if you break inheritance on a single Page in the 
Pages library anonymous users can still access the page fine

Surely someone has bumped into this before?




From: ozmoss-boun...@ozmoss.com [ozmoss-boun...@ozmoss.com] On Behalf Of James 
Boman [james.bo...@dws.com.au]
Sent: Wednesday, 5 May 2010 4:50 PM
To: ozmoss@ozmoss.com
Subject: Difference between Publishing Portal and Collaboration Portal?

Hey there people,
   I am hoping someone on this list knows the answer to this:

When you create a SharePoint 2007 site using the Collaboration Portal template 
and apply the site lockdown feature (ViewFormPagesLockDown), links to documents 
in document libraries in the navigation do not appear for anonymous users (they 
get security trimmed)

When you create a SharePoint 2007 site using the Publishing Portal template, 
the site lockdown feature is automatically enabled as part of the template, but 
links to documents in document libraries placed in the navigation DO appear for 
anonymous users.

Anyone have any ideas why this is, or how to change an existing Internet facing 
site to enable the links in the navigation to appear for anonymous users?

Cheers,
   James.




James Boman
Software Consultant, BSc. MCSD:EAD, MCDBA.


M: 0417 857 298  P:  08 8238 0921  F:  08 8234 5966
A: 66 Henley Beach Rd, Mile End SA 5031
E: james.bo...@dws.com.aumailto:james.bo...@dws.com.au  W: 
www.dws.com.auhttps://www.dws.com.au/


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


RE: Excel Fill Handle

2010-02-22 Thread James Boman
I think the tag should be:
meta http-equiv=X-UA-Compatible content=IE=EmulateIE7 /

Also - remember if your using IE8 64-bit, it is classed as a Level 2 browser 
for SharePoint 2007 and DataSheet view is unsupported, or this documentation is 
out of date:  http://technet.microsoft.com/en-us/library/cc263526.aspx



From: ozmoss-boun...@ozmoss.com [ozmoss-boun...@ozmoss.com] On Behalf Of Paul 
Noone [paul.no...@ceosyd.catholic.edu.au]
Sent: Tuesday, 23 February 2010 2:22 PM
To: ozMOSS
Subject: RE: Excel Fill Handle

Nothing works in IE8 including the OOTB flyout menus. You can’t fix IE8 but you 
can force it to render your pages in X-UA compatibility mode.

Just jump into your master pages and insert the following meta tag right at the 
top of the head section.

meta http-equiv=X-UA-Compatible content=IE=7 /

However this is more of a patch than a solution and is unlikely to fix 
something like your datasheet issue.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Hollett, Phil
Sent: Tuesday, 23 February 2010 2:30 PM
To: ozMOSS
Subject: RE: Excel Fill Handle

Yes, that was the first thing I tried but it seems to make no difference. Is it 
working for you?

Thanks,
Phil


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 23 February 2010 13:25
To: ozMOSS
Subject: RE: Excel Fill Handle
Have you tried Compatibility View? You know, that little button that forces IE8 
to render the way a browser almost should. ;)

Regards,

Paul
Online Developer, ICT
CEO Sydney

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Hollett, Phil
Sent: Tuesday, 23 February 2010 2:21 PM
To: ozmoss@ozmoss.com
Subject: Excel Fill Handle

Hi,

I wonder if anyone can help.

There is a known problem with the MS Excel Fill Handle not working in the 
Data Sheet view in SharePoint 2007 lists when using IE8. It works fine with IE6 
and 7. (explanation: This is the feature in Excel that when you drag the bottom 
right handle of a cell down the column (or across the row) the cell contents 
are copied).

Is anyone aware of a fix for this?


Regards,
Phil Hollett
Portal Technical Specialist
Brisbane


This email (which includes all attachments and linked documents) is intended 
for and is confidential to the addressee; it may also be subject to legal 
professional privilege or otherwise protected from disclosure. If the addressee 
is a government agency in receipt of a Right to Information Act (2009) 
application in relation to this email, contact must be made with QR Limited in 
accordance with the third party consultation process provided for in Part 3, 
Division 3, Section 37 of that legislation. If you are not the addressee, or if 
you have received this email in error, you must not use, rely upon, disclose or 
reproduce it (or any part of it) in any way. Please notify the sender of your 
receipt of it and delete it in its entirety. Neither QR Limited (or any of its 
related entities) accepts any liability for computer viruses, data corruption, 
delay, interference, interception, unauthorised access or amendment of this 
email. The views expressed in this email, unless clearly stated otherwise, are 
the views of the sender. They do not necessarily represent the view or policy 
of QR Limited or any of its related entities.


Click 
herehttps://www.mailcontrol.com/sr/peEGIvL9JOjTndxI!oX7UlnwUb8+3gKcSmxTddbWMnhAUlCnUJJ8hgm6uG721FKJq5+8Hg3l7dspdY6WjzZSeg==
 to report this email as spam.
___
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: MySite Access Denied for SC admins

2010-02-21 Thread James Boman
From what I know, the complicating factor may be that each MySite is actually 
an independent Site Collection - so to get access you will need to add 
yourself as a site collection administrator to each one :(

May need to write yourself a little script - or a Feature Staple to add some 
administrators when the site is created.


From: ozmoss-boun...@ozmoss.com [ozmoss-boun...@ozmoss.com] On Behalf Of Paul 
Noone [paul.no...@ceosyd.catholic.edu.au]
Sent: Monday, 22 February 2010 8:51 AM
To: ozMOSS
Subject: RE: MySite Access Denied for SC admins

“I tried explicitly adding myself as a site collection admin to a particular 
site but still can’t get in.”

I lied. I can get in this way, it just seemed to take a minute to update.

Is there any way to force inheritance for top level site admins, or is this 
expected behaviour and I’ve just gone a bit loopy?

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Monday, 22 February 2010 9:13 AM
To: ozMOSS
Subject: MySite Access Denied for SC admins

Hi guys,

I’ve got a weird problem where the primary site collection admin for the MySite 
app is getting access denied errors when trying to access recently created My 
Sites. And I’m unable to access settings pages for any of them at all.

Nothing has changed to my knowledge and the primary administrator has 
everything checked under Shared Service rights.

I tried explicitly adding myself as a site collection admin to a particular 
site but still can’t get in.

Any ideas??

Regards,

Paul
Online Developer, ICT
CEO Sydney

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