Answer Questions
orlop User control in MOSS 2007
Hi all Can anyone give me the full step by step procedure to use a ASP.net user Control (.ASCX) file in MOSS 2007 Site, how to use the User Control in sharepoint Portal site. thnaks in advaance... You need a webpart which renders the usercontrol. If you know how to develop webparts you can easily create your own, or you could try out SmartPart. ( http://www.smartpart.info ) ...Show All
CathyUnique Displaying InfoPath browser form within master page content
Is it possible to modify the FormServer.aspx page or create a new page based on the default master page to display a form generated from InfoPath Forms Server I would like to have a consistent look-and-feel throughout the site, including when users fill out information on a form. Right now, the form open up full-screen with no other content other than the form itself. I would like the menu bars and navigation present on the screen to keep the user aware of where he/she is in the site. I'm aware that problems may arise should the user decide to click on one of these links outside of the form; I imagine it would be the same just as if the user navigated to a new URL - the form just wouldn't save. Anyone have any insight into this ...Show All
Latso SPItemEventReceiver do not work properly when i use the wss object model API.
Hi everyone. I got a problem unsolved almost 2 weeks. Please somebody tell me a clue. I customized the SPItemEventReceiver and associated the customized SPItemEventReceiver with a content type was inherited from the Document Library content type and deployed this content type to a server as a Feature. When I uploaded a file from Word 2007, Events associated with the ListItem fired. but on uploading using the Wss Object model , events did not fire at all. I have a same experience when I using not only a document library type and SPFileCollection.Add method but also a list type and SPListItemCollection.Add method. I have found the following from the WSS3.0 sdk document. SP ...Show All
jkgarner don to not use "Inheritance"
Have anyone try to design with no Inheritance at all I think *Inheritance* is not good as we think. It's force us to somthing we don't need, It's ok in some cases that better to be solved with no need to it. what do you think regards, dotHuman. pyeung wrote: Inheritance does have its place in OOP. When an class is "a-type-of" another class, it is easier to use inheritance. Example is as follows: You have an application for a Club House. The club has Gold, Silver, Ordinary and Child members. It is better to create a Member Class (usually an abstract class) and to inherit Gold, Silver, Ordinary and Child members from Member Class. Some people may argue that interfac ...Show All
Tom Frey User Aware Service
I have an SDP Platform setup which has some services available. I am creating a new service (Service1) which has to maintain its own set of users and has a custom Token Manager which validates the request with this user set. The users can be mapped easily from the platform with the Identity manager. Now Service1 has some methods which extract information for a particular user using the userId present in Service1. There are two ways of getting the userId from the SDP Platform 1. In my service method I extract the information from the SOAP header (WS: Security) and use it. 2. Instead of having the service to extract info header, I introduce an interceptor for the service which can extract information from header and provide it as a ...Show All
Zeeina 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 OmegaMan wrote: 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) ...Show All
David Smit i cannot copy..
i can't find any other related topics so i put it here. i donwloaded some file form internet which is like 5 GB/ and, to be able to use it on other pc's , i copied that files to my mobile hard disk which has at least 20 Gb free space. but , pc keep on saying that there is not enough free space and that i couldn't copy. i tried Ctrl+C , Ctrl+V and copy from side bar as well as right click>send to ...(G:/) too. but nothing work, i got same messge any answers n helps plz. thankin in anticipation You may see "There is not enough space on the disk" error message in log file. Usually that means exactly what it says -- you don't have enough free space on destination to copy the file. H ...Show All
TheQuietShadow where can I find an example of requirement document for some small project example
And also, if there is any place with examples of software documents for all developement phases (use case example, class diagram, sequence diagram example, requirement document example) just to understand how we use that in real business. I would appreciate. Thank you I use the MoSCoW principle for requirements. It's short for Must have, Should have, Could have and Won't have. Then I just state in short but clear descriptions the requirements for each of these categories. After that I tend to have chapters dealing with more detailed descriptions (and schematics were usefull). As for the other documentation, I don't use use cases (don't find them very usefull), my class diagrams are classified, I don't use sequence diagrams ...Show All
EWGoforth How can you model this without a circular reference?
This might be in the wrong forum; sorry. I have a really tough data modeling problem, and I'm dumbfounded. I hope there's somebody with an idea. The problem really deals with aquatic habitat and vegetation, but I'll frame it in a more familiar context. It's a very common scenario. An employee works for a company. The employee is assigned to a project. --------- --------- -------- Company --> Project --> Client --------- --------- -------- | | | | ---------- ------------ Employee --> Consultant ---------- ------------ If you add this "consultant" relation between employee and project, isn't that a circular reference Doesn't that violate like 4th normal form or something Is ther ...Show All
Burrough WSS3 Search Engine not working
When i try to search with Sharepoint Version3, I get the following error. The site http://ynd01-svr-015/documentation/ could not be found in the Web application SPWebApplication Name=SharePoint Parent=SPWebService Is this a common problem whould love to have the step by step to tell me how to fix this. Can anyone help me my boss is asking for this. Thanks a lot I believe a colleague of mine Kurt might be able to provide the answers you're looking for, check out his two blog postings about SharePoint search errors: http://home.infusionblogs.com/kguenther/Lists/Posts/Post.aspx ID=35 http://home.infusionblogs.com/kguenther/Lists/Posts/Post.aspx ID=321 I've got the ...Show All
alwayssmiling Debugging managed UDF running under Sharepoint Excel services
I am trying to debug a UDF running under sharepoint. I have attached to the right w3wp process under which the shared services is running. When I attach to the process, it doesnt load the symbols for my UDF assembly. I have my PDB's in the same location as the UDF. 'w3wp.exe' (Managed): Loaded 'C:\Sharepoint UDF\ExcelSampleUDF.dll', No symbols loaded. Why are not the symbols loaded You can mark your UDF as volatile, so that it will be called each time you explicitly calculate the workbook. http://blogs.msdn.com/cumgranosalis/archive/2006/09/12/VolatileUdfs.aspx I actually followed that already.. attaching to the correct w3wp process. the problem seems to be that ...Show All
dzimmy Data Transfer Objects and Lazy Load
The intent of Data Transfer Object is to get all the data in one call instead of making several separate calls.This is especially true when working with remote interfaces. Then there is lazy load which talks about selective loading of objects as and when it is required. Now when I am applying both these concepts in my smart client application they contradict each other. I am trying to find a balance as to what would be considered a good candidate for lazy load. Since I have an entity which has reference to several other entities. I know that when i am getting data for a particular page I would not require all that is required for the entity and related entities, but would need to only on certain conditions or user clicks or tabs. So if i ...Show All
Chinwa KneeHo Sharepoint Services 3 - Document Page Not Showing
I've been having something strange happening that I can't figure out. I have been adding a web part page to a document list, I've added about 30 so far. For some reason though, when i log in as another user that has full admin access (eaxct same permissions as myself), the files do not show up. About 10 of them show up and the rest can't be found. If i log back in as myself then I can see them again. My first thought was maybe i accidentally added them to a personalised view, but when i go into Web Part Page Maintenance it says that it is not a personalised view, and either way I am sure that i never did that. Now whenever i add some new pages they are not showing up under anyone elses login, just mine. I must be doing something stu ...Show All
Bodylojohn How to get authenticated password of sharepoint site user to pass on NetworkCredential() method as parameters
I am creating a user control page(ascx) using the web services from SharePoint Services/Project Server site. As we know that the user name and password needs to access the sites of them. I used the following code(C#) to access the web services, it will work fine. There is already Windows Authentication in Sharepoint Site. //UserGroupWS is Added Web Service private static UserGroupWS.UserGroup userGroup = new UserGroupWS.UserGroup(); userGroup.Url = " http://DomainName/_vti_bin/UserGroup.asmx "; userGroup.Credentials = new System.Net.NetworkCredential("UserName", "Password", "DomainName"); Note that there are the parameters namded "Password" also in NetworkCredential() method. W ...Show All
Peter Hamann Multivalued bdc column - a dream?
I think (based on experiment and crawling through the internet) that this is impossible, but I will ask again - does anyone know of a way to make a BDC column multivalued I have a web service that allows people to seach for values from an external system, but they need to select more than one value. Please let me know if you know the solution. Thanks, Ishai Sagi I wrote this for 2003, and the company I used to work for now upgraded it to 2007. it's called "sharepoint list synchronizer" and it allows you to specify jobs of copying data from external sources into sharepoint lists (as well as copy between lists). I am pretty proud about that piece of software, even though I dont work for them anymore. http:// ...Show All
