services

Integrating Business Collection, Datasets with reporting services

What are the best practices and implementation solutions for integrating your Business logic classes with Microsoft Reporting services? ...

Struts and Spring together?

I am pretty new to both Struts and Spring. I need to know how to access a Spring Service in a Struts ActionForm. Even a pointer in the right direction would be appreciated. ...

I can't add service at VS2008 to Sharepoint services

Hi I can't add service at VS2008 to Sharepoint services when i tried to http://tomasekweb.com/Test1/_vti_bin/Lists.asmx and click on GO The user and password was needed,I typed it but, it's still needed. I don't know, what i have to set on sharepoint site. I have only one user on Sharepoint server. ...

Using Process.Start() to start a process as a different user from within a Windows Service.

I'd like to periodically run an arbitrary .NET exe under a specified user account from a Windows Service. So far I've got my windows service running with logic to decide what the target process is, and when to run it. The target process is started in the following manner: The Windows Service is started using "administrator" credentia...

wcf max message size

hey guys, a WCF question for you here: i have two services and am sending pretty chunky messages between them (~100kb). Though the previously mentioned value is typical of the size of the message, it is possible for it to fluctuate greatly (in both positive and negative directions). Thus, to deal with such situations where i have to tr...

Filtering Subreport data on a Winforms report

I am using Winforms Reporting Services (RDLC) to generate a report that has a subreport. My problem is the subreport isn't being filtered by the parent ID. A simple example of the data model might be a Department which contains Employees. In the report I want to show all Departments and have a subreport to show the Employees that bel...

TransactionProxyException using Enterprise Services

Hi, I have a windows service that s synchronises 2 databases using Enterprise Servcies. I t uses a ServicedComponent to do distributed transaction. I am getting a TransactionProxyException and the problem is intermittent. ie run the same data a second time and it may not happen. Anyone know what may cause this exception or guide how ...

Best Method to SFTP or FTPS Files via SSIS

What is the best method using SSIS (SQL Server Integration Services) to upload a file to either a remote SFTP (secure FTP with SSH2 protocal) or FTPS (FTP over SSL) site? I've used the following methods, but each has short-comings I would like to avoid: COZYROC LIBRARY Method: Install the CozyRoc library on each development and produc...

Can PowerShell script out SQL Server Reporting Services RDL files?

Is it possible to use PowerShell to script out SQL Server Reporting Services rdl files in SQL Server 2008? If so, can someone provide a code example of doing this? This would be a useful replacement for using a 3rd party tool to script out RDL files created by business users outside of my Business Intelligence department. CLARIFICATIO...

C++ Service Providers

Hi everyone, I've been learning C++, coming from C#, where I've gotten used to using service providers: basically a Dictionary<Type, object>. Unfortunately, I can't figure out how to do this in C++. So the questions are basically: How would I make a dictionary in C++. How would I use 'Type' with it, as far as I know there is no 'Type' ...

Cloud Computing need some regulations???

I was involved in couple of cloud computing platform recently. First of all please note that I am not trying to criticize any platform. Cloud computing is large area but to make my point simple and understandable. Let me come up with very simple scenario and that is data storage services hosted on the cloud. If you take any storage se...

Passing a Windows Service Parameters for it to act on

I want to turn a program I have into a service so I can use it without logging it. Basically what it does is it backs up specified folders to a specified location using SSH. However the problem I'm running into is I don't know how to tell it these items. I only know how to start, stop, and run a custom command with only an integer with a...

Session 0 Isolation

Vista puts out a new security preventing Session 0 from accessing hardware like the video card, and the user no longer logs into session 0. I know this means that I cannot show the user a GUI, however, does that also mean I can't show one at all? The way my code is set up right now, it would be more work to make it command line only, ho...

Grails Error for using e-mail service

This is the controller class JavaMailerController { JavaMailerService javamailerservice def x = {javamailerservice.serviceMethod()} } This is the Service import javax.mail.; import javax.mail.internet.; import java.util.*; class JavaMailerService { boolean transactional = false def serviceMethod() { String d_ema...

Programmatically limit CPU Usage of a Thread running inside a Service

I'm using VB9 (VS2008). I've created a Windows Service that indexes some folders regularly. Is there a way I can put an upper limit on the CPU usage depending upon the current system state, i.e., if the system is idle, the thread can use the CPU as much as it needs, but if there are other programs/processes running then it should use t...

Task manager shows 9MB Mem Usage while the thread performing Service function is Sleeping

I'm developing a Desktop Search Engine in VB9 (VS2008). Is it normal for a Service to take up 9MB of Memory while the only Thread involved in the Service is sleeping? The code includes following import statements... Imports System Imports System.IO Imports Microsoft.Win32 Imports System.Threading There are a few class variables in t...

Service -> App Communication. Best method?

Hi, I'm developing some kind of server service who gets in action and stop on an specific range of time, I need to write a monitoring app to receive some status text sent from the service in the same local host. It's the first time I need to comm between processes, I've been looking for some methods, wich do you believe is the best for...

Connecting ASP.Net to Wcf/Tcp chat service

I have a WCF chat service that accepts duplex tcp connections. A single duplex tcp connection can be used to send and receive messages for more than one user (so I can have multiple chat servers that all connect to each other). Now I want to add Web users into the mix, to let them chat with the desktop users. This is for a live-support ...

multithread performance problem for web service call

Hello everyone, Here is my sample program for web service server side and client side. I met with a strnage performance problem, which is, even if I increase the number of threads to call web services, the performance is not improved. At the same time, the CPU/memory/network consumption from performance panel of task manager is low. I a...

web service code in actionscript

hi, im calling an actionscript class from my main mxml file. the actionscript class is responsible for calling a web service and handling the response, however im having trouble and keep getting the following error; (im new to flex btw) Error #1009: Cannot access a property or method of a null object reference. my code goes as follow...