Answer Questions
Gwiz Configuration Wizard failed - hosts file missing
Hi, I just want to let you know, that during the Configuration Wizard of MOSS EE 2007 (English) the configuration failed because of a missing C:\Windows\System32\Drivers \etc\hosts file! I created the hosts file and added 2 entries: 127.0.0.1 localhost 127.0.0.1 <machine name> And ran the Configuration Wizard again - with success. Before installation I added the server role "Active Directory", maybe the DNS Server installation removed the file, I'm not sure, I have never meet that the hosts file is missing! System: Win2k3 Server Enterpriser Edition (SP1) Server roles: Application Server Active Directory DNS Server I found that once myself Kevin but only once. I have ...Show All
JPedroFS Which Way to go?
I have a project to make a Settlement Statement in this format. Column1 Column2 Column3 Colume4 Adv Deposits Guest City Monthtoday forColumn 3 Previous Balance 0.00 0.00 300.0 - Settlements ---The Settlements Section will be Manual Entry Net cash 0.00 0.00 0.00 450 Checks 0.00 0.00 0.00 600 Paid Out 200.00 0.00 0.00 500 F&B Paid Out 0.00 0.00 0.00 0.00 Lockbox 0.00 150.00 0.00 150 American Express 0.00 0.00 150.00 150 Discover 0. ...Show All
Steve Wormley How Can We Create BI Portal?
How Can We Create BI Portal This is a question with no direct answer. This really depends on how you approach it and what your business goals are. For a start you can go here for more info on BI with MS products like MOSS, PerformancePoint Server etc: http://office.microsoft.com/en-us/products/FX101674131033.aspx or http://www.microsoft.com/office/bi/default.mspx - Mart ...Show All
senthil_palraj_e81a78 Selecting a good UML tools
thanks Pranshu for the reply. I understand your concern. Do you think that VS Studio 2005 will offer UML'ing in subsequent time to come If I go with VS Studio and not the Enterprise Architect then what are the differences. thanks Paresh. Hi Paresh, You might want to look/post at discussions at comp.software-eng newsgroup - you could find discussions containg UML in that group from google via: http://groups.google.com/group/comp.software-eng/search q=UML&start=10 & You should be able to get some good comments from that group. also look/post at the newsgroup comp.object UML is a communication language, as what Martin is saying in his bliki. ...Show All
durayakar Code Generation - MyGeneration, CodeSmith, GAT/GAX or DSL?
I am looking to generate code based on a database structure. I want to start with a base template and add things I need to it. My goal is to auto generate the boring repetative code so I can focus on the most important areas. I have been looking at CodeSmith and MyGeneration which both have starting point templates that use Enterprise Library but I wanted to see what Microsofts approach was. Is it Guidance Automation or DSL If so does anybody have an example of how to generate DAL classes and entity classes from a database using these tools Release 1 of WCFS: dec. 06 I see you are using Windows Workflow Foundation. I'm not makking it..! I don't think it's going to be painfull to org ...Show All
webrift Creating a task with special permissions
Does anybody have suggestions on how to update custom workflow task item permissions The SpecialPermissions property available while creating a task. It's an HybridDictionary but there's no documentation available on the topic. Anyone ever used this Hi When you create task use (CreateTask Method, or OnReplicatorChildDataInitialize) point SpecialPermissions property to public System.Collections.Specialized. HybridDictionary createTask_SpecialPermissions and when create task use createTask_SpecialPermissions = new System.Collections.Specialized. HybridDictionary (); createTask_SpecialPermissions[taskOwner.LoginName] = SPRoleType .Contributor; // repeat this step for all use ...Show All
R.Tutus Designing real time database for financial organization
Hello Guys I know this is basic and different people do that in different ways according to their needs; but I would like to know about the best practices to design a highly scalable real time enterprise databases for financial institutions. When are we making transaction how the record is kept and tables are designed This is must not be basic ER solutions. Some experts thinks this must be blend of Transactional Database and analytical database (OLTP and OLAP). Whatever it it, the database must be designed to ensure a highly scalable,high performance and high throughput one. Here is a sceniario. When millions of people are making transactions for their day-to-day saving accounts how the records are kept on the tables and ...Show All
kinny_k Full backup hanging on last step
Hey guys, hopefully someone can help me. I have a full backup that runs every night. A couple nights ago, it started to hang on on backing up the Windows Sharepoint Services Search Database. It says "Preparing backup" while all the other steps says "In Process". The SQL server database, on the same server (single server deployment) taps out in the morning and the portal is unable to connect to the config database. Then I'd have to restart the server. These backups are also not restorable as they had never finished. Does anyone know what's going on here or know how to clear the unfinished backup history I've already tried deleting timer failed and stuck timer jobs. Thank you much. I'm not sure how min ...Show All
Belgarion2 Multi-tiered Application with client Server Architecture
I want to Develop a Multi-tiered application with Client Server Architecture. I have one server and many clients around 10 to 15 or even more than that. I have one problem. When some master data is inserted by some clients it must be available to all the clients and server application at the same time and if the other clients has already opend the master form then it also immediately updated when another clients inserting record in that master. Can any one give me solution for this problem. How to implement this in .net 2.0 Thanks in advanced Nayan Nayan, just in case you are using SQL Server 2005 as database, you have the possibility of make every client suscribe to a master data query through SQL Server Qu ...Show All
wsy generating classes from UML
Hi, Sometime back ,i read somewhere that newer version of vs.net gives the functionality of making classes from uml diagrams(like class diagrams), but i have not encountered this kind of facililty in the vs.net as per now. Can you people please confirm on this. Also if there is any other tool available to do this for creating classes,interfaces etc in c#, please let me know. Regards Diego, As Clemens noted the VS class diagrams are not exactly UML (I don't think that is a problem but it might be if the requirment is for strict UML). Also the VS class designer is only that a class designer if you also need sequence diagrams etc. you need a real UML tool (I use Enterprise Architect fr ...Show All
Phillippa Creating multiple tasks to multiple people
I have a workflow, where I need to create an undefined number of tasks to different people. I solved this in my State Machine Task like this: When the workflow starts, I read out the field, where all the people are stored and save them into a collection. Because the field contains also some numbers, it's a bit tricky: XmlNode node = myDoc.SelectSingleNode( "//my:vertreter" , nsmgr); string [] separator = new string [1]; separator[0] = ( ";#" ); string [] strings = node.FirstChild.Value.Split(separator, StringSplitOptions .RemoveEmptyEntries); foreach ( string item in strings) { if (item.Length > 3) vertreter.Add(item); } This should work for me, I tried it with an example in a WinApp. I a ...Show All
BradyGuy Still unclear on how to use Typed Datasets in BLL...
OK, I have decided to use typed datasets in my data access layer (DAL). So, my question is, do I really need to create a business logic layer (BLL) From what I have read, you can extend the dataset classes in the DAL using partial classes and place business logic there. Doesn't this combine the DAL and BLL into one component Or is there something I'm missing Do you create the BLL and start by referencing the DAL project and inheriting the classes from the DAL and extend the classes there I don't get where one ends and the other starts. OR, if it really makes a difference. ...or do I even know what I'm talking about... Background: VB 2005, Winform app, expertise level: intermediate+, small application audience, single develo ...Show All
Suneel VLN 3-Tier
Hello, I want to know about 3-Tier Architecture, I know that it has, User Interface Layer Business Logic Layer Database Layer. How can i explain that to somebody in effective and simple way about each layer, and how i can expain about each layer can u guys give me an example please (maybe from your previous development and experience) Guide me Hi Diego, Thanks for providing useful links. Thanks to MSDN. RAMU I agree with Diego. Although the difference is subtle, it is still there. However, the meaning has been blurred since the concept was first introduced. The standard 3-Tier architecture is a thin-client (desktop or web-based) accessing a central server application that uses a database. So the th ...Show All
tharpa Evaluating CSF
I have a heterogeneous environment: Windows and Linux. My web services on Windows use .asmx, and I'm currently upgrading those to WCF. The other web services are just XML-RPC services on Linux systems. Some in my organization want to port all those to web services on J2EE. My question is, with which J2EE systems is CSF competitive, and how can the Linux side of the house create well-enabled services that are CSF-compatible I've just started using Indigo (WCF) for my provisioning web services. How can I integrate those with CSF Hi there, You don't have to have WSE for running a web service in CSF you can create WSE(Web service Enhancement ) wrappers on top of you ...Show All
Bernie West how do i add document library in a site
Hi , how can i add a document library called myLibrary to the SPWeb site called mySite The purpose is that when the user clicks on the site: mySite he will see the document library myLibrary part of Documents section in the site contents section Thank you. This can be achieved by modifying ONET.xml and DocumentLibrary.xml. For Ex if we want to create an Excel Document Library. Open ONET.xml (path = C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\SiteTemplates\SPSPERS\XML\” ) Make an entry under < Configurations > < Configuration ID = " -1 " Name = " NewWeb " /> < Configuration ID = " 0 " ...Show All
