services

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 ...

sql reports using pps sharepoint 2010 access denied error

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...

Calling 3 web services async, and waiting for them to complete

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). ...

how to import yahoomail contacts to another web application

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.???? ...

Should services ask for credentials at each request?

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? ...

Windows Service startup time

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. ...

The service is not responding to the control function (error 2186)

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...

RIA Services and the custom type of the property

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...

Can WCF Self-hosting service have initialization logic?

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...

Count in RS using equivalent to a where clause in Transact SQL

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...

Ria services with silverlight has a Nhibernate Linq error with query resultlimit when paging

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...

Replacing a ListView's ItemsSource Without Loosing SelectedItem

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...

unable Debug a service in VS2005 on windows7

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...

Insert Entity into EntityCollection w/ RIA

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. [...

Passing DTO's from a seperate Project to UI Layer WCF RIA services

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...

Comunicate with a Android Service

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...

where to find example of logIN and logOUt operations in web service?

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 ...

Storing the ID in State in .net Windows Service

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 ...

What to use for building a service tier in PHP?

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...

SoapExtensionReflector issue rewriting response for different domains

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...