services

Passing an object as a parameter to a windows service

Is there some way to pass an object to a windows service? I know the method myServiceController.Star(string[] arg) but i need to pass a more complex object than a string array. Actually, i don't need the object to be passed as a parameter, what i really needs is that the service can use an object created in a windows forms application. I...

Question regarding the syntax of a php client->call using a soap service

So I am working on a site for work that I "inherited" when I started here, and I am having to swim through a lot of code that i am unfamiliar with, namely soap services. The website has a feature that lets you write some things to the db using this createURL service: $res = $db->Exec('INSERT INTO private_urls (UID, psswrd, profile_id, s...

Silverlight RIA Services. WCF. Any Query that requests more than 1.5MB fails. Load operation Failed.

Been working on this a couple of days now. We're starting a LOB app with Silverlight and we're running into a big obstacle right away. Began using Fiddler to examine what was going on and found out something very interesting. Any queries (IQueryable functions on the server solution) that return more than 1.5MB of data will fail with t...

Entityset is empty in ria services with nhibernate

i use a nhibernate with ria services and i test my Domain classes in server and it works but when i want to use ria service in silverlight when i want to get a entityset like thise it give me that entityset is empty: mainpage.xaml.cs: public MainPage() { InitializeComponent(); AppointmentDomainContext context ...

How to use a java socket in tapestry5?

How do I implement a java socket in tapestry5? What I want to do is create a socket which I can send an XmlHttpRequest over, through a piece of javascript code. function sendPost(url, postdata, callback) { xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return } xmlHttp.onready...

Missing Business Intelligence Project type in Visual Studio 2010

When I use visual studio 2008 and do a new project I can select the type of project as Business Intelligence project. From here I can select a report server project. I noticed that with visual studio 2010, this does not exist any longer. Tried doing some googling about it and got this: http://social.msdn.microsoft.com/Forums/en-CA/vsr...

Can a Windows Service recieve Windows Messages?

I created an application to receive a broadcasted windows message which works fine. When I turn it into a service, install it, and start the service, the service doesn't receive the message. ...

Axis2 with OpenEJB error on Tomcat

Hi, I deployed on Tomcat Axis2 and OpenEjb and got the error. If deploy either only axis2 or openejb, they works properly, but when deploy them together, Axis2 can't be deployed, but OpenEjb is available. Could anybody help with this problem, please? This is error that I got when Tomcat starts : SEVERE: Error deploying web applicatio...

I need to make a CIF share available for services that start various ERP application services

I have a batch file with the net use command to map a share. I converted the batch script into an exe and called it by creating a service. The EXE works fine when I run it and maps the drive. When I invoke it through a service, it returns an error, "System did not respond within 3000 milliseconds" and it errors out. How do I make a sh...

Building a service for a Drupal site to duplicate a node to another Drupal site in a multi-site setup

I'm trying to set up one of my Drupal sites to push a node to another Drupal site in a multi-site configuration. It looks like I need to do this with services somehow, but I can't find any tutorials out there and I need at least to be pointed in the right direction. What I believe I need is set up Services on the receiving site to accept...

Uncommitted reads in SSIS

I'm trying to debug some legacy Integration Services code, and really want some confirmation on what I think the problem is: We have a very large data task inside a control flow container. This control flow container is set up with TransactionOption = supported - i.e. it will 'inherit' transactions from parent containers, but none are ...

How to use or get working: Reporting services report viewer component in VS.NET

I am trying to write a simple web app (C# or VB.NET) to display a set of reports/subreports, but I can't seem to get access to the ReportViewer control. I am using VS.NET express (2005 and 2010) and I know I need the reportviewer pluglin. but I have installed it but I can't seem to get it to appear in the toolbox. I have tried to add a r...

Which XML-RPC library do you recommend for Android?

I need to make my client talk to a XML-RPC service. I found a couple of interesting ones on the web like android-xmlrpc. Have you used any such libraries in your code? Which library do you recommend? ...

Obtaining WSDL from a Web Service Endpoint Address

Is there a generic way of obtaining the service WSDL by using the service endpoint address. I know this can be done by appending ?wsdl to Axis2 services. But does this property hold for other web service containers as well? ...

drupal using node.save with XMLRPC call to another site. "Access Denied" message

I have a piece of code on 1 drupal site to create a node another drupal site in a multi-site setup. It looks like I'm getting the sessionid and logging in just fine, but when trying to create a "page" node, I get "Access denied". Under Services -> Settings I have "Key Authentication", "Use keys" is unchecked, and "Use sessid" is checked....

C# Windows Service Access denied when trying to write in a folder

Hi guys, I have deployed successfully a C# windows service on a windows 7 machine. Now, when I try to create a file using this code : FileStream os = new FileStream(String.Format(folderName, fileName), FileMode.Create); I get Access to filepath is denied. In the service Installer I set the following parameters to : this.serviceProc...

Snow Leopard Services Tutorial for Contextual Menus

I'm relatively new to OSX programming (i.e. really new) and I find myself in need of creating a Contextual Menu that ties into Finder. From what I've read here as well as online, this is only possible through the use of Services in Snow Leopard. I found the Apple Developer guide at Apple Services Implementation Guide But it's not suffi...

Performance on .NET Remoting

Hi all, I have a web service that uses a shared object through '.NET Remoting'. For avoiding problems related with channel duplication, I call the UnregisterChannel method everytime one webmethod is done. Does anyone know if this solution (unreg a channel after webmethod is going to finish) is acceptable in terms of performance? Tha...

Web service soap header authentication

Hi, I have a web service, i want to authenticate the user from the soap header. That is, i want to check a token id (random number) in soap header and validate it against a value in my database and if the number matches i allow the request to go through otherwise i dont want to allow execution of my web method. Is there any clean way o...

Passing arguments to a python service

Hi, I need some help with a python service. I have a service written in Python. What I need to do is to pass it some arguments. Let me give you an example to explain it a bit better. Lets say I have a service, that does nothing but writes something to a log. I'd like to write the same thing into the log several times, so I use a loop. ...