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

Software Development Network >> SharePoint Products

SharePoint Products

New Question

can't create workflow - sharepoint designer 2007
Object Modeling
Creating Visio Diagrams in an ASP.Net Web Form Programmatically (C#)
Interface HELP!
Syntax of AvailableWebTemplates
BDC and Table maintenance (editing data)
Importing contacts with Outlook 2007
documents per view
IP Forms only for MOSS 2007?
When BDC Webpart reports error, what log should we look at?

Top Answerers

den2005
Bill F.
berndS
Fergnab
akram badr
sontek
RHolt
R.Tutus
Raptorix
SavasCilve
sitemap
Only Title

Answer Questions

  • Nilesh Ingale Need help -- Issue with email alerts

    I'm a newbie so please forgive me. I am running WSS 3.0. I have setup a workflow to send an email when an "Issue Tracking" issue gets assigned. The person receives the email ok, but, one of the columns I selected to be displayed should be displayed as a link to the Item - but the link does not show. I have displayed the url path for the "current item" and it looks like this "/sites/IntraDev/helpdesk/Lists/Issues 2/22_.000 " -- this url resides on a server called "ns3" -- does the " http://ns3 " get added to the start of the url path for the current item Has anyone else seen this problem Could this be something in the Site Collection configuration There really isn't much ...Show All

  • Eric H. Is Skin managed by wss ?

    Hi, Do you know how I can add a masterpage with Skin I don't understand how you do that. Thanks, Julien I am currently having problems using my customized masterpage with MOSS. You mentioned that MOSS provides this masterpage switcher. Do you mean in masterpage gallery to upload my customzied masterpage then approve it i did this, but except the account of myself, other user can't even see the default.aspx of site after I changed the master page. I did manually updated all pages using sharepoint designer with my own master to make things for me. But it seems it messed up with the masterpage gallery approve workflow I don't know... please help Thanks Masterpages are the skins. You can upload new one ...Show All

  • TheFoZ can't create workflow - sharepoint designer 2007

    I'm testing out WSS3 & sharepoint designer. I want to create some custom workflows, but everytime I try to create on I get an error box "Failed to load the workflow". Any guesses as to what the problem is and how to fix it I'm getting the same error in Sharepoint Designer 2007, failed to load workflow. Anyone have the answer yet Hey, I've been doing caught by this and found a guy who sussed a good bit out here http://blogs.informationhub.com/jnadrowski/archive/2007/01/12/8128.aspx then I found out some more by accident that fixed my particular problem. basically, you get this error if there are any problems with instantiating the activity or ...Show All

  • Jackot Incorporating VS workflow into SharePoint Designer workflow

    Hi there, I'm sure I've read somewhere about being able to produce a workflow component in Visual Studio and then use it within a SharePoint Designer workflow. Problem is I can't find where I read it and since I don't know what it's called I'm having problems Googling it - would someone put me out of my misery and either point me to an article or tell me what it's called Thanks in advance! Ah, brilliant - thank you! In SharePoint Server 2007 SDK check the whitepaper "Importing Custom Actions into SharePoint Designer" ...Show All

  • Joseph Belt SOA and Banks

    Dear All. What do you think How much SOA is suitable Banking Application Is there any sample or presetation about it In real word, which bank has applied SOA in productiivity How much is extendable SOA Application in a Bank I mean if ISV sold his Bank Application based on SOA, and later Bank's developer may add new Service wtihout ISV's interaction. Thanks in advance. Teymur Hope you find helpful guidance at the MSDN Architecture Site for Financial Industry: http://msdn.microsoft.com/architecture/industry/finservs/default.aspx Slow links will not work well if you want to call a large number of services remotely. The solution to minimize communications is to cache frequently used data at each branc ...Show All

  • Suman Ghosh SPQuery returning error "One or more field types are not installed properly. Go to the list settings page to delete these field"

    Hi SPQuery is not working properly, its throwing following exception. "One or more field types are not installed properly. Go to the list settings page to delete these fields." Please check the code snippet below: SPSite spsite = new SPSite ( "siteurl" ); SPWeb site = spsite.OpenWeb(); SPList list = site.Lists[ "listname" ]; SPQuery query = new SPQuery (); query.Query = "<Where><Eq><FieldRef Name='ServiceLevel'/><Value Type='String'>345</Value></Eq></Where>" ; SPListItemCollection items = list.GetItems(query); foreach ( SPListItem item in items ) //here its throwing exception. { Console .WriteLine( S ...Show All

  • Brian Kramer CMS Assessment Tool Crashes

    I am trying to run the CMS assessment tool against a large MCMS site that is going to be migrated to MOSS 2007. The tool just won't analyse the code, it crashes with a "Stack Empty" error. This is the error from the CmsAssessmentTool.log file: While calculating results: System.InvalidOperationException: Stack empty. at System.Collections.Stack.Peek() at Microsoft.ContentManagement.AssessmentTool.ILParser.ParsingClasses.CollectingParser.OnEnterMethod(String name, String[] attributes, TypeReference returnType, TypeReference ownerMethod, ArgData[] parameters) at Microsoft.ContentManagement.AssessmentTool.ILParser.ParsingClasses.Parser.ParseMethodDecl() at Microsoft.ContentManagement.AssessmentTool.ILParser.ParsingClasses.Par ...Show All

  • deKay What is the scope of static webservice object

    I have a console application which calls a webservice.In webservice we create a static object of it. Then we call two webmethods of it and the value retrieved in the following two Console statements are 1 and 2. I need to know where(Are they stored in code segment oe data segment) and how static variables are stored across various stateless webservice calls and why we got values as 1 and 2 and not 1 and 1.   ConsoleApplication Code----- localhost.Service service = new localhost.Service(); Console.WriteLine("DoSomethingWithStatic() returns: {0}", service.DoSomethingWithStatic()); Console.WriteLine("DoSomethingElseWithStatic() returns: {0}", service.DoSomethingElseWithStatic()); WebService Code------ public class WebServ ...Show All

  • QuantumMischief Sharepoint Services 3.0 and AD Security Groups?

    I am running Sharepoint Services 3.0 on a Windows 2003 R2 Server. Everything setup without issue and works without issue. I can add AD security groups to Sharepoint groups and the users get access. However the only security groups that actually grant access are the groups that were there prior to the Sharepoint install. Any groups that were created after the install or changes to those groups are not granted access in Sharepoint. Basically I add a presharepoint ad security group to a sharepoint group for access and it works beautifully. I create a new group, add a user to it, and add it to the sharepoint group - it adds without issue but does not grant access to the site. I even tried creating the group, adding it to the site and lettin ...Show All

  • Marek Istvanek Stored procedure vs standard query

    hi, I am in process of evaluating that for simple CRUD operations(select,update,delete,insert), should we use stored procedures or should we fire queries directly from DAL for performance enhancement leaving aside the fact the stored procedure pproach will mix the data access and business logic . If somebody could provide any microsoft URL link giving clearcut recommendation on the same,it would be of great help to me. Regards Hi, Not sure if we do have any MS URL which can state this fact out of the box, but surely you can find performance tips on MSDN which will surely help you in this decision. But I will take this opportunity to state my views here: Regarding Mixing of Layer: S ...Show All

  • soanfu Queries on SPS 2003

    Hi guys, I need some clarifications on SPS 2003. 1) In share point portal how to display the no. of logged in users. And also how many people visited during jan 1st to jan 31st 2007. 2) How to remove the items from the navigation i.e., i want to hide ( Home     Documents and Lists     Create     Site Settings     Help ) from the menu for only Readers and for Admins this links should be available. 3) After creating the new site its requires to add the users manually. How to overcome this problem....we've multiple sites and each site i want the common users and i dont want to add all the users manually on each and every site...and also whenever i delete an ...Show All

  • enric vives Licensing for 3 tier design

    I know I need to ask my licensing rep, but I was hoping someone knows the answer to this real quick from experience. Do I have to buy a MOSS 2007 server license for both a WFE and an application server role I assume yes at almost $4,000 a pop but I'm hoping I'm wrong...... As you know ony your licensing rep can give you a definite answer but I tend to agree with you that you would need separate licenses for the FE and App server since they are separate boxes. ...Show All

  • Susan S stsadm.exe SecurityException

    Hi, I've unistall and install stsv2.exe again. Then find problem when installing stsv2.exe. I found that the problem is caused by stsadm.exe I've tried to run stsadm.exe, but have following exceptions: C:\Program Files\Common Files\Microsoft Shared\web server extensions\60\BIN>stsadm -o upgrade -forceupgrade Unhandled Exception: System.Security.SecurityException: Failure decoding embedded permission set object. at Microsoft.SharePoint.Administration.SPGlobalAdmin.get_ServerCulture() at Microsoft.SharePoint.StsAdmin.SPStsAdmin.Main(String[] args) Kindly please help, I can't find any real solutions... Many thanks. Kind Regards, zoe Hi all, I found a solution, it works. Go to C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 a ...Show All

  • Mark Goldstein Recurring Sharepoint 2007 Errors.

    hey guys, i have a schema of MOSS 2007, Project server 2007 running on Windows server 2003 and sql server 2005, i am getting these three errors in my log each minute !!! Event Type: Error Event Source: Windows SharePoint Services 3 Event Category: Timer Event ID: 6398 Date: 02/20/07 Time: 11:01:41 PM User: N/A Computer: SOURCESAFE Description: The Execute method of job definition Microsoft.Office.Server.Administration.ApplicationServerAdministrationServiceJob (ID de82c7d5-76d8-4c54-81bc-2dd35824b0b8) threw an exception. More information is included below. The path specified cannot be used at this time. (Exception from HRESULT: 0x80070094) For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.a ...Show All

  • PolkaDance 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, I dont think 'username' is a valid user account on your system. You need to specify a valid user account and password. Thanks, Ashish Malhotra Hi, Thanks for all your previous replies. As mentioned in your earlier post, we added the following elements in Session.config. <SessionManagerAdminRoleName>MyDomain\Requestors@MyDomain_SessionManagerAdmin</SessionManagerAdminRoleName> <S ...Show All

596061626364656667686970717273747576

©2008 Software Development Network

powered by phorum