Is Hierarchical Recursive Grouping is possible in Tablix in RS2008?
Hi! Is Recoursive column grouping possible for tablix in RS2008? If yes, please provided related link ...
Hi! Is Recoursive column grouping possible for tablix in RS2008? If yes, please provided related link ...
Hi I created a sql server report using performance point services. In the dashboard designer I’m able to see the preview of the report. But when opening the same report in SharePoint site-> Performance point content-> display report I’m getting access denied error . • The permissions granted to user / are insufficient for performing t...
In my silverlight page, when the user clicks on a button; the app, calls 3 web services async. It has to either wait for these 3 async calls to be completed or has to be notified when these calls are completed. After these 3 calls are completed, the results will be written to a text file (It is a out-of-browser app with elevated trust). ...
I have a web application where user can create his/her account.I want that user can import email contacts from his/her yahoo account.How can I do that? I thnk I havr to use yahoo API or some services kind of.???? ...
I wonder what is the optimal authentication method for services and webservices: user/password is sent on each request user/password is sent once to obtain an authentication code that will be sent on each request Is there any alternative? Which is better? Why? ...
Is there a way to programmatically retrieve start-up time/duration for all the Windows Services that have started during boot in Windows XP? That is, the time the service was initialized to getting to the "started" state. Thank you in advance! P.S. I'm not asking for software recommendation. ...
I'm developing a service using .NET on Windows platforms. It had worked until yesterday... but today it doesn't want to start!!! It seems strange, and I feel I'm missing something... I've also tried to revert sources to the last working version, but nothing else happens: net start outputs: The service is not responding to the contr...
Hi, I have an entity class Customer which as the property Address that is an object of the Address class and that has few properties. It looks as follows: public partial class Customer { public virtual int ID { get; set; } public virtual string Symbol { get; set; } public virtual string Name { get; set; } public virt...
I have created a WCF Service Library in VS2010 and can run the service by selecting Debug->Start New Instance from project's right click menu. Can I further define some initialization logic that would be executed before the service is started? EDIT: What I try to achieve is to initialize NHibernate and several other elements so that t...
I have a result set like follows from a stored procedure and I need to calculate an aggregate count with a table in a report template. There are more columns returned but this is the caliumn for whci I need the aggreagte. Value 10 94 20 200 90 100 and I need to calculate the number of rows where Value is < 90. So the answer should be 2...
Hi I am having trouble with using NHibernate's Linq querying functionality when trying to page data in a silverlight application. I have a DomainService with a method like: [Query(ResultLimit = 50)] public IQueryable<Category> GetCategories() { return _Session.Linq<Category>(); } In the silverlight app, I am trying to page fo...
Hello, I'm data-binding a ListView to a collection that comes from a service layer. In response to events, the view model associated with the ListView refreshes the ListView's data. In order to retrieve updated data, the vm retrieves a new collection instance from the service layer. Items in this collection are Equals() but not Referenc...
Hi, I have windows service project in VS2005 which was developed on XP platform. For Debugging i used the following code #if (DEBUG) Debugger.Launch(); #endif This worked fine and it opened up dialog to select the instance of Visual Studio that has the Windows Service project open and i could debug it. No...
Hey there, I've got a one-to-many relationship set up. (Ex. A Person with many Phone Numbers). In my get query i have this.ObjectContext.Person.Include("PhoneNumbers") and the in generated MetaData including public EntityCollection<PhoneNumbers> PhoneNumbers{ get; set; } I have also set up a DTO with this and other properties i need. [...
Hi, I have a solution that I have designed with 5 layers. They are: UI/Presentation Layer Service Layer Business Logic Layer Data Access Layer DTO/Common Layer (IQUTECHDTO) I want to pass the DTO to the UI. Below is the service layer that exposes a method GetVendors which I want to return the VendorDTO. This object will populate a...
I, i need to create a service that reads sensors, do a fast fourier transform and save the results in to the db, but i need to comunicate 2 values to the service when i start it (how many values to take and a string for the db). How can i comunicate this to the service? In addition i need to start the service every a time. Tnk's Valeri...
Hi, I looking for a web services tutorial using Jax-ws wherein it has login/logout methods. for the login it will return the session id. for the logout it will end the session. any help will be greatly appreciated. Thanks, winston ...
Hello, I have a .net Windows Service developed in C#. OnStart of the service I am calling a function that stores the serviceName,DateTime in a ServiceLog sql Table and returns the ServiceID(ID number from the table). OnStop I want to update the same record with the StopDateTime. I don't know how to store the ID number that is returned ...
I come from a MS / C# / .Net background, and am accustomed to everything that the .Net Framework has to offer, including WCF. When building a service tier in .Net, the choice of what framework to use is easy: WCF. WCF gives you the ability to write something once, and the flexibility to expose that functionality in multiple ways and in...
Hello, I have a web service deployed on a machine that is attending requests on 2 different domains. One internal (intranet) and another one external (internet). So I can make requests like this: [internaldomain]/myservice.asmx or [externaldomain]/myservice.asmx the external domain works because another machine is resending the requ...