SPServices is a jQuery library which abstracts SharePoint's Web Services and makes them easier to use.
9
votes
3answers
4k views
Should i have the “Microsoft SharePoint Foundation Web Application” role active on all servers in a large farm?
I've checked the resources at Microsoft TechNet, MSDN and Bing but I’m not aware of any information regarding the best practice about the configuration for the "Microsoft SharePoint Foundation Web ...
7
votes
1answer
541 views
SPService, multiple farm jobs, persisted property updates (SPPersistedObject locking?)
I have an SPService class.
MySPService : SPService, IBackupRestore, IDiagnosticManager {
[Persisted]
private string propertyUpdatedByJobsOnAllServers;
.
.
.
}
I also have a Job that runs ...
4
votes
4answers
2k views
Multiple Values in CAML query from Array? SharePoint 2010 using jQuery/SPServices
So if I use SPServices to GetListItems with CAMLQuery, is it possible to insert multiple values inside Value Type='Number'> here
I would like to evaluate things throught a flow in my page, add to an ...
3
votes
2answers
1k views
SPservices to retrieve version history of items in SharePoint List 2007?
May I know how can one use SPServices to retrieve all the version history of a particular items in a SharePoint 2007 Server List? (If it is not possible via SPServices, are there other Javascript ...
3
votes
1answer
305 views
How do I retrieve the Name of the User using SPServices given the email address?
Is it possible to retrieve the name of a user using the SPServices given the email address?
Suppose Jack Harry has a email [email protected] inside the SharePoint 2007. Is it possible to ...
3
votes
3answers
374 views
jquery projects and visual studio best practices?
Just curious how others are handling their jquery related solutions. It's obviously very easy to add a Content Editor web part with a content link to a source file. That file could have your ...
3
votes
3answers
898 views
using jquery and search.asmx service search People in sharepoint 2010
Hi i use below code for Getting people Search. Using below code I am able to search but getting only user name and User my site url.
I want all user profile Property.How I get all user Property using ...
2
votes
4answers
2k views
How can I hide allitems.aspx from curious people?
I have a custom ASPX page in WSS 3.0 which I use to capture email addresses. These emails are stored in a list called Notificiations using nothing but jQuery and SPServices. Because I'm using jQuery ...
2
votes
1answer
196 views
How can I get specific SharePoint site GUID using javascript/jquery
For example:
I have a site under this url: http://intranet.contoso.com/news
When I open it i would like to read it's GUID for future use in my custom AssetPortalBrowser.aspx url picker.
Thanks!
2
votes
1answer
2k views
jQuery & SP2010 : Upload document to library using jQuery?
I built a custom form that saves the data to multiple lists with on click; it works pretty well for its intended use (keeping the data related). Thing is I am totally new at jQuery and SPServices, but ...
2
votes
3answers
2k views
Get the Account Name of the List Item Author
Using the below SPServices call, I can get the display name of the author of a list item:
$().SPServices({
operation: "GetListItems",
async: false,
...
2
votes
2answers
1k views
How effective is locking down _vti_bin
I've come across a roadblock where the maintainer of the Sharepoint installation has restricted access to the _vti_bin folder (i.e. denied for all users). I am using SPservices to access the ...
2
votes
1answer
4k views
SPService GetListItems with CAML : can't get example to work
enter code hereI am using an example I found on codeplex of SPServices with CamlQuery to try to get list item values with where clause on the ID. For whatever reason this doesn't seem to work for me; ...
2
votes
6answers
3k views
How to update multiple ListItems with a “Where Clause” using SPServices?
I've searched the jQuery SPServices code examples and MSDN references for an simple example how to update several ListItems using a Where-Clause.
Code for updating a single ListItem with ID = 500, ...
2
votes
2answers
6k views
Error while referring “/_vti_bin/ListData.svc”
While trying to refer "ListData.svc" service in my VS.NET WinForm project, I am getting an error
The HTML document does not contain Web service discovery information.
Metadata contains a reference ...