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

Software Development Network >> SharePoint Products

SharePoint Products

New Question

Apprval workflow...
sate machine workflows in share point site
Forms based authentication & MySite
Message visualizer
MOSS 2007 RSS Viewer's XSL Link not working
Where can I download the wss12.xsd file?
VSeWSS Debugging has just stopped working????
Unable to retrieve external data
Importing contacts with Outlook 2007
WSS 3.0 - Reporting Services Document Map High CPU Usage

Top Answerers

Delphieur
m_shane_tx
Bharat Gadhia
scenedamaged
J. Ho
Sputnik_Johan
Cyberjunkie
Cyberjunkie
gon_no1
PareshGheewala
sitemap
Only Title

Answer Questions

  • R1ZWAN OOP Design Question - Need an opinion...

    I know there is no "100% correct" way to design the following but any suggestions or shared opinions would be appreciated: I want to create a Customer business entity. Should this Customer class only contain properties and simple validation or should it also contain all the business logic and CRUD functions Should I create a separate class called CustomerService that handles logic by passing around and working with the Customer entity Example: How to add a new Customer 1) All domain logic in one Customer object . Customer.Name = "Bla" Customer.Save OR 2) Customer object to hold properties and Service object to perform business logic. Customer.Name = "Bla" CustomerFactory.AddCu ...Show All

  • helen369331 Is there some particular if I set IsVolatile to ture Value?

    I don't know the different... [UdfMethod(IsVolatile = true)] public double MyDouble(double d) { return d * 9; } [UdfMethod] public double MyDouble(double d) { return d * 9; } any suggestion IsVolatile=true tells Excel Services that calling the method with the same parameters may yield different results. This in turn makes it possible for you to have methods that (usually) rely on external events or information and have Excel recalculate them. I will give you an example. Say you have a method that does currency conversions. It returns how many Israeli Shequels a Dollar is worth. Now, if the method was not marked as volatile, Excel Services would never bother to recalc ...Show All

  • Diegota what's the best way to capture relating one table to many other tables

    Say I have four tables: 1. people 2. products 3. images each of which can be joined in a 1 to many relationship with a fourth table 4. notes I can add n notes to each row in any of the above tables. The options of which I am aware: a) have a separate notes table for each of the 3 tables (peoplenotes, productsnotes... etc.). b) create a join table for each relationship: peopletonotes (with a compound key of peopleid and noteid), etc. c) in the notes table create a generic foreignkey which along with a tabletype can tell you which is the right parent table notes table has: noteid, foreignkeyid, tabletype (which can be either: 'people', 'products' or 'images'), so you might have two rows in notes: noteid ...Show All

  • dabd Programmatically Start Workflow built using SharePoint Designer

    Hi, I have a very interesting problem. I have created a workflow using Sharepoint designer against a List on my Sharepoint site. (With Workflow start options as Start Manually and Start on item Change) I have installed this workflow on this list. I need to kick start the this Workflow everyday against each and every item in the list. So I programmatically change a field's value for every item in the list. But this doesn't Trigger the workflow. Also tried to start the Workflow using SPList.WorkflowManager.StartWorkflow(SPItem item, SPWorkflowAssociation association, string initiationData, Bool autostart) Since there is no Initiation Data I passed a blank string. This triggers but the workflow always encounters a error ...Show All

  • Arslan.Ahmed Creating Multilingual Site in Windows Share Point Services 3.0

    Hi , I am new to Sharepoint Services (WSS 3.0) . My requirenent is that i have to create multiple websites in different languages using WSS 3.0 .A user can view his content in any language. I have few queries here : 1. If i am creating a site in English using a saved template and i want to create another site in German using the same template then how to convert all the text written in English to German as the template was created from an English site Ex: Lists, Libraries and other items column names and other metadata information. 2. In the same above way. After running several sites in different languages using a specific template. Now we want to add a new List/Library/WebPart etc to them, do we need to ...Show All

  • Tonton888 WebDav access to Doc Library

    Don't know if this is the best place to post this or not, but I have a question about what happens when the WebClient service is restarted on my Windows Server 2003 SP1 machine. I'm using the Windows 2003 SP1 server as a client, and am trying to copy files from the file system into a document library on SPS 2003 (hosted on another machine). I've noticed this odd behavior... The WebClient service's startup type was set to Manual after I finished installing windows. If I start the service and try to access the document library via webdav (Start - Run \\servername\path\path\libName , or via code like below) everything works fine. If I restart the WebClient service I can no longer access any webdav resources (even though the service star ...Show All

  • Andrew Lytchev Data Exchange

    We need to exchange our customer data with an external partner on a daily basis. This data is highly confidential. This size of the data will be around 1GB. The data format is unicode. What will be the best way to exchange the information 1 GB a day Are you sure you need that much data Is some of it redundant Trimming down the amount might open up some other possibilities. My initial thought would be a program, probably a Windows Service working off a schedule, that would extract the data from SQL Server into an XML file into a very limited access folder, encrypt it, and then call a web service on the other end to upload it. Then, on the receiving end, have a Windows Service applicatio ...Show All

  • jutsi Can you use Active Directory Manager data in workflow?

    I can’t seem to find a way to automatically rout a workflow task to a user’s manager using the person’s "manager" value from Active Directory. This seems like such a basic task, but I don’t see any option for it in the workflow roles available in SharePoint or SharePoint Designer. Has anyone had luck with this Hi All, I'm very interested in knowing how to get the Manager from Profiles as well. It's a fundamental request from lot of customers who want to create workflows using SPD. Hope anybody knows the way. Maybe rolling up data But how to do in SPD Jens Well, Let's figure it out together then :-) I am thinking that we will need to cre ...Show All

  • drewex MVC when to use,MVC framework

    Hi, I need to know about MVC pattern.Is it the same what vs.net generates by default whenever we create a asp.net web application(generates a . aspx page and an . aspx.cs thus seperating model and view). If it is different , can somebody please let me know what exatly should be where.i read many article on MVC but didn't got any working sample to understand. Also need to know in what cases whould we use MVC pattern, as these days everbody talkes about that his application is based on MVC. Java has many MVC framewokrs.Do .net also have any such regards Hi, I am afraid, i dont know the name of a pattern for code behind. It is definitely not MVC though. It lets you handle events and pas ...Show All

  • Marshes SSO in CSF

    hi, Is SSO using the identity manager limited to only usernametoken/kerberos or CA cert can be used too The topic "Using secondary credentials" appears to indicate only the above two options thanks Use of Certificates in SSO is not supported. Thanks. I suspected this. ...Show All

  • stang4lyfe Document Library Web Part -> link to DispForm.aspx

    Hi there. I'm trying to solve a problem that appeared when I tried to create a simple page with the list of documents from my document library. I need Title field displayed as a hyperlink to DispForm.aspx, not to Document itself, and not to a dropdown menu with Edit option. The reason of this requirement is that we don't like to allow users to download document w/o reading metadata assosiated with it. On the other hand, ordinary user must not see Edit links in menu, because we don't want to tempt them to try edit document at all. Of course, I can customize the data view in Sharepoint Designer - go to Code View and manually change <xsl:value-of select="@FileRef "/> to something like ..../dispform.aspx ID=<xsl:value ...Show All

  • frieste HelloWorld Sample-CreateSession times out

    hi, Can somebody tell, why should the CreateSession time-out . After clicking CreateSession button, the status continues to show "create session in progress", and after some time, it times out. Links are all proper. thanks,. anita Hi, Thanks for your reply. As stated, we have given the userNameToken in the header as: message.Header.Security.Add(new UsernameToken("username", "password", PasswordOption.SendPlainText)); But any idea on how to make it a member of CSF_Requestors group Thanks, Anita Hi, It might be happening that session got created but the CreateSessionResponse did not reach back the client application. You ...Show All

  • Michael Herman - Parallelspace Unable to change Breadcrumb Separator

    Hi, I'm unable to change the breadcrumb separator for my site. I'm using SharePoint Designer (SPD) modify my team site's master page. I'll change the SiteMapPath control to the following and save the master page: <asp:SiteMapPath SiteMapProvider="SPContentMapProvider" id="ContentMap" SkipLinkText="" NodeStyle-CssClass="ms-sitemapdirectional" PathSeparator=" / " runat="server"> In SPD Design view, the breadcrumb separator is rendered with " / " but when I view it in my browser it renders it with the default ">" Has anyone else come across this problem Best Regards, Rickard Lofberg Hi, Yes. I ...Show All

  • Mystery Apprval workflow...

    Hi All, I have created a approval workflow and i have added approvers name as administrator,spuser1 and i have assighned the work flow to the test document.after that i have loged in to the sharepoint server as another user.when i want to open the test document without approving the document logedin user able to open and edit the document but it should display some type of message like "it is not yet approved by the administrator workflow is in process". is there any locking is available for the document when workflow is processing. please anybody can give the flow of the work flow and approval steps and workflow conifiguration. regards, Amar... Moving thread to SharePoint ...Show All

  • gfmajchrzak Integrated Windows Active directory authentication

    Hi Ours is a distributed client server application(WinForms). We are evaluation two authentication models, one using Active Directory windows authentication and other is custom SQL server based authentication. If the workstations are not connected to the domain controller and the user was authenticated(during logon to the workstation) using workstation cached credentials, will the integrated windows authentication work in such cases Is is secure to rely on cached credentials Will windows use the cached credentials to authenticate the user even if the workstation is connected to the domain controller Thanks, Dharan Hi Dharan, I'm not an Identity expert but I knew about an article which ex ...Show All

98990123456789101112131415

©2008 Software Development Network

powered by phorum