| bio | website | e-junkie-chronicles.blogspot.… |
|---|---|---|
| location | Nottingham, United Kingdom | |
| age | 28 | |
| visits | member for | 3 years, 2 months |
| seen | yesterday | |
| stats | profile views | 1,665 |
Senior SharePoint and Business Intelligence Consultant for Intelligent Decisioning Ltd, a Microsoft Gold Certified Partner based in Nottingham UK specialising in SharePoint, CRM and Workflow.
I'm experienced with WSS 3.0, MOSS 2007, SharePoint Foundation 2010, SharePoint Server 2010, SQL Server Integration Services (SSIS), SQL Server Analysis Services (SSAS), MDX Scripting, Workflow & WCF.
I'm certified to MCPD SharePoint 2010 Dev, and MCTS WSS & MOSS Config
I spend way too much time online.
|
1d |
comment |
SharePoint Downloads Does this happen when you upload to every Document Library, or just one in particular? |
|
2d |
comment |
I want to make a weather webpart that displays temperature by using Api like Google or yahoo The best way you're going to want to do this is to have as much of the functionality of this in JavaScript - the web part emits JavaScript that will call the Yahoo API, process the returned result, and replace the area on screen with your processed & formatted results. If you do it this way, you can 'schedule' the whole process using JavaScript setTimeout() method, and have it repeat after a defined amount of time. |
|
May 19 |
comment |
I want to make a weather webpart that displays temperature by using Api like Google or yahoo You can if you abstract out the code that gets the data from the web service, and structures it. |
|
May 18 |
comment |
I want to make a weather webpart that displays temperature by using Api like Google or yahoo What version of SharePoint? With 2013's App Model, questions like this can be open to many different suggestions for solutions. |
|
May 18 |
comment |
query a sharepoint 2010 list from excel vba to retrieve a specific record You can just as easily create SOAP queries from Office 2010 applications using VBA, Excel 2013 is not a necessity. |
|
Apr 23 |
comment |
Distributed Cache 2013 and Ios That's correct. |
|
Apr 21 |
comment |
Source control mechanism in SharePoint designer 2010 For what reason do you need content in the site stored in TFS? SharePoint's core functionality may already provide what you need in terms of versioning, etc. |
|
Apr 21 |
comment |
Is i possible to render a visual webpart Did you add the runat="server" tag to the controls on the webpart's ASCX? |
|
Apr 19 |
comment |
Distributed Cache 2013 and Ios This actually refers to security tokens which are used to verify that your session for that particular site (which is stored in your browser cookies) is still valid. Unfortunately, when you go to a different web application, it will have a different URL therefore you won't have the cookies that you had in the previous site therefore you're asked for them again. If you don't get this on Windows PCs, this tells me that your environment is using NTLM, if I'm correct? |
|
Apr 19 |
comment |
Distributed Cache 2013 and Ios Distributed Cache has nothing to do with user authentication. It is the ability for multiple web front end servers to all maintain a server side cache capability. Previously, individual web servers would hold their own cache, and in a multiple web front end scenario, it is possible that the cache can become out of sync. Distributed Cache is a solution to this. |
|
Apr 8 |
comment |
From .NET developer to SharePoint developer - Can it happen? Ah, gotcha. Good question though. But all it takes is for a competitor to come up with something else that does the job better for cheaper. MSFT quashed the competition (arguably IBM's WebSphere) but what's not to say something else might just appear out of nowhere in the coming years. We need to stay dynamic and flexible in order to remain employable in the coming years/decades. |
|
Apr 8 |
comment |
From .NET developer to SharePoint developer - Can it happen? Is that a question or a statement? SharePoint will be around for a fair bit yet. Maybe not in the form you know it as, but it's definitely not going anywhere soon. |
|
Apr 4 |
comment |
Not all changes apply after re-deploying solution (custom workflow action for SharePoint Designer) Tried an IISReset? |
|
Apr 1 |
comment |
RBS with SharePoint 2010 and SQL Express 2008 / 2012. And how would I deal with it? By upgrading to SQL Server Standard or higher. I don't envisage many decent scale SharePoint scenarios (and 100GB of content in the first shoot is a medium scale situation) being possible at all on SQL Express. |
|
Apr 1 |
comment |
RBS with SharePoint 2010 and SQL Express 2008 / 2012. Indexing is performed by SharePoint Search. It will do that for you. |
|
Apr 1 |
comment |
RBS with SharePoint 2010 and SQL Express 2008 / 2012. The size limits on SQL Express are the database file sizes, regardless of the application. Once your index databases reach 10GB, you cannot index more and you will encounter problems. |
|
Mar 29 |
comment |
SharePoint, LINQ & Reporting Services Tools But other than that, and the standard SharePoint List data source, these provide for the majority of scenarios of getting data out of lists. |
|
Mar 29 |
comment |
SharePoint, LINQ & Reporting Services Tools Depending on what version of SharePoint you're running, you could also try using the XML Data Source and hooking it up to the OData endpoints that SharePoint providers (check out msdn.microsoft.com/en-gb/library/ff521587(v=office.14).aspx or msdn.microsoft.com/en-gb/library/fp142385.aspx in SharePoint 2013) |
|
Mar 29 |
comment |
Why is it possible to declare more then 1 configuration section in the onet.xml? Maaannn.. it's like seeing photos of yourself from preschool! |
|
Mar 29 |
comment |
Putting User Control in Web Part Does your Visual WP deploy and add to a SharePoint page straight from new, before you start customising it? A good habit I always do is make sure the basic plumbing works, so initial web parts deploy and can be added, then I start adding stuff to them, so I know what breaks it when it breaks. |