Answer Questions
darrell0101 Single location to view All documents in different document libraries
Hi, We have the following requirement: MOSS users want to have one place (it could be Links list or document library or a custom web part) where they can see all new content published to some specific document libraries. These document libraries could be in a single site or across multiple sites. Q. Is there any out-of-the-box feature available that I can use to achieve the above At present, I'm thinking of the following two solutions .. don't know how much they are feasible, so looking for your opinions 1. Is it possible to have some custom search property for document library. I can save a search (in my links) where document library custom property is one of the required doc libraries. This would at least show all the d ...Show All
jackline 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
JohDas 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 Could you instead take what is needed within the loop and expose that as a static method on the other object That way it is stateless by design and the creation of an object is not required. Hi, I didn't got the answer yet. if i am using c# 2.0, should we instantiate the variable inside ...Show All
dave2000 Migration to server farm and upgrade to V3 failing prescan
I'm moving our SharePoint services sites from a MSDE single server solution to a server farm. We want to have the ability to search and the new features available in V3. The migration has worked so far. Config and content databases were attached to a SQL2005 server. SharePoint front end installed on a new server. Everything came up ok. Still no search though. All the sites are working properly! I'm trying to decide to fix search first then upgrade, or upgrade and hope search is enabled. Prescan failed on the existing single server setup and when doing a prescan on the newly setup V2 sites, I get the following error: Z:\>prescan /all System.Security.SecurityException: Request for the permission of type System.Security.Perm ...Show All
jeje1g Welcome!
Welcome to this new forum, which is part of the SharePoint forums group that contains a comprehensive set of forums designed to cover all aspects of SharePoint Products and Technologies. I’ve held off on having these forums created for over a year because we already had a handful of newsgroups in place, but the benefits (search, moderation, filtering, stats, flexibility, planned enhancements, etc.) and the recent surge in usage have convinced me that it’s finally the right time to embrace forums as the de facto channel for community Q&A and discussion . This particular forum is for topics about the Business Data Catalog (BDC) capabilities in Office SharePoint Server. Before posting a ques ...Show All
SisMng Getting back the quick launch bar
Due to requirements outside of my control the quick luanch bar was removed via the use of FrontPage 2003. Is there a quick way to get it back Thank you ...Show All
Ratheesh*MCP* Mobile Form view new button
When viewing the InfoPath document library on a mobile device, there is no button to add a new form even though the form is mobile enabled. If I copy the URL used by the browser to add a new form and change the aspx page to mobileformsserver.aspx instead then I can open and add a new form so everything works apart from a New button. I would like to create a libraries for mobile users to submit new forms that then follow and internal workflow process. Have I missed a setting somewhere or have I got to build a new mobile document library view. Perhaps the permission of the mobile device is only to view the library. Try to verify which user creditials are being used and then look at the library permissions. ...Show All
John Woodiwiss How can client connect to webservice that uses integrated windows authentication security through CSF?
I'm very new to CSF, and try to develop solution as below: 1. We have existing Web Service that use just only Windown Integrated Security 2. We want to use CSF as to connect to the existing Web Service 3. The client talks to CSF using WSE3.0 4. If client connects to web service directly, I just write "proxy.Credentials=....." The question is... how can I pass client credential to the existing web service Is there any example Thanks. Regards, Chank. Hi Chank, You can refer to the sample called syncsession and StockQuoteSamples.It will give you an idea how it happens. Custompolicy mapping file will be where you can have a look how policies are set. You can download sa ...Show All
ahmedilyas Polymorphism and API design
I want to build an event logging class that allows a client to log messages. Windows Event Log and Xml files are the initial storage types I'd like to provide first, adding Database storage later. My question is regarding building an installer class that would prepare the chosen log type. Ideally I would like the developer using the API to be able to do this: LogInstaller objLogInst = new LogInstaller( LogType.Xml | LogType.EventLog /*[Flags]enum ... */ ); objLogInst.Install(); The missing piece here is, of course, the parameters needed for each type of install (e.g. FilePath, AppName, etc...). I know I'll need an installation class for each type of logging the client will want to install (e.g. Xml, EventLog, etc...). I'll also need ...Show All
uzs1 EventHandler error
I have a problem with my EventHandler. The Object reference not set to an instance of an object message is in Event List when my EventHandler activated. This is a block of code that cause this error: string test foreach (SPListItem Item in List.Items) { test = Item["FieldName"].ToString(); ... } What's wrong in this block You will get that error when: there is no field "FieldName" in the list OR one or more items in the list dont have any value for the field "FieldName" (value is null) how about: if(Item["FieldName"]!=null) { test = Item["FieldName"].ToString(); } ...Show All
therabidwombat Persistent Sharepoint Server Error Events
Hi - I'm running Sharepoint Services 3.0 and am seeing 3 different errors logged every single minute - IDs 6398, 7076, and 6482. Searches on these IDs have shown that other users are seeing them for different reasons. They all have to do with a "lack of storage" somewhere. Below are the pasted contents of 1 of each of these errors: Event Type: Error Event Source: Windows SharePoint Services 3 Event Category: Timer Event ID: 6398 Date: 1/22/2007 Time: 3:41:17 PM User: N/A Computer: SPNACDEV06 Description: The Execute method of job definition Microsoft.Office.Server.Administration.ApplicationServerAdministrationServiceJob (ID 929b1b3b-ef23-4379-915f-33e61709a2d3) threw an exception. More information is included below. Not ...Show All
a_takavci show a progress bar while web part is loading..
Hi, How do I display a 'progress bar' while a web part is loading in WSS v3 Something similar to loading the following page - http://sharepoint.microsoft.com/sharepoint/forums/default.aspx Secondly, does the web part loading process happen asynchronously (without impacting the rendering of rest of the page/other web parts ). If not, how to make it asyncronous Thanks thanks for your answer. i got the same problem. could you post an example please I wanted to know if there is any out of box functionality. That helped, though.. I was leaning towards asynch stuff... Thanks! Web Part Samples (see Asynchronous Web Part Sample) http://www.sharepointcustomization.com/resources/w ...Show All
Nev.Jension sometimes i can break through code in vs2005 to debug a site
I build my debug version, install it in GAC, then I reset iisreset .When i place a breakpoint I get the message: breakpoint will not currently be hit. no symbols have been loaded for this document Have u had this before. Hi Ishai, I use your tool, it s good, helping me a lot. One little thong though, I have this problem that I posted but no body could come up with an answer yet (in other forums) sometimes i debug my project. actually i made a post build event to deploy the built dll in te GAC automatically. (using your tool) sometimes, after i build the dll, my browser displays nothing and the gac is empty. I wait few seconds or even few minutes before i can view the GAC contents again. have u had this b4 T ...Show All
Amir_S Restoring Share Point DB with a different Name
Hi, I am trying to restore a Sharepoint DB with a different name. The MDF and LDF files are located in D:\SQL. In the restore opitons, I change the name of the MDF and LDF files and try to restore the DB with a different name. The restore fails saying.... The file 'D:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\FTData\ix_Sharepoi1_SITE' cannot be overwritten. It is being used by database 'Sharepoi1_SITE'. I am not sure what this "ix_Sharepoi1_SITE' is and why we get this error. Can someone help. Thanks Santhosh This database is existing in my environment. The current name is " Sharepoi1_SITE". I had taken a backup of " Sharepoi1_SITE" database. Now, I am trying to ...Show All
BrentHecht Problems with Office SharePoint Server Search, SharePoint Services Search and SharePoint Services Application services starting
Hello! :-) Recently, i've encounered a problem concerning farm server deployment. Here is the information. 1 server. MOSS 2007 x86 OS - Windows 2003 Server Enterprise SP1 Role - ordinary file server. Type of installation - Complete. After installing i've configured this server successfully, entered Administration Web Site, created Shared Services, provisioned Project Web Access...so everything is fine and seems ok... The next step was to add auxiliary server to farm. So i did this : 2 server MOSS 2007 x64 OS - Windows 2003 Server Enterprise SP1 x64 Role - DOMAIN CONTROLLER Type of installation - Complete. At this point, after adding this server to the farm and configuring both servers with SharePoint Products and Te ...Show All
