Answer Questions
crowsfoot Architectural Considerations for Auditing
We are building an application which connects to two kinds of database viz. one is a local database store and other is located at a central server. Now to perform auditing for every transaction I am of the opinion to do auditing at the database level. Implement it as part of trigger insertion into an audit table. Reason being its simple to implement and maintain. My Database Architect is against the idea and wants me to handle auditing at the application level. Would appreciate your viewpoints and guidance on this. Thanks Sai Hi, Basically if you see the issue from a database architects perspective , he might be correct when he does not want to use triggers for auditing. Execution of triggers ...Show All
wms103006 How to create a sign up page on wss 3 ?
Hi, I would like to let the possiblitie for people to acces to my site. By first creating an account via a sign up page and then the user have to sign in to finally access to the sharepoint website. But I have no idea about how to do such thing (what tool i need , infopath, visual studio ... ). I dont know as well how this system can interact with active directory. Thanks for your help Hi Nick, I tried your webpart to add user. I managed to import that without problem. But I have a problem whenever i want to use it, I created with asp net website administration tool a new role called "registeredUser" then i went to sharepoint site and create a new group called the same &qu ...Show All
happycamper1234 Can not creat Site collection in wss 3 release version
hi all... My installation of WSS 3 was successful.. My config Windows 2003 SP1 (Part of Domain "testwss") Framework 3 (Release) Wss 3.0 (Release) Sql 2005 ( On other machine which is part of Domain "testwss") IIS 6.0 office 2003 pro after creating application successful i am not able to create site collection i get the following page. The Windows SharePoint Services Web application has been created. If this is the first time that you have used this application pool with a SharePoint Web application, you must wait until the Internet Information Services (IIS) Web site has been created on all servers. By default, no new SharePoint site collections are created with the Web application. To create a new sit ...Show All
Darkside 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 to everyone for all quick and helpful replies. We are finally able to create session successfully. Thanks, Anita. Hi, I think you should roll back the changes. The problem here is not with Hello World service. The problem lies with the client application through which you are trying to send CreateSession request to Session. When sending CreateSession request you also need ensure that your ...Show All
Christie Myburgh When should I create another instance?
If I have a loop and I have to use another object each time I iterate. Should I instantiate this object for each step, or should I instantiate it outside the loop By doing it outside the loop I might have some problems concerning getting "ghost" information from the previous iteration. But, by doing it inside the loop (for each step) I would slow down the whole algorithm, besides consuming more memory... Any opinion on this CanUHelpMe wrote: Hi, I didn't got the answer yet. if i am using c# 2.0, should we instantiate the variable inside or outside the loop. my major concerns are performance(highest priority) and less memory usage(middle priority) regards' Without the knowledge of what th ...Show All
waynes-world Architecture question
I have a mobile field service app written to run on WM5 CF2 and would like some advice on architecture. For this type of app, the runtime performance is crucial in relation to startup time. I have a Data Access Layer (DAL) with various classes that provide the abstraction between business objects and the persistence layer e.g. SqlCe. One class per business object. On top of that is the Business Logic Layer (BLL) that uses the DAL layer. This is impemented by normal classes. And on top of that the Presentation layer implemented as a number of Forms that use the BLL layer methods only. I have also created a 'MyApplication' class with the singleton pattern. When the class instantiates, it creates all the BLL classes, the database c ...Show All
Frank Miller Digital signatures on task forms
Is it possible to have users digitally sign a task form I need to be able to have them sign the form and be able to check that signature on the server in the workflow. So far, I have been unable to find a way to do this. The taskproperties object does not contain the raw infopath data, so it's not possible to validate. This seems like pretty simple functionality to be missing. any help I have the same problem ...Show All
Peoplestick 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
Misiacik7 Loading from Project Server
Hi Is it possible to load data from Project Server or Portfolio Server using the BDC Thanks, Mystique Yes, it's quite simple. You can access the SQL database of the project server and fetch a list of projects. Because ProjectServer use GUIDs as ID I had to transform the IDs in System.String (and not System.Guid). bye, David ...Show All
Tryst Cannot connect connectable web parts
On our custom SharePoint 2007 site I can't link our RSSViewer web part (RSSAggregatorWebPart) to a filter. When I do I get the following error: Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION)) This issue was traced to a web part of ours - the code is posted below. As documented here http://msdn2.microsoft.com/en-us/library/aa973248.aspx (in a teeny-tiny section way at the bottom - after hundreds of lines saying to "Use Dispose, use Dispose, use Dispose!") I should not have called Dispose() cause of the SPContext.Current.Site call . Com menting out the call to Dispose in the code below fixes the problem. SPSite site = null ; try { ...Show All
DevilDog74 Sharepoint authentication problem
Can anyone help I have a very small network (3 clients) and I am running Sharepoint services on Win2K3 in a server, and SQL Server 2005 in another one. I now can't access the Default Web Site in Sharepoint. Requests from Clients are being rejected with 401 errors. The Client requests for pages are met with the following "HTTP Error 401.1 - Unauthorized: Access is denied due to invalid credentials. Internet Information Services (IIS)". All accounts are properly configured Domain accounts, and have already been added as users in Sharepoint Administration, and are also part of Active Directory. An interesting observation is that if I prefic the Account name with the name of the Host, e.g. LAPTOP\AccountName, I get access ...Show All
dotBomb Launch Custom Application from SharePoint
All users of our SharePoint Portal have the same custom application installed on their local machine. How can I add a link in SharePoint to allow users launch the Application I assume this is an application that is executable on the local machine This is complex due to the fact that the location of the exe would have to be int he same location on every machine, etc... creating a link to the local path of the executable should work to launch the app. If this is an app you developed, Have you looked at Click Once Deployment You can place a link with an http address that will install the application if they have not already installed it and would run the application if they have. If this is a custom application, I would use ...Show All
#pragma Custom Site column Column using Feature in MOSS
if any one know how to create custom column using "Feature" feature of MOSS for the "Image" type the following is the code for creating custom site column for "Choice" Type column Feature.xml: < xml version="1.0" encoding="utf-8" > <Feature Id="CA7BD552-10B1-4563-85B9-5ED1D39C073B" Title="myField" Description="asdf" Version="2.0.0.0" Scope="Site" xmlns="http://schemas.microsoft.com/sharepoint/"> <ElementManifests> <ElementManifest Location="testing.xml"/> </ElementManifests> </Feature> and following is testing.xml < xml version="1.0" encoding="utf-8" & ...Show All
Przemek G. Sql table design for unknown drilldown depth
I have a basic question about how to design tables where you don't know how many layers deep you need to drill down, or if children records can have 0 or more children. It would look something like this.... 1 1.1 1.2 2 2.1 2.2.1 2.3.1 2.4.1.1 Or if it was a cms for a news site, you could have: News - local - national Classifieds - Cars -- For Sale --- By owner --- By dealer -- For Lease In this news site case it's not as simple as having 2 tables - Category & Subcategory because "News" has 1 layer deep of children, but Classifieds children can have children under that. Anybody have a good tutorial link or explanation Thanks guys. Very helpful. I found a fringe benefit of structuring with th ...Show All
Vijay R MSMQ: Can MSMQ resolve .\ private paths to IP instead of WINs name?
Hi! I am inquiring regarding an issue we are facing to integrate a TCP load balancer into our MSMQ farm. I would like to know if MSMQ can default to resolving .\ private paths to IP instead of WINs name. If anyone can offer insight to this specific issue or overall load balancing MSMQ would be highly appreciated. Thanks in advance Cam Cam, MSMQ doesn't really support load balancing very well. There was a previous thread on the topic around here which you might want to check out. ...Show All
