Tagged Questions
0
votes
1answer
24 views
Is it possible to share the same list type among different sites?
I'm accessing list content via its corresponding webservice. I'm re-creating new lists for new sites but often the list content type is the same - image, link etc.... Is it possible to create a list ...
0
votes
2answers
28 views
When creating a sharepoint site can list content be mixed with web-parts?
When creating a sharepoint site can list content be mixed with web-parts ?
So the list content can easily be exposed with a web-service and the web parts can exist alongside the list content parts.
1
vote
3answers
93 views
Where to expose the data within a web part via a web service
List data can be exposed via a web service but how can web parts be also exposed via a web service ?
I think this question is similar to ...
0
votes
1answer
17 views
how shall I update a webpart on page using SharePoint web services
Which method I can use to hide a webpart on a page using SharePoint web services for sharepoint 2007.
Thanks
Sophia London
2
votes
1answer
58 views
can User profile synchronization be started from a web service?
I'm trying to kick off the user profile syc using a web service. Here is what i've tried :
[WebMethod]
public string runUserProfileService()
{
var message = "";
...
1
vote
0answers
59 views
Sharepoint Webaprt
How to call sharepoint webpart usercontrol method in AJAX
$.ajax({
type: "POST",
url: "FundUserRegister2.asmx\validateEmail",
data: "{'strMailID': '" ...
0
votes
0answers
53 views
How can I manipulate sharepoint ajax calls into the pipe line?
I built a SP server code that , (I don't know why) make some trouble into the client side code.
When the page is loaded for the first time, I notice that every single item in the page, they are not ...
1
vote
2answers
90 views
Web service endpoint error for a web part
I'm getting an error from a web part that calls a web service. I think I just need to add the endpoint XML to the web.config. Is there a better way to do this? Can I add the endpoint from Central ...
1
vote
2answers
323 views
How to register a new http module n the web config
I built a http module. I copied into the GAC .
Then, I put into the WebConfig file lke this :
<httpModules>
....
<add name="MyAssembly" type="MyAssembly.Global"/>
...
3
votes
3answers
666 views
Sync Google Calendar with sharepoint Calendar
How to synchronize Google calender with SharePoint 2010 calender ?
1
vote
2answers
1k views
HTTP/1.1 200 OK Server: Microsoft-IIS/7.5 , Connection: close
I am getting this error in sharepoint 2010 portal after i restore the site collection for my portal from SharePoint 2010 management shell.
The problem is the restoring process does not complete and i ...
0
votes
0answers
36 views
Construct web service request dynamically based on URL and consumers
I'm designing a web page and web parts for showing some data that comes from a web service.
The web service is, for the purposes of this question, analogous to a SQL database. The request is to be ...
1
vote
1answer
878 views
Display a list of subsites?
Is it possible to display a clickable, self-updating list of subsites on the top-level site?
Also, is it possible to further sort the list according to the subsite category?
if it is, how can you ...
0
votes
3answers
389 views
What is the difference between CamlQuery and SPQuery
Maybe a simple question, when to use CamlQuery and when to use SPQuery ?
I think that SPQuery is used inside a WebPart running on the SharePoint server, and that CamlQuery is part of the Client ...
0
votes
1answer
127 views
how can I retrieve an USERID from a web site user, when it adds a new FILE on SP?
I'm building a WebServices tha allows user from a social network to add a new FILE in a DoCLibrary.
This WebServices' WSDl ,was built with no "USERID" field .
Every time that someone add a new file ...
0
votes
1answer
323 views
Using GetChanges in Sharepoint SiteData web service
I am trying to use this code to get changes in a site collection. But i don't know how to get the databaseId.
SiteData.SiteData siteData = new SiteData.SiteData();
...
0
votes
1answer
174 views
GetWebPart vs. GetWebPart2
I'd like to understand the difference between those Web services:
- GetWebPart vs. GetWebPart2
- GetWebPartProperties vs. GetWebPartProperties2
- SaveWebPart vs. SaveWebPart2
I did a test to compare ...