Create A WebService In SharePoint 2007?
Dec 28, 2010
I want to create a very simple WebService, which will be deployed on SharePoint Farm 1 and will be accessed by SharePoint Farm 2. The WebService will be responsible for querying all the ContentTypes and returning the result to the Farm 2. I don't know the basics of creating the WebService in SharePoint.
View 1 Replies
Similar Messages:
Jun 16, 2010
can i create webparts controls for Sharepoint 2007 in Delphi Prism? If yes, how?
View 1 Replies
Dec 19, 2010
I want to create a custom web part in SharePoint 2007 that allows me to take items from an existing custom list (i.e. Title, Hyperlink, Description and photo) and then render it in a format of my choice. How can I do this using C# asp.net and a web part?
View 1 Replies
May 6, 2010
My customer has a sharepoint 2007 server installation where they show a simple GUI. They want me to develop a webpart for displaying the top 10 most critical service arrends and add this to their "start" sharepoint webpage. The data is available through a stored procedure, and the gui could be as simple as a repeater. BUT, how do I make this as a webpart in sharepoint. This means I want to drag and ppsition it anywhere I want on the sharepoint GUI. I have worked with asp.net for 5 years, but never touched sharepoint.
I did some googling on the topic but what i found was very cumbersome, they said I needed to have sharepoint installed locally. Thats just not possible in the current environment. Surely its not that difficult. Can't I just develop a standard webpart and import it somehow into sharepoint?
View 5 Replies
Jun 29, 2010
Is a sharepoint 2007 webpart likely to work on 2010 without any modification? If not, what are the main areas that would require modification?
View 3 Replies
Jan 4, 2011
1) I have an ASP.NET website which is the main entry point in the application.This website uses Forms authentication, which validates credentials (username/password) against a database. 2) Once logged on the website, the user is displayed a page containing several links which point to a Sharepoint 2007 application, where authentication is managed by an Active Directory. 3) Every user in the Active Directory is duplicated in the database managing the ASP.NET website authentication.
View 1 Replies
Mar 23, 2011
I have a custom master page that I use in WSS3.0 (SharePoint 2007) and I am using a HTML 'DOC TYPE' which I am declaring at the top of the master page. The site all works very well with my master page apart from some of SharePoint controls which are acting a little funny, namely the People Picker for a People and Group field.If I remove the DOC TYPE declaration then the People Picker and other controls work perfectly and behave as they should but it sends some of my customisations/layout all over.
Before I spend a lot of time reviewing fixing the issues I get to my design without having the DOC TYPE declared, does anyone know if there is a certain DOC TYPE that is compatible with WSS3.0 / SharePoint 2007 and all of its features (i.e. People Picker Fields)?
View 1 Replies
Mar 10, 2010
How to check/confirm that whether SQL connection pooling is enabled for a sharepoint 2007 web-application ?
View 1 Replies
Sep 1, 2010
I'm trying to do dynamic switching of the master page in SharePoint 2007 publishing site.
I'm following this example which uses a HTTP Module [URL]
Here is my code
public class SwitchMasterPage : IHttpModule
{
public void Dispose()
{
}........
Everything is working fine when the current page type is an Application Page, however when the page type is a Publishing page (e.g. BlueBand.master) the page_PreInit procedure is never called - it is still being registered with the event handler though.
View 1 Replies
Apr 20, 2010
i downloaded Microsoft Report Viewer 2010 Redistributable Package and used in asp.net page and it works fine without post back all the page BUT, when i created costume web part including report viewer , default page shows javascript error and the report papers as disabled , and when i click viwer the whole page getting post back
View 2 Replies
Dec 29, 2010
I am new in sharepoint development. I have 2 webparts attached on a page. The first webpart (MyTestingWebpart1) basically it does only inserting of data and the other webpart (MyTestingWebpart[2]) displays the records from the database. Now my problem is when I try to click on the save button, somehow I don't know how to refresh the webpart that displays the newly inserted record. Is this possible?
I have added a query at the page load event of MyTestingWebPart[2]. Both of the webparts attached are web user controls.
View 2 Replies
Jun 7, 2010
I have just deployed my ASP.NET/C# code to a sharepoint server and am getting this error when hoving over the menu:Menu_HoverRoot(this) Object ExpectedI have absolutely no idea what is causing it, but have seen other people with this problem, and it seems to be something with WebResource.axd.
View 1 Replies
Jul 12, 2010
In IIS I have a virtual directory with only windows authentication enabled. From Javascript I call into a ASMX webservice. From the ASMX webservice I make a call to the SharePoint Search.asmx Webservice. whatever I try I keep getting the followin gerror message:
"The request failed with HTTP status 401: Unauthorized"
I use the following code to call the SharePoint webservice
[Code]....
My web.config settings are:
[Code]....
The Sharepoint farm is configured to use NTLM authentication.
Strangely everything works when I am testing in Visual Studio using the builtin webservice, but when I deply to my local IIS or Test Server it breaks.
View 1 Replies
Mar 23, 2010
I am using the below code to Export DataTable to Word,Excel,CSV format & it's working fine. But problem is that this code export to MS Word 2003,Excel 2003 & CSV version. I need to Export my DataTable to MS Word 2007,Excel 2007 & CSV because I am supposed to handle more than 100,000 records at a time and as we know Excel 2003 supports for only 65,000 records.
how to export DataTable or DataSet to MS Word 2007,Excel 2007 & CSV.
[Code]....
View 1 Replies
Sep 13, 2010
On Previous version of my application, if I want to export my data from SQL Server to Excel 2003 file, I just retrieve data from the SQL server and then straight away show "Open, Save, Cancel" dialog box to get the data on Excel 2003 Format. Here is the existing code in C#.
public void ExportToExcel(string StrFileName, DataTable dt)
{
if (dt!= null && dt.Rows.Count > 0)[code]....
but when I want to Export to Excel 2007 format with the same. I don't have any Idea to export it.
View 3 Replies
Mar 25, 2010
I'm working on a web app and need to stream various files. I can do pdfs, images, and older Office documents. However, when I try to do with 2007 documents, it breaks. Here is my code:
Response.Buffer = true;
Response.Clear();
Response.ClearContent();
Response.ClearHeaders();
switch (FileExtension.ToLower())
{
case "pdf":
Response.ContentType = "application/pdf";
break;
case "doc":
Response.ContentType = "application/msword";
break;
case "docx":
Response.ContentType = "application/vnd.ms-word.document.12";
break;
case "xls":
Response.ContentType = "application/vnd.ms-excel";
break;
case "xlsx":
Response.ContentType = "application/vnd.ms-excel.12";
break;
default:
Response.ContentType = "image/jpeg";
break;
}
Response.BinaryWrite(buffer);
The error that I get is:
An invalid character was found in text content. Error processing resource 'http://DomainName/GetFile.aspx.
View 2 Replies
Mar 23, 2010
I am using the below code to Export DataTable to MS Word,Excel,CSV format & it's working fine. But problem is that this code export to MS Word 2003,Excel 2003 version. I need to Export my DataTable to Word 2007,Excel 2007,CSV because I am supposed to handle more than 100,000 records at a time and as we know Excel 2003 supports for only 65,000 records.
how to export DataTable or DataSet to MS Word 2007,Excel 2007.
[Code]....
View 1 Replies
Apr 13, 2010
I need to create some mail merge documents and was wondering if anyone knew the best way of doing this from asp.net. Currently I have set up .dot template files with bookmarks and then use COM to open these files pass the data and save. I can then stream the file to the users desktop. The issue i have is that to get this working when i release it is by installing Wrord on the server which I would prefer not to do.
way of passing data to word docs and then opening them to the user. The reason why i need to use word, is that the user needs to be able to modify the doc.
View 7 Replies
May 21, 2010
how to implement API over the SharePoint(MOSS) framework.
What i want to do is create a client application to communicate with the SharePoint.
wanting to implement something like following.
Client send post request to API implemented on SharePoint, API receive a request and do the authentication and create a login cookie. Client keep communicating with API(with the login cookie), request necessary information and API returns it.
I could not find anyway to hook a program... Is there anyway to hook a program or implement own authentication mechanism before SharePoint's own authentication is called?
View 1 Replies
Jun 10, 2010
how to create a sharepoint application using asp.net
View 2 Replies
Mar 31, 2011
am using c# with asp.net for wspproject. I am using spgridview to show the folders and files. When i clicked on folder, the spgridview bind with folder content(files/folders).Now i need to navigate folders based on the folder names like navigation bar in sharepoint.How to create the navigation bar for sharepoint folders?
View 1 Replies
Jan 16, 2010
Iam creating Ajax autocomplete control with sharepoint list. the problem iam facing it is unable to get data form the sharepoint list.
code is
[Code]....
Webservice Code
[Code]....
View 1 Replies
Jun 29, 2010
I am new to sharepoint I am familiar with creating webparts and using them in sharepoint, but how to create an entire site as template and make it to use in another sites
View 2 Replies
Jul 6, 2010
So I've created an asp.net web application on the same server the sharepoint site is located on. If I create an Access view of a list on the sharepoint site, which will then create an Access Database, can I then use that Access database in an access data source in my web application?
If not, what's the best method of attack to access sharepoint list data from thisasp.net app?
View 4 Replies
Jun 29, 2010
How do I create a form for a public site that submits to a sharepoint list on a protected site? I am trying not to use InfoPath form.
View 2 Replies