Answer Questions
AlexBB Visiting a portal without authentication
Hello: I've created a portal with MOSS 2007 as a test, now it is necessary to sign in to visit the portal. Can I make that the users visit the same site without the authentication window Regards if you'd like to open up your portal to anybody and everybody you can turn on anonymous access which will not require any kind of authentication. Hello: If I understand well, adding this group will allow all persons who authenticate to read the content of my site, am I wrong. If not, is it necessary to do an authentication what happens if I want to make my portal available to all the world is it possible Thanks Usually in case like that you have someth ...Show All
黃泓量 Jeremy Wong Moving MySites to a different farm in BTR
Don't ask why I am trying to do this but I need to migrate a few MySites from a BTR installation to a different BTR installation so I then can upgrade them to RTM. It seems like the stsadm -backup/restore doesn't capture all the meta data and other dependencies tied in with MySites. Does anyone out there know a good way to achieve this I've tried the stsadm -export -includeusersecurity but I am getting all these "access denied" errors on export AND import. Needless to say, this is messy. Thanks, Rabbit I am getting the following error [2/27/2007 11:13:17 PM]: Progress: Initializing Import. [2/27/2007 11:14:17 PM]: Progress: Starting content import. [2/27/2007 11:14:17 PM]: Progress: ...Show All
nattylife 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 Hi Steve, thanks for the mention :) we're doing our best here. At the end of the day us MVP's have access to exactly the same information in the SDK you have, even though we chased and chased info to help with BDC Meta Man. I've forwarded the link of this thread to Lawrence to let him know your frustrations. Many thanks Nick I wrote this for 2 ...Show All
blackpuppy Anybody knows MOSS 2007 release date??
Hi, I have a simple question. Is MOSS 2007 officially released or not Last news I have was about Beta2 and RTM. Cannot find any release document or news about final release. Anybody knows Thanks RTM is release. or are you waiting for the box ...Show All
Alex2200 WSS V3 mail alerts
Hi, I've install WSS and I have a problem with mail alerts, in the Event Log the following errors is displayed... An error occurred while talking to SMTP host u . Any ideas why the SMTP host appears to be corrupted Thanks, Paul. Hi David, Sorry for the delay in getting back to you I've been out of the office. I did fix the problem it turns out to be a restriction on the SMTP server, under the "Access Tab" for SMTP properties under IIS, the connection was restricted to certain IP addresses only. Thanks, Paul. Hi Paul, I have a similar problem. I have tested the SMTP server independently. Cannot connect to SMTP host [encryp ...Show All
mranzani How to install additional CA site?
Hi, there. I 'm playing with Best Practice Analyzer recently releaseed. When I run it on my farm, following advice was there. Is it really possible to install additional CA sites other than that created on farm creation If yes, great! then how to do it (I think technet should mention that if that is one of best practices...) Thanks in advance/ ---- Title: Highly Available Central Administration Capability Severity: 3 Description: Only one instance of the SharePoint 3.0 Central Administration Web site exists in your installation. To make sure that you can administer the farm in the case of a failure of a server hosting SharePoint 3.0 Central Administration, you should ...Show All
wchedm Data Access Architecture
I am reviewing my current project and find that the data access is not so desirable. The main problem maybe root from the architecture of my data access. I would like to get more input. In my existing application, I have create one data access object for each table. Most of them are implemented by Type DataSet while some are custom objects (The reason is lack of inheritance of Type DataSet). For example, I have created a Typed DataSet Order to access my order header and order detail. I have also created a product class and a SalesProduct class (inherit from Product). The above objects are all treated as my DAL and contains CRUD mainly. (Certainly, I found some business logic messed into them already.) The problem came when I reviewing the ...Show All
sandsdad The participant 'HelloWorldParticipant' does not support action
Hello As per the readme I am executing the helloworld example and am getting this error <FaultMessage>Failed to create session. The participant 'HelloWorldParticipant' does not support action 'http://tempuri.org/HelloWorld'.</FaultMessage> I searched the forum also and realised only I am getting this error :(. Can anyone please point out what I am missing here Regards Paul Hi Venu, In the installation guide, its mentioned that: a) SQL Server should be configured for Windows Authentication, not SQL Server Authentication or mixed authentication modes. b) The account used in IIS Application Pool identity tab should be the same account that is running the Session ...Show All
Doug 123 Visio Modeling and Database/Column Notes
I am using Visio for Enterprise Architects that came with the latest release of Visual Studio 2005 and am designing a new database from scratch. I have commented all tables and columns but cannot find a way to pass those values into the database during creation. This is a vital component or any database modeling tool (such as ERwin) and am curious why this seems to not be supported. I am creating the database in SQL Server 2005. If there is a workaround, 3rd party tool, or something, please help me find a solution. Thanks in advance. Steve Steve, I feel the need to tell you that I am part of the ERwin development team. Here is a blog I've seen from when Visual Studio for Database Professionals announced their RTM Date. T ...Show All
Mamatha critique requested on thin Data Access Layer
I have devised a way to save tons of code by calling stored procs with a single web service method, which takes a DataSet parameter, containing a DataTable with the name of the stored procedure and column names matching the parameter names, and row(0) contents matching the values to be passed. I have further simplified matters by making all parameters varchar, so a call from my client looks like: Dim paramVals As String() = { myString1, myString2 } Dim ds As DataSet = oneWsMethod("storedProcName", "param1,param2", paramVals) ... Dim params As String() = { this1String, thisOtherstring, thirdString } ds = oneWsMethod("anotherProc", "p1,p2,p3", params, usingTransaction:=True) My o ...Show All
martin.kolarik Creating SharePoint site on WSS 3.0 from C# Code
Hi all, I want to create a Sharepoint site on WSS 3.0 version from my C# code. Is that possible if yes how Thanks & Regards, Pramod Pramod, This is covered in the WSS v3 SDK, code snippet: SPGlobalAdmin globalAdmin = new SPGlobalAdmin(); SPSiteCollection siteCollections = globalAdmin.VirtualServers[0].Sites; SPSite newSiteCollection = siteCollections.Add("sites/Site_Name", "DOMAIN\\User", "Email_Address"); Look for the Microsoft.SharePoint.Administration Namespace. Andrew ...Show All
A.Kahn sharepoint 2007 how to know when a new site is created
Is there any event in c# to know whe a new site is created What i need it to chage the owner and permissions for every MySite as soons as it has being created, is there any event or feature or any thing that make this posible, I have been trying to add a feature and when I activate manually it works, but I need to activate any time a MySite is creat. hi you can create a Feature Receiver class library code and create a feature that would activate when the site gets created from the site definition. Activate the Feature in the site defintion as a <WebFeature> and write code to change the owner/user or rights whatever you would like to do in the FeatureActivated Event. Ram ...Show All
GregMaxey Connecting Filters to Report Viewer Web Part
Hi, I want to connect the Filters to Reporting Services Report. I tried it but it's not possible to pass inputs for the Report Viewer Web Part from a Filter. Has anyone tried this Thanks, S Suresh Hi Suresh I am trying to do same stuff find your blog if you already find any clue about it please let me know Hello, The Report Viewer can't connect to the Filter Web parts. You have to use another web part for reporting services that uses the Integrated mode of the Reporting Services with sharepoint. That web par can use the values from the filters and use them in the report parameters. That web part is installed with an addin in called SharepointRS.exe . No Luck so far. Please update me ...Show All
Rhubarb Business Logic & SQL
Hi, has anyone in here got some guidance or direction for Patterns and Practices on this one When should business logic be put into a SQL Stored procedure and when should it be put into Class object we are debating different architectural approaches and I am looking for some guidance. TIA Referenced post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=55375&SiteID=1 It seems to be a consensus about taking advantage of the strenghts and weaknesses of, both, OO paradigm and RDBMS Very intensive computing activity would be better carried out by classes' methods than stored procedures, while intensive record-oriented activities fit better in stored procedures Why In the case of comp ...Show All
Dallastower create a new page by programming MOSS 2007
I need to automate a process, for it I must create a new page by programming. Somebody knows where I can find information about this Thanks Andrew Connell has an example of it http://andrewconnell.com/blog/archive/2006/11/15/5168.aspx Thank you very much ...Show All
