Re: ozmoss Digest, Vol 74, Issue 6

2017-03-12 Thread Sutha Thavaratnarajah
Hi Nigel,


Many thanks to bring this question to the forum. I am looking for answer as 
well.


Our digital applications (Asp.net apps) using continues deployment with Octopus 
and have clear release cycle.


However, We don't have any solid release cycle for SharePoint online.


Looking forward to see the answer from others.


Sutha.



From: ozmoss-boun...@ozmoss.com  on behalf of Nigel 
Witherdin 
Sent: Monday, 13 March 2017 10:51 AM
To: ozMOSS
Subject: Re: ozmoss Digest, Vol 74, Issue 6


Thanks Paul - John / Sutha (and anyone else) - any comments on how to manage 
the release cycle within a SharePoint online tenancy?


Also, I raised the question re: the PnP engine on Microsoft Tech Community, and 
it was confirmed as an problem and an issue has been raised in the PnP GitHub 
repository - https://github.com/SharePoint/PnP-Sites-Core/issues/1105


So hopefully we will get a quick turn around on the issue!


Thanks



From: ozmoss-boun...@ozmoss.com  on behalf of Paul 
Noone 
Sent: Monday, 13 March 2017 7:44 AM
To: ozMOSS
Subject: Re: ozmoss Digest, Vol 74, Issue 6

Is be similarly interested, Nige.

Outside of third-party apps, the options are limited. CSOM is growing too 
slowly for my liking.


On Sat, 11 Mar 2017 at 6:25 am, Nigel Witherdin 
> wrote:
thanks all. What I'm trying to do with the PnP engine is create a way for us to 
promote change from a development sites collection in our o365 tenancy to a 
staging sites collection, and the to the product one.

Be interested to hear anyone else's thoughts on managing the release cycle in 
o365 for new developments and for maintaining existing ones

Thanks!

Sent from my iPhone

On 10 Mar 2017, at 5:32 pm, John Liu 
> wrote:


Hey Nigel,



I was thinking about this and went to read the issues on PnP-PowerShell GitHub. 
 The replies, especially from Erwin seems to imply that lookup fields are 
double-parsed in the provisioning engine.



So I was suspicious of what I was doing, and went to check the XML template:



Here’s the offending Lookup XML.









See the WebID being a fixed guid.  That seems to be the problem.  It should be 
{{siteid}}









If the WebID is fixed – then the lookup will work for that web, but if we are 
taking the definitions to a separate site collection, that webid won’t be valid 
– I think that’s where our problems begin.



I’m not sure the syntax, it should be {{siteid}}.  Going to do some testing.  
But I saw the same issues with TaxonomyFieldTypeMulti









Anyway, I saw your later comment about crossing site collections and I think 
this is probably the key.



jliu



From: ozmoss-requ...@ozmoss.com
Sent: Friday, 10 March 2017 12:14 PM
To: ozmoss@ozmoss.com
Subject: ozmoss Digest, Vol 74, Issue 6



Send ozmoss mailing list submissions to
ozmoss@ozmoss.com

To subscribe or unsubscribe via the World Wide Web, visit
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss
or, via email, send a message with subject or body 'help' to
ozmoss-requ...@ozmoss.com

You can reach the person managing the list at
ozmoss-ow...@ozmoss.com

When replying, please edit your Subject line so it is more specific
than "Re: Contents of ozmoss digest..."


Today's Topics:

   1. Re: ozmoss Digest, Vol 74, Issue 3 (Paul Noone)


--

Message: 1
Date: Thu, 09 Mar 2017 20:59:44 +
From: Paul Noone >
Subject: Re: ozmoss Digest, Vol 74, Issue 3
To: ozMOSS >
Message-ID:

>
Content-Type: text/plain; charset="utf-8"

Your practice sounds like good practice to me, Nigel.

I usually deliver my code solutions via a pure CSOM console app. It's a
little more  work but I've had consistent success creating a standard list
and then updating the settings as required.

On Fri, 10 Mar 2017 at 5:33 am, Nigel Witherdin 
>
wrote:

> Thanks sutha and John - I guess I have to play with it a bit more!
>
> It's frustrating as there are bugs listed as completed in the project from
> a few years ago re: the engine needing to create lists used by lookup cols
> prior to creating the fields.
>
> Maybe it's because my lookups are also site cols applied via content
> types. Maybe I should change that design practice
>
> 

Re: PnP Provisioning Engine - Issue with Lookup Field

2017-03-07 Thread Sutha Thavaratnarajah
Hi Nigel,


I got few wired error with cmdlets. I  gave up and did with .exe.   Technically 
I dont see any reason. but worked after using .exe.


Thats seems less pain.


Here is my code.

static void Main(string[] args)
{
OfficeDevPnP.Core.AuthenticationManager authMgr = new 
OfficeDevPnP.Core.AuthenticationManager();
string siteURL = "https://charterhall.sharepoint.com/masked;;
string userName = "";
Console.WriteLine("Please Enter password");
string password = Console.ReadLine();

Console.WriteLine("The Shed Site Build");
Console.WriteLine("Please Enter reset for Reset the site");
string input = Console.ReadLine();
if(string.Equals(input.ToUpper(),"RESET"))
 {
using (var ctx = 
authMgr.GetSharePointOnlineAuthenticatedContextTenant(siteURL, userName, 
password))
{
ResetSite(ctx);
}
 }


string file = "ProvisioningTemplate.xml";

string directory = 
"C:\\Projects\\source\\SharePoihnt\\TheShed\\Charterhall.Shed\\ShedCTProvisioning\\Template";
var provisioningProvider = new 
XMLFileSystemTemplateProvider(directory, string.Empty);
var provisioningTemplate = provisioningProvider.GetTemplate(file);

provisioningTemplate.Connector.Parameters[FileConnectorBase.CONNECTIONSTRING] = 
directory;

using (var ctx = 
authMgr.GetSharePointOnlineAuthenticatedContextTenant(siteURL, userName, 
password))
{
ctx.Load(ctx.Web);
ctx.ExecuteQueryRetry();
ctx.Web.ApplyProvisioningTemplate(provisioningTemplate);

ctx.ExecuteQueryRetry();

System.Console.WriteLine(ctx.Web.Title);
System.Console.WriteLine("Site Column and Content Types are 
created");

SP_Helper.CreateList(ctx, "Property", "prp", "List of Sheds", 
"0x0100928AB37347CC8B4EAEFCCB8A4F833501",Constants.viewFields.Property);

***Removed

// media library
  ***Removed.
System.Console.WriteLine("Lists and Library are created.");
System.Console.WriteLine("Press any key to quit.");
}

   // System.Console.ReadLine();
}


Sutha.


From: ozmoss-boun...@ozmoss.com  on behalf of Nigel 
Witherdin 
Sent: Wednesday, 8 March 2017 12:53 PM
To: OzMoss
Subject: PnP Provisioning Engine - Issue with Lookup Field


Hi All,


Having an issue trying to use the PnP Provisioning Engine PowerShell cmdlets to 
template a site that contains Lookup columns. The site is an O365 site, and the 
commands I am using are:


Connect-SPOnline "https://scentregroup.sharepoint.com/sites/scgpmo;

Get-PnPProvisioningTemplate -Out c:\temp\pmo.xml -PersistBrandingFiles 
-Handlers Lists, ContentTypes, Fields, Files, Navigation, Pages, 
RegionalSettings, SiteSecurity, TermGroups, Workflows

Connect-SPOnline "https://scentregroup.sharepoint.com/sites/pmo_trial;
Apply-PnPProvisioningTemplate -Path c:\temp\pmo.xml -Handlers Lists, 
ContentTypes, Fields, Files, Navigation, Pages, RegionalSettings, SiteSecurity, 
TermGroups, Workflows



The "Apply-PnPProvisioningTemplate" fails with the error:


Apply-PnPProvisioningTemplate : The field was found invalid:  
{{listid:PriorLookUpStratAlign1}



I believe the line in the pmo.xml file that is causing the issue is the first 
(of a few) lookup fields. I understand that the engine is using a token to 
represent the list id, which should be replaced with an actual list id when the 
list on the new site is actually created





Dont really understand why the "WebId" parameter is not also using some sort of 
token replacement logic?


Has anyone used the engine to template sites including lookup fields? If so, 
can you offer any advice as to where I am going wrong?


I have also attached the full pmo.xml file in case that helps


Thanks!


Nigel
___
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: Useage Stats in SP 2013

2015-05-12 Thread Sutha Thavaratnarajah
Yes, the path does not allow as it is redirect from layout/15 path. So get 
error if I try the path.

I got powershell script ( codeplex) which gives little solution. But not 
complete solution.

Sutha
0450076504
Sent from my iPhone

 On 13 May 2015, at 9:19 am, Paul Noone pano...@gmail.com wrote:
 
 I haven't run into this before but I also upgraded all sites to the 2013 
 experience.
 
 Are the links not available from Site ad Site Collection Settings screens?
 
 Have you tried appending the page paths to the site URL to see if you can 
 sill load them?
 
 On Tue, May 12, 2015 at 11:58 AM, Sutha Thavaratnarajah 
 sutha1...@hotmail.com wrote:
 Dear All,
 
 I require to usage stats for our corporate intranet, Our platform is SP 2013 
 however UI still 2010.
 
 Anyone has idea, how I get the usage stats?
 
 thanks.
 
 Sutha.
 
 ___
 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
 
 ___
 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
___
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___
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: Technical reference

2015-04-29 Thread Sutha Thavaratnarajah

I am happy to give a reference to you Paul. Contact me directly on the below 
details.

Sutha
0450076504
sutha1...@hotmail.com

Sent from my iPhone

 On 30 Apr 2015, at 11:45 am, Paul Noone pano...@gmail.com wrote:
 
 Hi guys,
 
 I was wondering if anyone on the list would provide a verbal technical 
 reference for me, for a SharePoint role, based on your knowledge of me 
 through OzMOSS and other avenues.
 
 If so, please email me directly with your best contact number.
 
 Previous references have proven either unreliable or too difficult to contact 
 due to the time elapsed.
 
 Kind regards,
 
 Paul Noone
 ___
 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
___
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: Development Environment After upgrade 2013...

2015-03-17 Thread Sutha Thavaratnarajah
Hi Ishai,  


Thanks for your comment , 

If I upgrade will it work with my sites which are pending for UI upgrade?

Thanks. 

Sutha
0450076504
Sent from my iPhone

 On 18 Mar 2015, at 12:00 pm, Ishai Sagi is...@exd.com.au wrote:
 
 That is a warning, not an error. Since you know you are keeping your 
 solutions as 2010, you already made the choice to use old software as the 
 warning tells you you are doing. However, I’d redevelop the solutions if I 
 were you, and upgrade them to use the 15 components, and the 15 hive for 
 resources.
  
 From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf 
 Of Sutha Thavaratnarajah
 Sent: Wednesday, 18 March 2015 11:04 AM
 To: ozmoss@ozmoss.com
 Subject: Development Environment After upgrade 2013...
  
 Dear All,
  
 I am bit confused, hope someone can point on correct direction.
  
 Environment summary:
  
 We upgraded 2013 , so I build development environment in 2013 and copied all 
 the source to new environment. Some of our sites are still in 2010 UI.
  
 so , I prefer not to upgrade my solutions/source to 2013. I try to keep them 
 as 2010 solutions. 
  
 Required:
  
 I need to do some bug fixes and enhancement for those solutions.
  
 Problem:
  
 I could not successfully build the solutions in the 2013 development 
 environment.  I get following error (lot of warning like this)
  
 Warning1The primary reference 
 Microsoft.SharePoint.Linq, Version=14.0.0.0, Culture=neutral, 
 PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL could not be 
 resolved because it has an indirect dependency on the .NET Framework assembly 
 mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 
 which has a higher version 4.0.0.0 than the version 2.0.0.0 in the 
 current target framework.
  
 what is the best way? how do i resolve this issues.
  
 cheers.
  
 Sutha.
  
 ___
 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
___
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___
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: SharePoint 2013 Public facing Community sites

2015-03-01 Thread Sutha Thavaratnarajah
Technically no issue to have this, you may consider to speak with your network 
team to create a zone for this.

Cheers.

Sutha
0450076504
Sent from my iPhone

 On 28 Feb 2015, at 6:32 am, vijaykumar raavi vijaykumar@gmail.com wrote:
 
 Hi,
 
 Is it feasible to create public facing SharePoint 2013 community sites ( 
 using on premises SharePoint Enterprise server 2013, Forms based 
 authentication using single sign on)
 
 
 
 
 -- 
 Thanks
 
 Vijay
 ___
 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
___
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___
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: content type hub in v 15, subcriber in 14.

2015-02-23 Thread Sutha Thavaratnarajah
Hi Ishai,
I kind of agree with you,  however it is out of my control.
any way, for this problem i decided to use the old ( 14 version) content type 
hub. so that I can publish to old sites, once all the sites upgraded then I 
will upgrade the content type hub.
for the new sites, i will create as 14 version first, then consume, then I will 
do the upgrade. bit hassle however no choice.
Thanks for you comments Ishai.
sutha.

From: is...@exd.com.au
To: ozmoss@ozmoss.com
Subject: RE: content type hub in v 15, subcriber in 14.
Date: Mon, 23 Feb 2015 22:56:30 +









Sorry to be of no real help, but my best recommendation – do not use a content 
type hub. The implementation is not robust enough. I
 recommend to clients to develop own scripts to replicate content type and site 
column changes.
 
 


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Monday, 23 February 2015 4:23 PM

To: ozmoss@ozmoss.com

Subject: content type hub in v 15, subcriber in 14.


 

Hi ,

 

Recently I upgraded our SharePoint environment. We have challenge, some of the 
sites are pending for the visual upgrade. Our content type hub was upgraded as 
some new sites require
 to consume the latest content types.

Challenge is our pending visual upgrade sites not getting the latest updates 
for the content type from the hub.

I am getting following error.

 

The compatibility level 15 of the content type hub site is different from the 
compatibility level of this site 14

to be clear:
Hub in v 15 , subcriber in v 14.

 

any suggestion. thanks.

 

Regards

Sutha




___
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   
  ___
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

content type hub in v 15, subcriber in 14.

2015-02-22 Thread Sutha Thavaratnarajah
Hi ,
Recently I upgraded our SharePoint environment. We have challenge, some of the 
sites are pending for the visual upgrade. Our content type hub was upgraded as 
some new sites require to consume the latest content types.Challenge is our 
pending visual upgrade sites not getting the latest updates for the content 
type from the hub.I am getting following error.
The compatibility level 15 of the content type hub site is different from the 
compatibility level of this site 14to be clear: Hub in v 15 , subcriber in v 14.
any suggestion. thanks.
RegardsSutha  ___
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: User profile sync service - SharePoint 2010

2015-01-11 Thread Sutha Thavaratnarajah
Hi Nigel,
you can see the profile sync log detials in the FIIM.
go to following location in your server.
C:\Program Files\Microsoft Office Servers\14.0\Synchronization Service\UIShell\
then run miisclient.exe
see the logs there. ( do not run any sycn there , thats not recommended.)
cheers.
sutha.

From: nigel.he...@stockland.com.au
To: ozmoss@ozmoss.com
Subject: RE: User profile sync service - SharePoint 2010
Date: Sun, 11 Jan 2015 22:03:08 +









I’ve checked the logs going back two weeks, and the only references to ‘user 
profile sync’ are related directly to the provisioning and unprovisioning. 
There doesn’t seem to be anything about ‘forefront identity
 manager’.
 
I think I might need to increase my logging levels :p
 


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Monday, 12 January 2015 8:58 AM

To: ozMOSS

Subject: Re: User profile sync service - SharePoint 2010


 

Can you check any error msg on the FIIM? That will tell you the reason


 




Sutha

0450076504

Sent from my iPhone






On 12 Jan 2015, at 8:55 am, Nigel Hertz nigel.he...@stockland.com.au wrote:



Hi guys,
 
Does anyone know why I need to stop and start the “User Profile Synchronization 
Service” under “Services on this Server” each and every time I restart the 
server? If I don’t stop and restart it, the sync never runs. It’s rather 
bizarre.
 
Nigel
 
 
 
Nigel Hertz

SharePoint Administrator / Developer, Information Systems

Stockland, Level 23, 133 Castlereagh Street, Sydney NSW 2000



T +61 2 9035 2617 
M +61 400 369 331

F +61 2 8988 2617  E   
nigel.he...@stockland.com.au 
http://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.




___

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






___
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   
  ___
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: User profile sync service - SharePoint 2010

2015-01-11 Thread Sutha Thavaratnarajah
Can you check any error msg on the FIIM? That will tell you the reason


Sutha
0450076504
Sent from my iPhone

 On 12 Jan 2015, at 8:55 am, Nigel Hertz nigel.he...@stockland.com.au wrote:
 
 Hi guys,
  
 Does anyone know why I need to stop and start the “User Profile 
 Synchronization Service” under “Services on this Server” each and every time 
 I restart the server? If I don’t stop and restart it, the sync never runs. 
 It’s rather bizarre.
  
 Nigel
  
  
  
 Nigel Hertz
 SharePoint Administrator / Developer, Information Systems
 Stockland, Level 23, 133 Castlereagh Street, Sydney NSW 2000
 
 T +61 2 9035 2617  M +61 400 369 331
 F +61 2 8988 2617  E   nigel.he...@stockland.com.au
 http://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.
 ___
 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
___
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___
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: Best way to move SP designer workflows between dev, stage and Prod.

2014-12-01 Thread Sutha Thavaratnarajah
Thanks Paul.
Sutha.

From: paul.no...@keller.com.au
To: ozmoss@ozmoss.com
Subject: RE: Best way to move SP designer workflows between dev, stage and  
Prod.
Date: Mon, 1 Dec 2014 21:53:28 +









If you’re dealing with non-reusable workflows in 2010 there’s no “easy” method. 
The way you’re currently doing it is one way but also has drawbacks. I’ve used
 the export to Visio method and then extracted and modified the XOML file 
manually but it’s also a pain in the neck.
 
In short, use reusable workflows or move to the 2013 workflow platform.
 


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Wes MacDonald

Sent: Monday, December 1, 2014 11:23 PM

To: ozMOSS

Subject: RE: Best way to move SP designer workflows between dev, stage and Prod.


 
I think this article will help you.  You did not specify which version of SP 
you were on so I assumed 2013.
 
Understanding how to package and deploy workflow in SharePoint 2013 with 
SharePoint Designer 2013
http://msdn.microsoft.com/en-us/library/office/jj819316(v=office.15).aspx
 
Wes
 


From:
ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Monday, December 1, 2014 1:22 AM

To: ozmoss@ozmoss.com

Subject: Best way to move SP designer workflows between dev, stage and Prod.


 

Hi All,

 


I am wondering any body suggest best way to move SP desinger workflows between 
dev , stage and prod.


 


I don't have visio premium. Currently I am using export the entire site as wsp 
and build VS solution and remove the other files and get the workflow , then 
deploying WSP and activating feature.


 


but, I feel others may have better alternatives. if you have please suggest.


 


cheers.


Sutha. 




__

This email has been scanned by the Symantec Email Security.cloud service.

For more information please visit http://www.symanteccloud.com

__


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   
  ___
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

Best way to move SP designer workflows between dev, stage and Prod.

2014-11-30 Thread Sutha Thavaratnarajah
Hi All,
I am wondering any body suggest best way to move SP desinger workflows between 
dev , stage and prod.
I don't have visio premium. Currently I am using export the entire site as wsp 
and build VS solution and remove the other files and get the workflow , then 
deploying WSP and activating feature.
but, I feel others may have better alternatives. if you have please suggest.
cheers.Sutha. ___
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: Yammer web part.

2014-10-25 Thread Sutha Thavaratnarajah
Hello all,
I got a response from Microsoft regarding the issue. I like to share with you 
all as seems many of us using this web part.
here is there response.=
In late 2013, we identified a potential security vulnerability in the 
architecture of the Yammer for SharePoint 2010 web-part. The web-part was 
routing its cross-domain requests to Yammer through an Adobe Flash proxy which 
was using a local security policy file. The request to the local policy file 
enables Yammer to essentially whitelist any domain. This is a vulnerability 
because if an attacker is aware of this mechanism, s/he can make requests to 
arbitrary Yammer urls and scrape content. We fixed this security vulnerability 
by removing the flash proxy thereby routing those calls to Yammer APIs through 
SharePoint servers. The authentication now happens at the SharePoint server, 
thus preventing any cross-site request forgery attacks. 
A bug was later filed about images failing to render in the feed due to the 
image request not being routed through the SharePoint servers; ergo, Yammer has 
no means to authenticate the request. The images not being rendered in the feed 
is in fact the right behaviour as it is preventing unauthorized requests to 
Yammer image urls. Fixing this bug would mean routing the image requests 
through SharePoint servers and authenticating them similar to other feed 
content. 
It is not possible to roll-back the service to the previous state as this 
reintroduces a high security risk. It is also not possible to make a private 
fix since the change was made at a service level and cannot be undone to a 
specific customer/ Yammer 
network.=
thanks all.
RegardsSutha Thavaratnarajah
From: sutha1...@hotmail.com
To: ozmoss@ozmoss.com
Subject: RE: Yammer web part.
Date: Tue, 14 Oct 2014 12:18:47 +1100




thanks for effort to find a solution.
Same domain. seems they tighten the security for images.
Few other people have similar issue. not sure, how they 
resolved.http://community.office365.com/en-us/f/176/t/227685.aspx


Sutha.

From: p.no...@keller.com.au
To: ozmoss@ozmoss.com
Subject: RE: Yammer web part.
Date: Tue, 14 Oct 2014 01:15:20 +









I’m out of ideas. Seems bizarre that text loads and you can reply but
 the images give a 401.
Is there anything different about the image location? Same domain and
 permissions?
 


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Tuesday, 14 October 2014 12:06 PM

To: ozMOSS

Subject: RE: Yammer web part.


 

Hi Paul,

 


answer is yes for all of your questions. :)


 


But still no luck.


 


sutha.




From:
p.no...@keller.com.au

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.

Date: Tue, 14 Oct 2014 00:58:50 +

·
Do you have  Yammer for SharePoint 2010 3.1.4 and deployed SSO for your 
SharePoint environment?
 yes.
·
Does the web part load the images correctly if you’re logged into Yammer in 
another tab?
yes.
·
Does the Activity Stream Token you’re using have full access to the content?yes.
·
Have you tried adding Yammer to trusted sites?yes.
 

Regards,
 
Paul

 


From:
ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Tuesday, 14 October 2014 11:33 AM

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.


 


Hi Nigel,


 


I am using OOB, 


 


I am not able to see the images only. all other components ok.


 


I notice few things.


 



https://www.yammer.com/api/v1/oauth/tokens.json?access_token=WGLk8mv8nFUM9Ykw
HTTPS  GET   
401  text/html



https://www.yammer.com/api/v1/uploaded_files/24962470/version/47819/thumbnail

HTTPS  GET   
401  text/html



 


also,


 


If I login to yammer and  then open SharePoint , makes the images visible. 
Sounds like something not right with authentication tokens?


 


thanks.


 

Sutha.




From: 
nigel_wither...@hotmail.com

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.

Date: Tue, 14 Oct 2014 00:10:50 +

Hey Mate,

 


Our yammer 2010 part is working correctly (displaying images etc.)


 


The original 2010 Yammer web part (which we are still using) is out of support 
now, and they recommend you use a bunch of javascript to replace it with 
(presumably hosted in a CEWP). Which
 are you using?


 


Are you able to request the images directly in the browser, or do you get 
denied access?


 


401 is unauthorized - what account is trying to access them?


 


Cheers,


 


Nigel




From: 
sutha1...@hotmail.com

To: ozmoss@ozmoss.com

Subject: Yammer web part.

Date: Tue, 14 Oct 2014 10:34:56 +1100

Dear All,

 


Yammer web part ( Sharepoint 2010) in our intranet have an issue. Everything is 
looking fine except for the fact that no posted images are displayed in
 the Sharepoint.  I noticed from the fiddler 401 error

RE: Yammer web part.

2014-10-13 Thread Sutha Thavaratnarajah
Hi Nigel,
I am using OOB, 
I am not able to see the images only. all other components ok.
I notice few things.
https://www.yammer.com/api/v1/oauth/tokens.json?access_token=WGLk8mv8nFUM9Ykw
   HTTPS   GET 401 
text/htmlhttps://www.yammer.com/api/v1/uploaded_files/24962470/version/47819/thumbnail
  HTTPS   GET 401 text/html
also,
If I login to yammer and  then open SharePoint , makes the images visible. 
Sounds like something not right with authentication tokens?
thanks.
Sutha.
From: nigel_wither...@hotmail.com
To: ozmoss@ozmoss.com
Subject: RE: Yammer web part.
Date: Tue, 14 Oct 2014 00:10:50 +




Hey Mate,
Our yammer 2010 part is working correctly (displaying images etc.)
The original 2010 Yammer web part (which we are still using) is out of support 
now, and they recommend you use a bunch of javascript to replace it with 
(presumably hosted in a CEWP). Which are you using?
Are you able to request the images directly in the browser, or do you get 
denied access?
401 is unauthorized - what account is trying to access them?
Cheers,
Nigel

From: sutha1...@hotmail.com
To: ozmoss@ozmoss.com
Subject: Yammer web part.
Date: Tue, 14 Oct 2014 10:34:56 +1100




Dear All,
Yammer web part ( Sharepoint 2010) in our intranet have an issue. Everything is 
looking fine except for the fact that no posted images are displayed in the 
Sharepoint.  I noticed from the fiddler 401 error on the image request. Could 
any one guide?thanks.
sutha.

___
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   
  

___
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   
  ___
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: Yammer web part.

2014-10-13 Thread Sutha Thavaratnarajah
Hi Paul,
answer is yes for all of your questions. :)
But still no luck.
sutha.

From: p.no...@keller.com.au
To: ozmoss@ozmoss.com
Subject: RE: Yammer web part.
Date: Tue, 14 Oct 2014 00:58:50 +









·
Do you have  Yammer for SharePoint 2010 3.1.4 and deployed SSO for your 
SharePoint environment? yes.
·
Does the web part load the images correctly if you’re logged into Yammer in 
another tab? yes.
·
Does the Activity Stream Token you’re using have full access to the content?yes.
·
Have you tried adding Yammer to trusted sites?yes.
 

Regards,
 
Paul

 


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Tuesday, 14 October 2014 11:33 AM

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.


 


Hi Nigel,


 


I am using OOB, 


 


I am not able to see the images only. all other components ok.


 


I notice few things.


 



https://www.yammer.com/api/v1/oauth/tokens.json?access_token=WGLk8mv8nFUM9Ykw
HTTPS  GET   
401  text/html



https://www.yammer.com/api/v1/uploaded_files/24962470/version/47819/thumbnail

HTTPS  GET   
401  text/html



 


also,


 


If I login to yammer and  then open SharePoint , makes the images visible. 
Sounds like something not right with authentication tokens?


 


thanks.


 

Sutha.




From:
nigel_wither...@hotmail.com

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.

Date: Tue, 14 Oct 2014 00:10:50 +

Hey Mate,

 


Our yammer 2010 part is working correctly (displaying images etc.)


 


The original 2010 Yammer web part (which we are still using) is out of support 
now, and they recommend you use a bunch of javascript to replace it with 
(presumably hosted in a CEWP). Which
 are you using?


 


Are you able to request the images directly in the browser, or do you get 
denied access?


 


401 is unauthorized - what account is trying to access them?


 


Cheers,


 


Nigel




From:
sutha1...@hotmail.com

To: ozmoss@ozmoss.com

Subject: Yammer web part.

Date: Tue, 14 Oct 2014 10:34:56 +1100

Dear All,

 


Yammer web part ( Sharepoint 2010) in our intranet have an issue. Everything is 
looking fine except for the fact that no posted images are displayed in
 the Sharepoint.  I noticed from the fiddler 401 error on the image request. 
Could any one guide?thanks.


 


sutha.




___ 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





___ 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





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   
  ___
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: Yammer web part.

2014-10-13 Thread Sutha Thavaratnarajah
thanks for effort to find a solution.
Same domain. seems they tighten the security for images.
Few other people have similar issue. not sure, how they 
resolved.http://community.office365.com/en-us/f/176/t/227685.aspx


Sutha.

From: p.no...@keller.com.au
To: ozmoss@ozmoss.com
Subject: RE: Yammer web part.
Date: Tue, 14 Oct 2014 01:15:20 +









I’m out of ideas. Seems bizarre that text loads and you can reply but
 the images give a 401.
Is there anything different about the image location? Same domain and
 permissions?
 


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Tuesday, 14 October 2014 12:06 PM

To: ozMOSS

Subject: RE: Yammer web part.


 

Hi Paul,

 


answer is yes for all of your questions. :)


 


But still no luck.


 


sutha.




From:
p.no...@keller.com.au

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.

Date: Tue, 14 Oct 2014 00:58:50 +

·
Do you have  Yammer for SharePoint 2010 3.1.4 and deployed SSO for your 
SharePoint environment?
 yes.
·
Does the web part load the images correctly if you’re logged into Yammer in 
another tab?
yes.
·
Does the Activity Stream Token you’re using have full access to the content?yes.
·
Have you tried adding Yammer to trusted sites?yes.
 

Regards,
 
Paul

 


From:
ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Tuesday, 14 October 2014 11:33 AM

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.


 


Hi Nigel,


 


I am using OOB, 


 


I am not able to see the images only. all other components ok.


 


I notice few things.


 



https://www.yammer.com/api/v1/oauth/tokens.json?access_token=WGLk8mv8nFUM9Ykw
HTTPS  GET   
401  text/html



https://www.yammer.com/api/v1/uploaded_files/24962470/version/47819/thumbnail

HTTPS  GET   
401  text/html



 


also,


 


If I login to yammer and  then open SharePoint , makes the images visible. 
Sounds like something not right with authentication tokens?


 


thanks.


 

Sutha.




From: 
nigel_wither...@hotmail.com

To: ozmoss@ozmoss.com

Subject: RE: Yammer web part.

Date: Tue, 14 Oct 2014 00:10:50 +

Hey Mate,

 


Our yammer 2010 part is working correctly (displaying images etc.)


 


The original 2010 Yammer web part (which we are still using) is out of support 
now, and they recommend you use a bunch of javascript to replace it with 
(presumably hosted in a CEWP). Which
 are you using?


 


Are you able to request the images directly in the browser, or do you get 
denied access?


 


401 is unauthorized - what account is trying to access them?


 


Cheers,


 


Nigel




From: 
sutha1...@hotmail.com

To: ozmoss@ozmoss.com

Subject: Yammer web part.

Date: Tue, 14 Oct 2014 10:34:56 +1100

Dear All,

 


Yammer web part ( Sharepoint 2010) in our intranet have an issue. Everything is 
looking fine except for the fact that no posted images are displayed in
 the Sharepoint.  I noticed from the fiddler 401 error on the image request. 
Could any one guide?thanks.


 


sutha.




___ 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





___ 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




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





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

RE: Proxy setting with credentials.

2014-09-17 Thread Sutha Thavaratnarajah
I managed to get working, I missed the byPasslist.
defaultProxy
useDefaultCredentials=true

 
proxy usesystemdefault=False proxyaddress=http://:;
bypassonlocal=true /

  
   bypasslist

   
add address=http://abc/*;
/

   
add address=http://office.microsoft.com*;
/

  
add address=https://www.yammer.com/*;
/


/bypasslist

   
/defaultProxy
thanks.
Sutha.
From: nigel.he...@stockland.com.au
To: ozmoss@ozmoss.com
Subject: RE: Proxy setting with credentials.
Date: Wed, 17 Sep 2014 06:18:05 +









Can you not use the users’ default credentials?
 
 
defaultProxy

  enabled=true

  useDefaultCredentials=true

  bypasslist … /bypasslist

  proxy … /proxy

  module … /module

/
 
 


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com]
On Behalf Of Sutha Thavaratnarajah

Sent: Wednesday, 17 September 2014 3:26 PM

To: ozmoss@ozmoss.com

Subject: Proxy setting with credentials.


 

Dear  All,

 


our sharepoint environment (SP2013) could not communicate with SharePoint Apps 
store because of proxy.


 


I add the proxy setting in my web config similar to this. 


 


 defaultProxy
proxy usesystemdefault = false 
proxyaddress=http://proxy.company.com:8080bypassonlocal=true;
 /
 /defaultProxy
 
However, No luck yet. Our server guys says, I need to pass the credentials.  
someone can suggest, how do I pass that details. I prefer
 not to write any custom dot net class for that.
 
thanks.
Sutha.








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.





___
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   
  ___
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

Proxy setting with credentials.

2014-09-16 Thread Sutha Thavaratnarajah
Dear  All,
our sharepoint environment (SP2013) could not communicate with SharePoint Apps 
store because of proxy.
I add the proxy setting in my web config similar to this. 
 defaultProxyproxy usesystemdefault = false 
proxyaddress=http://proxy.company.com:8080bypassonlocal=true; / 
/defaultProxy
However, No luck yet. Our server guys says, I need to pass the credentials.  
someone can suggest, how do I pass that details. I prefer not to write any 
custom dot net class for that.
thanks.Sutha. ___
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-18 Thread Sutha Thavaratnarajah
Good explanation Victor. Thanks for this thread guys. Informative.

Sutha
0450076504
Sent from my iPhone

 On 18 Aug 2014, at 4:45 pm, Victor Isakov 
 vic...@sqlserversolutions.com.au wrote:
 
 OOC are you using SQL Server Enterprise Edition?
  
 This whole RBS / FILESTREAM area is a bit of a mess with lots of 
 miscommunication, etc.
  
 And don’t get me started on this 200GB content database BS.
  
 The person(s) responsible for 
 http://technet.microsoft.com/en-us/library/cc262787(v=office.15).aspx should 
 be sacked for all the confusion, contradictions and misinformation contained 
 therein.
  
 As one of MANY examples of WTF statements in the URL I don’t understand why 
 you would even use RBS if “the total volume of remote BLOB storage and 
 metadata in the content database must not exceed the 200GB limit.”, what 
 would be the point?
  
 I don’t think they have come close to clarifying the situation and what they 
 mean by “supported” and what Microsoft will “support”.
  
 I would start with the size of your CAD BLOBs and see how large they are. If 
 they are 10GB, do you really want to be channelling them through your WFEs?
  
 What frequency will people be accessing data through the share versus SPS?
  
 What will be the read / write percentage?
  
 And of course, as always what is the performance profile of your storage 
 solution?
  
 Other very important factors would also be the potential benefits of WS2012:
 ·Storage spaces
 ·Deduplication (I don’t know enough about CAD files to comment here)
 ·SMB 3.0 enhancements
  
 Bottom line I think that you would not use the FILESTREAM provider for RBS. 
 AvePoint, Metalogix/StoragePoint, Quest, etc all have far better RBS 
 providers.
  
 My AUD $0.02…
  
 HTH,
  
 Victor
  
 From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf 
 Of Paul Noone
 Sent: Monday, 18 August 2014 1:56 PM
 To: ozMOSS
 Subject: RE: Use a newtwork share as the source for a document library
  
 Well I can disable download availability per library thank goodness.
  
 But the following limitations are potential blockers unless there’s an easy 
 way to expand out to new databases as each one fills up.
  
 ·The use of RBS-enabled content databases larger than 200GB with 
 collaboration sites is not supported.
 o   Not entirely sure what’s meant by “collaboration” unless they’re 
 referring to the Team Site template.
 ·If you are using Remote BLOB Storage (RBS), the total volume of 
 remote BLOB storage and metadata in the content database must not exceed the 
 200GB limit.
 o   Am I right in assuming this does not include the files themselves??
 ·You cannot upload any document larger than 2GB to an RBS-enabled 
 content database.
 o   Pretty sure this will be the case for CAD project files.
  
 If they’re talking about terabytes worth of content then I have limited 
 options. They’re not after a SharePoint user experience. They just need a way 
 to access and dump files. I think metadata is also unrequired.
  
 Third party apps always bite me on the ass come upgrade, so it looks like a 
 customer connector is probably the only avenue left to me.
  
 Regards,
  
 Paul
  
 From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf 
 Of Ivan Wilson
 Sent: Monday, 18 August 2014 1:44 PM
 To: ozMOSS
 Subject: RE: Use a newtwork share as the source for a document library
  
 My experience with OneDrive for Business has been very poor. It only supports 
 a limited number of files and folders in a sync location (20,000 in your My 
 Site library, 5,000 in other libraries - link). It has constantly run into 
 issues for me, with the only option being to start syncing again from scratch.
  
 There are third party products out there that expose a file share as a 
 document library. I know AvePoint have one. This will complicate your 
 backup/restore/DR strategy though. I’ve also found that exposing an existing 
 file share as a document library isn’t always a wonderful experience. You 
 won’t have any metadata (initially at least) and a deep folder structure is a 
 poor user experience in SharePoint. 
  
 I recently saw a presentation from CADAC. These guys specialise in linking 
 CAD drawings with SharePoint. One of their products (Organice) will link 
 AutoDesk’s Vault repository with SharePoint. Vault seems to be a common 
 product used by people that work with drawings, but the licencing gets 
 pricey. CADAC’s Organice allows people that don’t have Vault licences to 
 access and review drawings. I haven’t used these products, so don’t have any 
 practical experience to share.
  
 Ivan
  
 From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf 
 Of James Boman
 Sent: Monday, 18 August 2014 12:35 PM
 To: ozMOSS
 Subject: RE: Use a newtwork share as the source for a document library
  
 Paul,
  
 Does using SharePoint synch button on a library physically copy the entire 

RE: Open with Explorer...epic fail

2014-07-07 Thread Sutha Thavaratnarajah
Hi Paul,
Just wondering, Are you using 64 bit IE? Did you try the 32 bit?
thanks.Sutha.

From: p.no...@keller.com.au
To: ozmoss@ozmoss.com
Subject: Open with Explorer...epic fail
Date: Tue, 8 Jul 2014 02:44:15 +









Hi all,
 
I’m running IE10 on Windows 8 Pro and simply cannot get Explorer view to work 
for document libraries. The button is active but throws the following error.
 

 
Desktop Experience feature is installed and WebClient service is running 
locally and on the server.
 
I’ve tried everything, including the hotfix [KB2846960] and some suggested 
registry changes. Still won't work.
 
What's crazy is that I can map a network drive and also use the Synch option 
successfully from the Document library ribbon.
 
All suggestions welcome.
 
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   
  ___
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: Claims Authentication session time-out

2014-07-03 Thread Sutha Thavaratnarajah
Thanks Chris,  we are in SP 2010. I will see what else I can do about it.

Sutha
0450076504
Sent from my iPhone

 On 3 Jul 2014, at 1:25 pm, Chris Tomich chris.tom...@gmail.com wrote:
 
 Hi Sutha,
  
 So I’m not sure if this is related, but we’ve faced an issue recently with 
 SharePoint 2013 and claims authentication. The problem is that the claim 
 expires after a set period (in our case it was 60 mins as we are using ACS). 
 At this point our users have to re-authenticate in order to be able to 
 continue working.
  
 Unfortunately we’ve only just realised this was the error so I don’t yet have 
 a solution. For now we’ve just increase the expiry to 8 hours in ACS so that 
 people aren’t getting logged out during their typical work day.
  
 Hope this provides some leads.
  
 Kind Regards,
 Chris Tomich
  
 From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf 
 Of Sutha Thavaratnarajah
 Sent: Thursday, 3 July 2014 6:51 AM
 To: ozmoss@ozmoss.com
 Subject: Claims Authentication session time-out
  
 Hi All,
  
 One of our key user, after he worked on MS office file for few hours, he try 
 to save back. He experienced an error message from SharePoint and the 
 document hung after that.
  
 Here is the ULS for that particular time.
  
 Cobalt SubRequestError: FileUnauthorizedAccess HRESULT 0x80004005
  
 Our environment is claims based and in SP 2010.
  
 any idea?
  
 thanks a lot
  
 Sutha Thavaratnarajah
 ___
 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
___
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___
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

Claims Authentication session time-out

2014-07-02 Thread Sutha Thavaratnarajah
Hi All,
One of our key user, after he worked on MS office file for few hours, he try to 
save back. He experienced an error message from SharePoint and the document 
hung after that.
Here is the ULS for that particular time.
Cobalt SubRequestError: FileUnauthorizedAccess HRESULT 0x80004005 Our 
environment is claims based and in SP 2010.
any idea?
thanks a lot
Sutha Thavaratnarajah ___
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: Claims Authentication session time-out

2014-07-02 Thread Sutha Thavaratnarajah
Nigel,

It's one-off issue, he could not save back the document so, he lost the work he 
did on the document. He click few times that's causes a crash on the word 
document.  I have to investigate and provide some sort of assurance that it 
will not happen again. :(

Sutha
0450076504
Sent from my iPhone

 On 3 Jul 2014, at 1:01 pm, Nigel Witherdin nigel_wither...@hotmail.com 
 wrote:
 
 
 Hey,
 
 That error code means Access Denied - has someone else checked out the 
 document, changed permissions on the doc / list / site etc. that is causing 
 him to be denied access? Any running workflows etc. that may be preventing 
 him from overwriting the doc.
 
 If he downloads the doc, can he upload a new version over the top of it (i.e 
 take the saving through Word out of the equation)
 
 Cheers
 
 Nigel
 
 
 From: sutha1...@hotmail.com
 To: ozmoss@ozmoss.com
 Subject: Claims Authentication session time-out
 Date: Thu, 3 Jul 2014 08:51:13 +1000
 
 Hi All,
 
 One of our key user, after he worked on MS office file for few hours, he try 
 to save back. He experienced an error message from SharePoint and the 
 document hung after that.
 
 Here is the ULS for that particular time.
 
 Cobalt SubRequestError: FileUnauthorizedAccess HRESULT 0x80004005
  
 Our environment is claims based and in SP 2010.
 
 any idea?
 
 thanks a lot
 
 Sutha Thavaratnarajah
 
 ___ 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
 ___
 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
___
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___
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 Sutha Thavaratnarajah
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.au
To: 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?
 
 
 
Ishai
 Sagi |
Solutions Architect


0488 789 786
|
is...@exd.com.au
|
www.sharepoint-tips.com
|
@ishaisagi
|
MVP Profile |
 FAX: 02 61083517
 




___
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   
  inline: image002.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