Answer Questions
mognog Question regarding the CSLA framework
I'm currently in the beggining stages of designing an application around the CLSA framework. Before i go too far i would like to know if anyone has used this framework successfully in any mid to large size applications If not, what went wrong I like the way the framework is layed out but its a big investment in time and money (work hours). Any help would be appreciated. I had Rocky's book (highly recommended) and have reviewed the CLSA.NET framework, but I have never used it in a production environment. I have used a custom port of the CSTemplates ( http://cstemplates.sourceforge.net ) framework for the past year or two. It has worked extremely well in both very large and small systems. The good thing about working with a framew ...Show All
Samaritan how to create folder or file on user's lacal c: drive
Hi Everybody, Plz help me to create a folder on user's local c drive My code creates folder in the server . But I want to create it in which machine reguests the page means. Plz reply somebody ASAP..... Directory.CreateDirectory("C:\\mydirectoryname"); string path = @"C:\mydirectoryname\myfilename.txt"; FileStream file = new FileStream("c:\\Builder.doc", FileMode.OpenOrCreate, FileAccess.Write); StreamWriter sw = new StreamWriter(file); sw.Write("Hello file system world!"); sw.Close(); file.Close(); what should I do next You have to use Javascrip/ VB script for this. USe FileSystem activex object for directory creation. Thanks & ragards, Bineesh AV Hi, ...Show All
Staun Sharepoint Designer Backup/Restore problem
I am trying to use Sharepoint Designer's backup and restore functionality to move a site from one server to another. The backup seems to complete successfully, but when I go to restore the site I get an error that looks like this: Cannot find C:\Windows\Temp\.......\exportsettings.xml. Does anyone know how to resolve this problem Hi Avery, This might help with increasing the max upload size (there's a section titled "Configuring Large File Support"): http://office.microsoft.com/en-us/winsharepointadmin/HA011607881033.aspx Hopefully that's what you're looking for... GwK Thanks for that, it did help but I still ca ...Show All
Toon Nijland Sharepoint Workflow and Workflow Foundation
Hi all, I am new to Sharepoint. Is there any difference between Workflow engine in sharepoint with Windows Workflow Foundation Or they are actually the same thing. Please help with my confusion. Thanks in advance. Same thing. WSS 3.0 is one of many MS products that will be using WF (from the .Net 3.0 Framework). The next version of BizTalk is being rewritten using WF. There are several MS Webcasts that discuss this. ...Show All
FredV When and Where to use Interface
Hi All, I have a question here.Im bit confused of interface usage. Is it correct to have a separate separate interface for data objects I have around 10 business classes and have corresponding 10 data classes. Do we need to have a separate separate interfaces for each and every data class What is the correct norms of using interface Please clarify this. Thanks in advance. It depends... are you going to be making these classes COM accessible If so... then yes, you’ve got to use interfaces for everything that will be visible as a COM component. Do you have to use them No, you do not *have* to use interfaces with your classes... and without know much more about your classes, how you use them today and how y ...Show All
jdrawmer Unable to edit in datasheet - WSS 3.0
When I try to edit a list in datasheet view I receive the following error: The list cannot be displayed in Datasheet view for one or more of the following reasons: A datasheet component compatible with Windows SharePoint Services is not installed, your browser does not support ActiveX controls, or support for ActiveX controls is disabled. This worked as of 2 or 3 weeks ago ( I do not remember the last time I tried it), and I cannot think of anything that has really changed locally or on the server. Other users have no issues. I have office 2003 with the SP parts installed. It is in my trusted site list and security is set to custom off a low template. All activeX controls are set to "allow" for the zone. I am also running IE 7 ...Show All
Uncle Ted difficulty in understanding visitor pattern
Hi All, I have confusion on why is Visitor pattern is needed.One of the famous website provides the following code to explain the use of visitor pattern,but it is nto understood by me. Can somebody please explin in simple terms what is visitor pattern and in what case it is implemented. package Transactions ; public class Transaction { public abstract void accept( TransactionVisitor v); } interface TransactionVisitor { public void visit( DepositTransaction dt); public void visit( WithdrawlTransaction wt); } class DepositTransaction extends Transaction { public void accept( TransactionVisitor v) {v.visit( this );} } class WithdrawlTransaction extends Transaction { public void acce ...Show All
Robert3234 VSeWSS Debugging has just stopped working????
Hi All, when I did my clean install, I created a simple "hello World" web part. Pressed F5 and it deployed and debugged - Hooray. (VS2005, SP1, VSEWSS, SQL Server 2005) Now I am starting to work on the real web part, I have run into two problems. The first is the most worrying: Pressing F5, fires up the build, and the deployment, BUT never fires the browser or the debugger. It just says deploy successful. Now I do have ASP debugging enabled in IIS, and it DID work at first. Can anyone tell me how to get this working again please The second is that after one or two succesful deployments, it suddenly stops deploying with a weird error of: "Object reference not set to an instance of an object". So I then ...Show All
abcoura Alternatives to waiting on Message loops for keyboard input
Hello, The am looking at real time measurement of keyboard input times (WM_KEYUP and WM_KEYDOWN) for my application. Is there a way to get notified of KEYUP and KEYDOWN events by a method does not require waiting on message loop to capture keyboard inputs at the application level thanks, You can add hooks to the WM_KEYUP and EM_KEYDOWN events if you are using Visual C++. Then you can have a variable in your class which will store the time at which the event occured. This way, windows will automatically notify your application of these events and you will not have to run your own message pump. ...Show All
Rascal123 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
SoundGuy88480 Architecting Application?
Dear All, In my career, i am in a transitional stage - moving from developer to managerial position and prefer Technical Manager/Architect. To master Architecting, need to know the following: 1. Is there any certification/course to master Aplplication Architect, including UML and applying Design Patterns 2. Can i have some sample/actual copy of 'High Level Design' and Low Level Design Document for an Application/Solution 3. What is the difference between 'Technical Architect' and 'Solution Architect' Or, are they same Thanks in advance for the advise/help. Regards, ravi Books and links that may help: http://realworldsa.dotnetdevelopersjournal.com/net_20_patterns_architectu ...Show All
srinivasintouch Document Upload
Hi, When we click on upload on document Library it takes us to upload page, if we have to upload multiple files then we have to click upload multiple file link, then it take us to Explorer view. I need to know can be open explorer view by default when user clicks upload in document library, Thanks, Bilal ...Show All
invantix Excluding a URL with a question mark in it by creating a crawl rule
in MOSS 2007, how can I exclude a URL with a question mark in it by creating a crawl rule it just doesn't seem to work if I create a exclude rule with http://www.blah.com/page.asp PageId=77 thanks. Hi Andrew Thanks for your answer. The problem is that I want to exclude only the page with id 77, not all pages with a query string. So yes, http://www.blah.com/page.asp PageId=77 is excluded, but http://www.blah.com/page.asp PageId=78 http://www.blah.com/page.asp PageId=79 unfortunately too. Michael Michael, Does the Exclude rule http://www.blah.com/page.asp * not work Testing this against the url http://www.blah.com/page.asp Pa ...Show All
R Raghu how to auto apply custom theme to MySite when site is created
hello, i need to auto apply a custom theme to all MySites of our portal, when MySites are created. MySites are provisioned, when the user clicks to the MySite link for the first time. What template is used to create this site, and how to modify the relation to the theme. i was able to auto apply a custom master, but with the theme, i stuck. thx for your response, marcel ..update ... I found an interesting blogpost on this subject: http://www.sharepointblogs.com/dwise/archive/2007/01/08/SingleMasterPage.aspx does someone else has experienced the same problem ...Show All
Steveinbeloit How to complete task: Configure workflow settings
How to complete task: Configure workflow settings Completed al previous tasks in Sharepoint Services 3.0, Sharepoint server 2007. Can't find out how to complete this task. When I press action I get the "global workflow settings" screen. My choices are: 3 times YES for all Web applications. When I press OK I am redirected to Application Management screen, but Task is still active. ...Show All
