Answer Questions
Aamir Iqbal Xml string compression?
Looking for a way to compress a huge xml string. Xceedsoft has a compression library but should we really buy it just for that. Any suggestions will be appreciated. Thanks, Sailu Is it for transferring between machines If so - you could use Gzip compression. Pranshu Hi Friends, the below code can compress any kind of string. if u like this code u can use it... using System.IO.Compression; using System.Text; using System.IO; public static string Compress(string text) { byte[] buffer = Encoding.UTF8.GetBytes(text); MemoryStream ms = new MemoryStream(); using (GZipStream zip = new GZipStream(ms, CompressionMode.Compress, true)) { zip.Write(buffer, 0, buffer.Length); } ms. ...Show All
sabo 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 Thanks Diego Dagum wrote: Hi Nayan, You'll find several application examples at the MSDN SQL Server Developer Center: http://msdn2.microsoft.com/en-us ...Show All
DrSudhaK Problema con la arquitectura de una aplicacion (referencias ciclicas)
Hola, tengo un problema con la arquitectura de capas. Necesito que dos capas se comuniquen de forma reciproca la una con la otra y no se como hacerlo para no hacer referencias ciclicas. Espero que me podais ayudar, gracias. Shiveta, Una manera de aproximar este problema, si no puede ser evitado, es definir un conjunto externo de interfaces que definan las responsabilidades y funciones de cada capa en forma externa a la misma (normalmente en un assembly independiente), de forma tal que introducirlas como un tercer elemento rompan la referencia ciclica. De esta forma, cada una de las dos capas implementara las interfaces que le corresponden, a la vez que usara las interfaces opuestas para interactuar con la otra capa. Para terminar de ...Show All
MarkSPA 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
Will Merydith Drag and drop controls/shapes using Forms/Asp.net.
Hi I am in need of developing functionality which will allow the users to drag and drop Shapes and images on a designer/Form and allow them to draw shapes. I am looking for a 3rd party library/product (either winform or asp.net) which provides any of this functionality. If you are aware of any please let me know. Thanks take a look, it might help u. http://dotnetjunkies.com/WebLog/teund/archive/2005/05/24/88238.aspx You should use Dojo ( http://www.dojotoolkit.org ) or YUI ( http://developer.yahoo.com/yui/ ) for drag and drop. I think dnd are very easy in Dojo and I reccomend it. But Dojo and YUI are Javascript Frameworks, not a .NET Library. ...Show All
Kevin Hoffman Error creating MySite: There has been an error creating the personal site
Hi, When creating a MySite users get this error message: There has been an error creating the personal site. Contact your site administrator for more information. Here is our setup: 1 web application for central administration 1 web application for ssp administration site 1 web application at port 80 (collaboration portal) this web app uses (and requires) SSL managed path: "mysite" (explicit inclusion) managed path: "personal"(wildcard inclusion) site collection based on the MySite Host on the "mysite" managed path SSP: personal site provider: https://[portalurl]:443/mysite/ SSP: personal site location: "personal" Initially we hosted the the MySites in a s ...Show All
barkingdog Calculated field in SharePoint list not displaying correctly in asp:dropdownlist control
I have a simple SharePoint list which has three fields - two of which are single line text values and the third is a calculated field set to =[Field1] & ":" & [Field2]. The data in the list is fine. When I create a new aspx page, drop on the data source control and then the asp:dropdownlist control and bind the control to the source, I get items like this in my dropdown. "string;#Business:Business Model" "string;#Processes:Enabler" Any idea where the string;# is coming from This is an (annoying) artifact of calculated fields. Stripping off the "string;#" shouldn't cause any problems. ...Show All
Tomas B The database 'mcms_db' is not an MCMS 2002 database
So I am testing migration from an MCMS 2002 SP2 site to MOSS 2007 and I am running into this error whenever I try to run the Migration Profile tool in Central Admin: The database 'mcms_db' is not an MCMS 2002 database No other message, and no errors anywhere else (that I can find) I ran the assesment tool and I got no errors, but I did get some warnings dealing with extra indexes in a table I couldn't find (queue_messages_<some number sequence>) The warning tells me that the migration will not migrate the extra data, but that's fine with me. Currently the MCMS site still runs perfect, but for some reason MOSS doesn't recognize the database as an MCMS 2002 database. I even attached and tried a completely different database ...Show All
erodcav Transaction across Applications
HI, We have a Web application that consists of a Sharepoint web site with ASP.NET pages as web parts. In the admin module of the application, we have a provision to add a user. On adding a user through the application, the user is added in 3 places, namely in Active Directory (AD), SQL Server database and in Sharepoint database. All this is a part of ASP.NET code with no transaction happening through out the user creation. Now is there any way to impose a transaction in this process That is, until all three AD, Sharepoint and SQL Server databases are up and running and the creation of user happens with no errors, the new user must not be committed in all three databases. This is very critical as it causes inconsistency if the u ...Show All
slein No context menu for Reporting Services
I installed the RS add-in on my MOSS site and was able to publish reports to my Report Center site. So far so good. However, the right click context menu for my reports does not show any entries for Reporting Services admin. My MOSS site is AD authenticated and I'm using a domain admin account for all installation and testing. I used Windows Authentication for RS integration. Doing the same on a standalone MOSS server works as expected. What am I missing How do I enable the RS context menus Any pointers Hello Gowri, I have run into an issue that i'm thinking you may beable to assist with. I have installed SQL Server SP 2, WSS 3.0, SSRS Add-in for WSS 3.0. I've created a new report ...Show All
Mike V T Visual Studio 2005 Class Syncronization issues
Hi , Has any one come across Visual Studio 2005 's class syncronization's issues basically it looks like VSTS doesn't support generation of sequential diagrams. -Paresh Hi Paresh, Are you asking whether the sequence diagrams can be generated from the class diagrams in VS 2005 Unfortunately the answer is no. Here is a link you can find further information to your question: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=271160&SiteID=1 . As this link explains, you can use Microsoft Visio to create sequence diagrams. ...Show All
Please help with my query. Adding a custom service to the workflow runtime
Hello, I have a custom workflow loader service that I would like to add to the sharepoint hosted workflow runtime. How do I do this I tried looking for an appropriate configuration section in the web.config file of my sharepoint site, but I couldn't find anything. Thanks! ...Show All
nativecpp MOSS 2007: List to interact with SQL 2005 Database/Table
Good morning Community, the problem i face is this one: I want to display a SQL 2005 Table in a MOSS 2007 list. The Users should be able to add new table entries. Furthermore i want to use the MOSS 2007 list-feature just to show own entries. Is this possible with standard features Thanks a lot for your help! Hi, you can use Business data catalog feature of MOSS2007. Bussiness Data Catalog->import Applcation file. Applcation should be XML file containing mete data information and connection string of SQL database. ...Show All
TerryYoung DB content migration from Sharepoint 2003 to MOSS 2007
I have created a new MOSS 2007 portal, now I want to migrate document libraries and user and their permission from SharePoint 2003 to new portal in MOSS 2007. I only want to migrate document libraries and Users, not the complete portal. Can anyone tell me what are the steps that are required to migrate document libraries and user and their permission from SharePoint 2003 to new portal in MOSS 2007 Thanks, Bilal Bilial, In Beta 2 TR you had three options for upgrade Inplace, Gradual and database. Database seems to have been dropped from the SDK so not sure if this is still a valid approach. However in your scenario, where you have the new MOSS 2007 setup already, I would rec ...Show All
sroughley 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 Excel Services capabilities in Office SharePoint Server. Before posting a question, please review ...Show All
