Software Development Network Logo
  • Visual C#
  • Visual C++
  • Microsoft ISV
  • Audio and Video
  • SharePoint Products
  • Windows Forms
  • SQL Server
  • Visual FoxPro
  • Visual Basic
  • Game Technologies
  • Smart Devicet
  • Windows Vista
  • .NET Development
  • IE Development
  • Visual Studio

Software Development Network >> SharePoint Products

SharePoint Products

New Question

Reference materials
Typed Dataset or Custom Classes
Typed Dataset or Custom Classes
Creating multiple tasks to multiple people
Javascript error in Internet Explorer
Publish restores sites...
Architecture for Notification based application
Problem in Document conversion
storing old values along with the new ones in a table entity created at application level
Interface HELP!

Top Answerers

svxtc
TruePsion
Tilfried Weissenberger
Kendsr
Stephen Lin
A.F.B
DOSST
Andy Ho
Eli Bayeh
iampedro
Content Management (Weblog, Blog, Announcements) Web Service
Only Title

Answer Questions

  • Flamin Content Query problem

    Hi, I am having a problem with the Content Query web part and I'm not sure that I am able to do what I want. Using MOSS2007 in the News area I would like to group the news articles that have come in by the day that they are created and group them this way with the most current days items at the top. Example of what I would like to see Monday Feb 19 * News Item 1 * News Item 2 Friday Feb 16 * News Item 1 * News Item 2 Thursday Feb 15 * News Item 1 .... From what I have discovered the only way to group them is by some column and then this column is displayed. So I think I need to have thme group by column x and display column y. Is this possible Thanks - Jon ...Show All

  • IrishGandalf document library upload event

    Is there any way to write a custom even for a document library so that when a user uploads a document (and it has a certain custom property checked) the custom event creates a copy of that document in a network share directory Cheers, check this class http://msdn2.microsoft.com/en-us/library/microsoft.sharepoint.spitemeventreceiver_members.aspx here is a sample I found in one of the blogs http://blah.winsmarts.com/Post.aspx postID=68 You should be able to trap the "Insert" event on a document library and have a copy saved into a network share. Thanks for the help guys, I should be able to make this stuff work from now! If I have any more issues you'll ...Show All

  • Vlad Shimov Network Load Balancing vs. Hardware Load Balancing (CISCO Arrowpoint)

      Hi Have a query regarding using the Windows 2003 Network Load Balancing Service. My ISP provides Load Balancing functionality via there CISCO (Arrowpoint) Device. We were experiencing some problems with the Arrowpoint so during testing I installed the NLB service and got all my websites working to a tee I decided that this is perhaps the best way forward anyway as I had more control over adding and removing servers to the cluster, but none the less I decided to ask my ISP's advice as to which solution was the best. Their response was... "Microsoft's implementation of NLB is not a particularly network friendly application of load balancing. It operates by spoofing the source MAC address in ARP replies. This causes all switches ...Show All

  • hackbabu How to listen to a web service for a message receive.

    Is it possible to listen to a webservice (WS) when a message is received by the WS. Thanks, Sailu when you just want to debug or look at the message when it arrves at the services. you can look at mindreef . One thing you can do is implement an ISAPI filter to intercept the calls another option is to implement a gateway so that a front web-service will get called and it would dispatch the call to the intended webservice and to whatever other listener you want Arnon Consider the case where you have two independent objects that need to process the same message, but neither should know about the other's existence, because they could be independently deployed. Current WS implementations and tools do a lou ...Show All

  • Pirooz Javan (Old) Is it possible to use Domain-Specific Languages out of VS2005?

    I want to create my own windows-forms application. This application must create and show some diagrams. Is it possible to use Domain-Specific Languages out of VS2005 in my own windows-forms application Download the latest Visual Studio 2005 SDK, which allow to create your own DSL editor ...Show All

  • HabibRazak MOSS2007 standalone no search results

    Hi I have done a standalone install and added a couple of users, a couple of sites and a couple of documents. Searcing for any of these returns nothing. The default content access account (NT authority\local service) has Full read permissions to all zones under 'Policy for web application' in Central admin. A crawl has been completed but the following warnings are in the crawler log: " http://csciisris2 The object was not found. (the item was deleted because it was either not found or the crawler was denied access to it) Local Office Sharepoint Server Sites". Similarly for sps://csciisris2 and sts://csciisris2 Additionally there are some gatherer warnings in the event logs: "The start address < ht ...Show All

  • Arthur Greef Design Consideration for active/active clustering

    Hi, I need help on the design consideration to develop a VB application to work in a Cluster (active/active). The application would consist of an NT service that will spawn activeX exe components based on a configuration. Thank you, regards, S. Balakrishnan One main thing that you need to remember regarding Microsoft's clustering technology is that it based on a "shared nothing" concept the meaning is that in an active/active configuration you'd need to partition the work between the two active servers and have each server act as a backup for the other one. Regarding other design consideration. you should probably provide some more details e.g. what are the fail-over t ...Show All

  • dschaller how to understood farm level cache in sharepoint sites?

    Suppose we have more than one web server or more that one site collection in web application which depnedent process or syncronously happen process in sites then there is a cache differentiation how its apply it or how you know the such scenario in brief to get exact role of cache in multiple server farms. ...Show All

  • CalvinR i need to change the default value of a field in create new item in the task list items

    Hi, when the user is working on a certain list and he clicks on new item. I need to change the default value on one of the fields programmaticaly. So I did this, let s suppose that my list is called Tasks and the field that I need to change is the " Title " field. And I am working in a site called site2 in my Sharepoint web site. What I did I create a web part and add it to the NewForm.aspx page in the Tasks directory. Then I did this in CreateChildControls () method I did this in the code :  for (int j = 0; i < spw.Lists.Count; j++)                 {                &nbs ...Show All

  • Lewis McCarthy Change the default theme applied to new sites

    Hi SharePoint people, I have created a new theme in MOSS and was looking for a way of changing the default theme that is applied when you create a new site so that it uses the new theme. Any help welcome. Grant. Thanks for the suggestion Jay. I am not keen to install third party features just yet, but I will keep it in the back of my mind. I had a look at changing the default theme, but it appears the default theme is not stored in the standard location, being; C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\THEMES I think site.master pages are a better option anyway so I might have a go at that. Regards, Grant. Hi Tom, Thanks for the suggestion. I know ...Show All

  • Yuva Accessing data in lists and libraries in a state machine workflow

    I'm currently trying to develop a state machine workflow in VS2005. For this workflow I need 2 data sources: data from the current form item for that this workflow was started (it's an InfoPath document in a form library) and data from a specific dataset (can be identified by a specific field in the list) in another list on the website How can I get access to this data I need it for the workflow to identify which user has to get a task assigned next and in the end I need the list to be updated with the results of the workflow. Thanks in advance ;) Your code works, thanks! But I have one problem, I'm trying to access the data inside via XPath-Expressions: XmlNode node = myDoc.Select ...Show All

  • James Emydex how to quote content

    I am new to moss. I encounter a problem: Say i have an Calendar in my site. And I want to quote the Calendar in another page. How to do Any suggestion Are the 2 pages within the same site And when you say "quote", do you mean showing the calendar on a different page (maybe in a different view) hi sondergarrd. How to add one calender to both pages Could you show me the detail thanks It depends. Site collections can be created in two different places: the central administration site a site directory site using the "create site" button If you go to "all site content" and choose "create" and then "site" it creates what we call a "web ...Show All

  • AMEgo Anybody knows MOSS 2007 release date??

    Hi, I have a simple question. Is MOSS 2007 officially released or not Last news I have was about Beta2 and RTM. Cannot find any release document or news about final release. Anybody knows Thanks RTM is release. or are you waiting for the box ...Show All

  • Mortsdeh HelloWorld sample - Different approach

    Hi, The HelloWorld sample which is given by part of CSF 3.0 Dev edition is totally different from how the document explains. In Helloworld Sample, To get response from Session, ISessionManagerAdminResponse has been used. But documentation recommends, derive from CsfService and use SessionActions.SessionActiveNotification and SessionActions.SessionTerminatingNotification. Could you please let me know is there any specific reason to use ISessionManagerAdminResponse and which approach is best one Rgs Vasu Thank you Vikram. I can able to create and terminate session without using ISessionManagerAdminResponse interface. But i could not able to get response from services. Is it possi ...Show All

  • Fei-tian SP Gugu: How to Programmatically change a list item's ContentType by WSS WebService?

    Please, help! I can't find any information on MSDN under WSS3 webservices List.UpdateListItems topics how to  programmatically change a list item ContentTypeId   Calling SharePoint list service like: (adding a list item)   XmlElement elBatch = doc.CreateElement("Batch"); elBatch.SetAttribute("OnError", "Continue"); elBatch.SetAttribute("ListVersion", "2"); XmlElement el1 = doc.CreateElement("Method"); el1.SetAttribute("ID", "1"); el1.SetAttribute("Cmd", "New"); XmlElement field1 = doc.CreateElement("Field"); field1.SetAttribute("Name", "ID"); field1.InnerText = "New"; XmlElement field2 = doc.CreateElement("Field"); field2.SetAttribute("Name", "emp_no"); ...Show All

555657585960616263646566676869707172

©2008 Software Development Network

powered by phorum