3,460 reputation
824
bio website blog.vossers.com
location London, United Kingdom
age 29
visits member for 3 years, 7 months
seen Nov 7 '12 at 18:20
stats profile views 466
Dutch Independent SharePoint Developer in London

2d
awarded  Notable Question
Mar
15
awarded  Popular Question
Mar
10
awarded  Popular Question
Nov
16
awarded  Necromancer
Oct
9
awarded  Yearling
Sep
22
awarded  Custodian
Aug
27
answered How to have a row number in a custom webpart with pagination
Aug
23
comment Proxy page for Office 365
by "site" do you mean the SharePoint Online servers, or browsers on the customer network?
Aug
23
comment Proxy page for Office 365
I am pretty sure that the web part would not be able to make outbound web requests, as you already suspected
Aug
23
comment SharePoint Cross Domain Request with jQuery
JSONP works by adding a script tag to the document, which triggers the browser to download and run (it expects javascript to be returned!) the response returned from the service url. SharePoint SOAP web services do not support JSONP as the response does not contain executable javascript.
Aug
23
comment Proxy page for Office 365
Your services don't have to, that's the point of YQL. YQL introduces JSONP support for your service by sitting in the middle. Your client code calls Yahoo servers via JSONP. Yahoo servers can call your service then using standard HTTP requests. Yahoo is your proxy, and it lives outside your SharePoint environment.
Aug
22
revised Proxy page for Office 365
deleted 1 characters in body; edited body
Aug
22
revised Proxy page for Office 365
added more info re YQL
Aug
22
answered Proxy page for Office 365
Jul
26
awarded  Enlightened
Jul
26
awarded  Nice Answer
Jun
28
awarded  Good Answer
Feb
5
comment Structure in Sharepoint -> Customer -> Project -> Subproject
What do you mean exactly by "it is not possible to get this deep structure"? What is stopping you?
Feb
2
comment How to change programmatically privileges/permissions on SPListItem
To make this method more generic and reusable, pass in a SPSecurableObject instead of SPListItem. This way you can use it to secure SPLists and SPWebs too. Might have to pass in a separate SPWeb to get hold of the SPRoleDefinition though, or you can test the type of the SecurableObject and get it from there after doing a cast to the right type msdn.microsoft.com/en-us/library/…
Feb
1
comment Strange problem with newdocset(Document set) with SPContext.Current.Web while using HttpModule
But you mentioned you are able to read the current Web ID from it so it looks like it was loaded ok