services

File Locked by Services (after service code reading the text file)

I have a windows services written in C# .NET. The service is running on a internal timer, every time the interval hits, it will go and try to read this log file into a String. My issue is every time the log file is read, the service seem to lock the log file. The lock on that log file will continue until I stop the windows service. At ...

WCF Data Services access issues - 403 forbidden?

Hi, I have Silverlight 4.0 client calling WCF data service, in the service I have write allow to all (I know that is not very wise, but I want to test it first): public static void InitializeService(DataServiceConfiguration config) { // TODO: set rules to indicate which entity sets and service operations are visible, updatable, etc. ...

How to get Android Local Service instance

Hello all, I'm starting a service in my application using startService. I do not want to use bindService as I want to handle the service life time myself. How can I get an instance to the service started if I do not use bindService? I want to be able to get a handler I've created in the service class to post messages from the activity...

How to implement Self-host WCF data serivces (http://localhost:1234/myDataService.svc/...)

I have a project that needs to implement WCF data services (OData) to retrieve data from a control system (.NET Framework Application). The WCF data service needs to be hosted by the .NET application (No ASP.NET and NO IIS). I have seen many WCF Data Service examples recently; they are all hosted by ASP.NET application. I also see the s...

How to find where a service is installed to? C#

Is it possible to find out through .Net whereabouts a service is installed to? var temp = from sc in ServiceController.GetServices() where sc.ServiceName == "MSSQL$SQLEXPRESS" select sc; However the servicecontroller doesn't give me the path I want, notably the "Path to Execute" found in the service properties dialog. ...

Reporting Services Sum of Inner Group in Outer Group

I have a report in Reporting Services 2008 using ASP.net 3.5 and SQL Server 2008. The report has 2 groupings and a detail row. This is the current format: Outer Group Inner Group Detail Row The Detail Row represents an item on a receipt and a receipt can have multiple items. Each receipt was paid with a certain payment...

SICF services in SAP

Where stored code SICF services in SAP ? I am interested in the path on the SAP local machine. ...

SSRS Reports Add Reference

Hi, Can someone tell me whether this is possible. I have an existing SSRS project which contains a SSRS report (Call it report1). I have created another SSRS Project and in this i added the Report 1 SSRS report to it. The problem is that when i add the reference it is creating a copy of the SSRS report in the new projects folder. What i...

WCF Data services FTP

Hi I want to expose a service operation of a WCF Data service over FTP I was wondering how to best approach this I was thinking of writing a batch file, which will invoke the WCF dataservice, write the data returned by the service to a FTP location and grant access to the Client to that particular FTP location Do you think this is a ...

Problem with Web Service call on complexType data element using SOAPY in Python

I am trying to use SOAPy to access a temperature conversion Web service, for example to do a FahrenheitToCelcius temperature conversion. The WSDL file of the webservice defines the input message of the FahrenheitToCelcius operation as:- <input message="tns:FahrenheitToCelciusSoapRequest"/> with the FahrenheitToCelciusSoapRequest messa...

Does my local service spawn another thread?

Hello everyone, To be able to write "nice" code between my application/activies and a local service I need to understand some basic Android concepts: What I'm wondering is if my application (as in my activities) and my local service is sharing one thread. I.e. when the activities and the local service executes tasks queued are these ta...

Problem with SQL Server Reporting Services

Hello. Friends I have a problem with SQL Server Reporting Services ..!!! I have some reports that show no data, the reports are on a separate server from the server that contains the database, the Data Sources of the reports is well configured. Stored procedures are executed while the server (display data) users have the necessary perm...

Windows Services, ASP.NET webservice + C#

Hi, I have a serious problem (i think ;-)). We have webservice. A there is a method which we can call A. We have also a service, which invokes this method from webservice. On my local computer, invoking A, by service looks good. On a server, it doesn't work and I get an error like this: error: The request failed with the error messag...

ObservableCollection

Ive posted another thread regarding refreshing a silverlight listbox - In the meantime Ive become slightly more familiar with the issue. It has to do with implementing the ObservableCollection interface. Im using RIA services to populate a listbox with a collection of type ObservableCollection. The problem is refreshing the Items once ...

Reporting Services FileShare Delivery - Password must be encrypted

Hello, I am currently using the Reporting Services 2005 API to create and edit subscriptions. In order to create a FileShare subscription I have to submit a password in clear text. This is a major security risk. Is there a way to submit an encrypted password using the API? I don't want to require the user to have SSL. Thank you in ...

Is there any API available from Monster for searching job

Is there any API available from Monster to search job based on keyword, category, location, etc. I got the below link after some googling http://xml.monster.com/doc/ But there is no specification about job search. Any help on this is greatly appreciated.. ...

Server-side reuse of a silverlight class that uses .Net RIA Domain Services

Currently I have a working Silverlight application that uses .Net RIA Services. It's structure: Client-side Application.Client.UI.dll (Xamls and basic UI stuff) Application.Client.BL.dll (Contains the Link to RIA and most of the business logic) Server-side Application.Server.Data.dll (Server-side dll that holds the Entity-model a...

How to identif the exposed webservices in a website?

Hi, How to identify a the exposed websites in a web site? Is there a open source is available to list out the exposed webservices? ...

Android RemoteExceptions and Services

So I've written a Service and an Activity for the Android OS. My service is running in it's own process, so all the communication between my Activities and the Service happens via IPC. I use the standard Android .aidl mechanism for this. So far everything works fine. However, the AIDL generates all method stubs using "throws RemoteExc...

Communication with running Windows service

Hi. How can I communicate with running Windows service without stopping it using native C++? I need to pass integers and strings to service and get integers and to get back integers and strings. Currently I do it through registry, but I would like use another, faster way. Thank you in advance. ...