active questions tagged service - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T01:57:26Zhttp://stackoverflow.com/feeds/tag/servicehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1607186/how-to-call-a-grails-service-in-a-view2How to call a Grails service in a view?fabien74742009-10-22T13:27:18Z2009-12-19T09:25:18Z
<p>Simple question :
I have a service class (let's say <code>helpersService</code>) and a method <code>def constructURI(params)</code>.
How can I call this method from a template view.</p>
<p>I have tried the following code without success</p>
<pre><code><% def helpersService = new HelpersService() // or def helpersService
%>
<img src="${helpersService. constructURI(params)}"/>
</code></pre>
<p>But I get the following result:</p>
<pre><code>No signature of method: com.HelpersService. constructURI() is applicable for argument types...
</code></pre>
<p>or (in case I use <code>def helpersService</code>)</p>
<pre><code>Cannot invoke method constructURI() on null object
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/639059/how-do-you-hook-a-server-side-logout-function-to-asp-net-authentication-service-l0How do you hook a server side Logout function to ASP.Net Authentication Service Logoutrams2009-03-12T15:06:18Z2009-12-18T11:00:03Z
<p>The Asp.net AJAX authentication service provides Login and Logout methods. I can configure a membership provider and a client side call to Login will call my server side ValidateUser defined in the membership provider. All good so far.</p>
<p>However, the Logout method issues a call to the built-in service's Logout method which basically set the ASPXAUTH cookie to nothing. </p>
<p>How do I hook into this call and write a server function that does a few housekeeping stuff when the Authentication service Logout is called?</p>
<p>TIA</p>
http://stackoverflow.com/questions/1919198/not-able-to-access-network-drive-from-vb-net-windows-service0Not able to access network drive from VB.net Windows Servicerowmark2009-12-17T03:00:26Z2009-12-17T03:07:48Z
<p>Hello,
I have a windows service developed in VB.net. This Windows Service every night at 8 PM picks a file from copies a file from my C:\ftpDocs to Y:\FtpDocs folder.</p>
<p>Y: is a mapped drive which is \sourceServer\Output files. when I run the same code from VB.net Windows Application instead of windows service it is working absolutely fine. But from the service it is throwing access denied error accessing \sourceServer\Output</p>
<p>It seems windows service runs from C:\windows\system32 for this reason I tried changing the current directory to C:\ftpService( This is the folder where my application is).</p>
<p>To access the map drive I provide a userid and password which is not my windows userid and pwd. Do you think this is the reason why it is not able to access from Windows Service??</p>
<p>If yes, how is it working from windows application. This issue is not going away for the past one month now.</p>
<p>I would really appreciate if you can help me out with this.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1918781/how-to-make-a-windows-service-terminate-when-one-of-its-sub-threads-terminate0How to make a Windows Service terminate when one of its sub-threads terminateunknown (google)2009-12-17T00:35:06Z2009-12-17T01:16:47Z
<p>in the ServiceStart() call of a windows service, I create a thread and start it.<br>
Thread1 = New TThread1(false)</p>
<p>In the Execute procedure of the subthread, there is a loop that runs forever and does that the service is supposed to do.</p>
<p>The problem is that when I get an error in this thread, I want to terminate the thread, and stop the service too. </p>
<p>How can I get the service to stop itself if a thread that it has started stops (fails).</p>
http://stackoverflow.com/questions/1800881/android-sdk-throw-a-custom-exception-from-a-service-to-an-activity0[Android SDK] Throw a custom exception from a service to an activitydasilvj2009-11-26T00:19:19Z2009-12-16T18:53:44Z
<p>Hi,</p>
<p>I'm currently working on an XMPP app' on Android and I'm pondering about the best way to throw a different type of Exception than a RemoteException to my activity from my service.</p>
<p>As it seems impossible to throw another thing than a RemoteException using IPC (you can't declare to throw anything in your .aidl), I just see two solutions:</p>
<ul>
<li><p>Create a listener for my activity to listen on my custom XMPP exception, which in fact will not be thrown but just sent as a usual object implementing the Parcelable protocol.</p></li>
<li><p>Catch my XMPPException and throw a RemoteException (with a content updated with my XMPPException) - But in that case, how could I know on my activity if it's an XMPP or a real RemoteException ? By tagging the name of the exception and parsing it on my activity ? It would be really gore.</p></li>
</ul>
<p>Do you have any idea ? Did I miss something from the SDK documentation ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1916253/bind-service-to-activity-in-android2Bind service to activity in Androidaspartame2009-12-16T17:28:10Z2009-12-16T18:27:15Z
<p>I'm trying to write a simple media player that plays streaming audio using RTSP. I have a GUI-activity and a service that performs the playback. My question is how to best communicate between the activity and the service (e.g. updating the gui based on the player state).</p>
<p>I know that I can bind the service to the activity using onBind(), but if I understand correctly this will stop the service if the activity is killed, and I want to continue the playback even if the user exits the activity. Is there any standard or preferred way of dealing with this problem?</p>
<p>Thanks,</p>
<p>Linus</p>
http://stackoverflow.com/questions/1914296/how-to-debug-windows-service-which-fails-in-init-method0How to debug windows service which fails in Init() methodNikhil Vaghela2009-12-16T12:13:12Z2009-12-16T12:20:35Z
<p>I have a windows service which fails in Init() method and throws some exception , so only way for me to check what the error is by looking at the event log. I want to debug the windows service, but the problem is that i can attach debugger only when service is rnning, in my case it fails in Init() method only. Any idea ?</p>
http://stackoverflow.com/questions/626767/silverlight-accessing-secured-webservice0Silverlight accessing secured WebserviceFireworks2009-03-09T15:42:19Z2009-12-16T12:15:39Z
<p>I'm trying to get a Silverlight application to connect to a Java webservice using a service reference.</p>
<p>I've come to the conclusion that Silverlight doesn't work the same way as as WPF or ASP.NET with respect to service connectivity.</p>
<p>I've searched the net and all I found for authentication was articles talking about securing the application by user by altering the service to include a webmethod.</p>
<p>I have to use the existing service. I've been using NetworkCredetials in ASP.NET and WPF; what's the equivalent in Silverlight?</p>
<p>Sorry, I should have mentioned that it's an axis service on a JBoss server.</p>
<p>UPDATE:
This link seems to indicate that this should be possible <a href="http://blogs.msdn.com/coding4fun/archive/2008/02/24/7883342.aspx" rel="nofollow">http://blogs.msdn.com/coding4fun/archive/2008/02/24/7883342.aspx</a>. They use NetworkCredentials to connect to to the Twitter API.</p>
http://stackoverflow.com/questions/1913429/servicecontroller-permissions0servicecontroller permissionsjdt1992009-12-16T09:31:37Z2009-12-16T09:31:37Z
<p>I have written a service which a website can execute a command on remotely using the ExecuteCommand method. I have noticed that if the website is not running under a user that is an admin on the remote machine then I get a permission denied exception on trying to execute command.</p>
<p>The servicecontroller class doesn't even allow you to specify any authentication parameters. Is this right? Are there a specific set of privelages the user need rather than an admin, as I am reluctant to add all the webservers users in our cluster as local admins on the service machine?</p>
http://stackoverflow.com/questions/1909477/should-i-build-a-windows-service-in-order-to-run-my-c-code-on-a-schedule0Should I build a Windows Service in order to run my C# code on a schedule? stefan2009-12-15T18:41:02Z2009-12-15T18:55:16Z
<p>Hi !</p>
<p>I've written a console app that <strong>sends MS Reports to emails</strong>.. (the reason was that i could check it easily if it works)
I want this to run daily at 6 am.</p>
<p>My idea was to <strong>write a service</strong> (so nooone will need to be logged in and the service will run).
So I'd like to call the static Method directly in a WebService.</p>
<p>I've a solution with 1 project file that is my console application (with settings, many references.. etc). I'd like to add another project - Windows Service.
My question is.. how to do that easily, so I wouldn't have to copy all classes etc to the Windows Service project?</p>
<p>Or am I totaly off the way? :)</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1908650/current-directory-of-a-vb-net-windows-service0Current Directory of a VB.net Windows Serviceacadia2009-12-15T16:30:43Z2009-12-15T17:06:20Z
<p>Hello,</p>
<p>For some reason the Current Directory of my windows service is C:\Windows\System32
and when I schedule my service I get this error Access is Denied.</p>
<p>In one of the blogs I saw this peice to change the current directory.
But I am not sure where to place this code.</p>
<p>Thanks</p>
<pre><code> System.IO.Directory.SetCurrentDirectory(System.AppDomain.CurrentDomain.BaseDirectory)
</code></pre>
http://stackoverflow.com/questions/1907992/any-patterns-for-high-availability-of-a-windows-service0Any patterns for high availability of a Windows Service?dungeoncrawler2009-12-15T14:55:34Z2009-12-15T15:10:18Z
<p><strong>Situation</strong></p>
<p>I have a windows service which I would like to make highly available.</p>
<p>I have two <strong>unclustered</strong> servers (Windows server 2003 standard edition).</p>
<p><strong>The question is:</strong></p>
<p>What options do I have to make my service highly available in an automated way?</p>
<p>I can think of the <strong>asymmetric master-slave</strong> option which consists of keeping the service running on both machines with a communication <strong>heartbeat</strong> between them so one acts as the master and the slave takes over automatically whenever the master does not respond.</p>
<p>Do you know any other ways to implement this?</p>
<p><em>note: Please don't point me to <a href="http://stackoverflow.com/questions/1758844/challenges-and-best-practices-for-failing-over-services">this answer</a>, I do NOT/won't/can't have clusters.</em></p>
http://stackoverflow.com/questions/1906107/what-is-the-preferred-method-of-passing-data-between-a-service-and-an-application0What is the preferred method of passing data between a service and an application [closed]norgepaul2009-12-15T09:01:44Z2009-12-15T11:47:55Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1260181/delphi-2009-how-to-communicate-between-windows-service-desktop-application-und">Delphi 2009: How to communicate between Windows service & desktop application under Vista?</a> </p>
</blockquote>
<p>I have a server running as a Windows service. To control the service and to display it's state I have an application running as a tray icon. I would like to pass data (log strings) from the service to the application. </p>
<p>What's the best way to do this?</p>
http://stackoverflow.com/questions/553175/running-a-java-process-in-windows-even-after-the-user-is-logged-out4Running a Java process in Windows even after the user is logged outMani2009-02-16T12:33:09Z2009-12-15T11:26:51Z
<p>I have a batch file that starts a Java process in a Windows 2003 server. As per the security policy, the users of that machine are logged off forcefully, if the user is inactive for a certain period of time. The problem is that when the user is logged out, the process also dies.</p>
<p>I scheduled a new task (Control Panel -> Scheduled Tasks) and selected the option of 'When my computer starts' and gave the user account details there. But it doesn't seem to have any effect, the user is still logged out and the process dies. Is a reboot necessary to make this change effective? And after the reboot, will I achieve what I'm expecting (keeping the process alive)?</p>
<p>Alternatively, will running this process as a Windows Service solve the problem? If so, can you please let me know how I can make a Java program or a batch file to run as a Windows Service? I would prefer not to use any other third party tools or libraries.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1824615/about-sybase-image0About Sybase imageFion2009-12-01T07:48:43Z2009-12-15T08:50:51Z
<p>Hello everyone:</p>
<p>Does image data type be converted to byte array in sybase?
I apply web service to get data set in sybase( image data type).
I use byte[] to get returning of web service.
Then i use the "response.binarywrite(byte[])" to show the image.(ASP.NET C#)
But there' s a image distortion problem (When i zoon in the image, some points are missed).
I don't know why
Does anyone know the image data type in sybase could be transfered to byte array?</p>
<p><a href="http://picasaweb.google.com/peter.xiau/jnzBtE#5410185737839757474" rel="nofollow">Original Image</a></p>
<p><a href="http://picasaweb.google.com/peter.xiau/jnzBtE#5410185735757641842" rel="nofollow">Distortion Image</a></p>
<p>System:</p>
<p>1 Sybase</p>
<pre><code> Sybase db: 11.9.2
Adaptive server enterprise 12.5.1
Sybase.Data.AseClient:1.0.152.0
</code></pre>
<p>2 ASP.NET C# (Visual Studio 2008)</p>
<p>3 IE6</p>
http://stackoverflow.com/questions/1903275/c-keylogger-as-background-service-started-automatically-before-logon-9C# KeyLogger as Background Service started automatically before logon [closed]Jhone2009-12-14T20:25:41Z2009-12-14T20:31:24Z
<p>Hi every one. I want to develop a C# KeyLogger application which don't have any UI, and it automatically runs in background before logon, and it also record username and password of window.</p>
http://stackoverflow.com/questions/1903023/c-how-to-execute-an-application-from-windows-service-1C# How to execute an application from windows service Jhone2009-12-14T19:44:25Z2009-12-14T20:08:28Z
<p>Dear All</p>
<p>I have window XP 2003 server, which is placed in a room where no one can enter to logon it.</p>
<p>for monitoring some applications
I created a consol application myServer.exe, which dont have any UI,
I want that this application (e.g., myServer.exe) start automatically as window bootup (e.g., before window logon)</p>
<p>and I need to do this work using windows service.</p>
<p>need your help.
(note: please dont suggest me any other solution, I need to use windows service to accompalish this task)</p>
http://stackoverflow.com/questions/1893167/what-kind-of-logic-goes-in-a-repository-and-what-kind-goes-in-a-service1What kind of logic goes in a repository and what kind goes in a service?Lieven Cardoen2009-12-12T11:52:03Z2009-12-14T12:31:20Z
<p>If a service uses repositories to persist data, shouldn't it be in a repository?</p>
http://stackoverflow.com/questions/495785/how-to-reuse-a-delphi-ole-server-with-a-second-client0How to reuse a (Delphi) OLE server with a second client?Name2009-01-30T14:57:52Z2009-12-12T22:56:53Z
<p>I wrote an OLE automation server (using Delphi). I usually start the OLE server manually and use it as a normal application. From time to time I start a client, which
automatically connect to the existing OLE Server.</p>
<p>When I terminate the client, the server does not terminate (at least when it was started manually before the client) but it won't accept any other OLE connection. Starting another client will trigger a new server instead of reusing the first one.</p>
<p>How can I reuse the same server with the second client?</p>
<p>(Question edited to reformulate it correctly. In the original version I was asking how to prevent the server from terminating, which wasn't a good formulation)</p>
http://stackoverflow.com/questions/1887962/is-it-possible-for-one-wcf-session-to-throw-an-exception-in-another-session1Is it possible for one WCF session to throw an exception in another session?avance702009-12-11T13:07:53Z2009-12-11T13:41:20Z
<p>if an administrator logs on to my service, he may wish to disconnect sessions which meet (or don't meet) certain requirements, be it automated or manual. throwing exceptions seems like a simple and effective solution, as all resources are released.</p>
<p>i could use a local bool field which, if true, would disconnect this user the next time he calls any of the methods, but that doesn't seem like an elegant solution.</p>
<p>and, it doesn't have to be throwing exception, as i've already noticed you can use OperationContext.Current.Channel.Close(), or abort, to disable access to that session.</p>
<p>is there a "standard" way to do this in wcf?</p>
http://stackoverflow.com/questions/1870322/how-can-a-windows-service-be-installed-with-visual-basic-net-express-edition0How can a Windows service be installed with visual basic.net express edition?davidcl2009-12-08T22:27:37Z2009-12-11T05:51:03Z
<p>I've written a VB.NET application which I would like to run as a service. Currently I'm using VB.net Express Edition (2008) which does not ship with the "Service" template, but I've added a Service class (inheriting from ServiceBase) and an Installer class (inheriting from Installer); in both cases I'm following sample code from MSDN. Unfortunately I haven't been able to get this code to install and run as a service.</p>
<p>The meat of this code is a TCP Listener class called sampleListener. If I set the sampleListener class as the startup object and run my project, it runs fine as a console application.</p>
<p>There's a service class (below) which simply starts the sampleListener. </p>
<pre><code>Public Class sampleSocketService
Inherits System.ServiceProcess.ServiceBase
Public Sub New()
Me.ServiceName = "sample Socket Service"
Me.CanStop = True
Me.CanPauseAndContinue = True
Me.AutoLog = True
End Sub
Shared Sub Main()
System.ServiceProcess.ServiceBase.Run(New sampleSocketService)
End Sub
Protected Overrides Sub OnStart(ByVal args() As String)
sampleListener.Main()
End Sub
End Class
</code></pre>
<p>There's also an installer class which I think is the source of my problems. Here's the installer class as I initially wrote it. </p>
<pre><code>Imports System
Imports System.Collections
Imports System.Configuration.Install
Imports System.ServiceProcess
Imports System.ComponentModel
<RunInstallerAttribute(True)> _
Public Class sampleSocketServiceInstaller
Inherits Installer
Private serviceInstaller1 As ServiceInstaller
Private processInstaller As ServiceProcessInstaller
Public Sub New()
' Instantiate installers for process and services.
processInstaller = New ServiceProcessInstaller()
serviceInstaller1 = New ServiceInstaller()
processInstaller.Account = ServiceAccount.LocalSystem
serviceInstaller1.StartType = ServiceStartMode.Automatic
' ServiceName must equal those on ServiceBase derived classes.
serviceInstaller1.ServiceName = "sample Socket Service"
' Add installers to collection. Order is not important.
Installers.Add(serviceInstaller1)
Installers.Add(processInstaller)
End Sub
End Class
</code></pre>
<p>Running installutil.exe on this produces the following message: </p>
<pre><code>An exception occurred during the Install phase.
System.Security.SecurityException: The source was not found, but some or all event logs could not be searched. Inaccessible logs: Security.
</code></pre>
<p>This looks like a security problem, but I'm running in a cmd window that was opened using Run As Administrator. </p>
<p>I tried a much simplified Installer class based on an online example:</p>
<pre><code>Imports System.ComponentModel
Imports System.Configuration.Install
<RunInstaller(True)> Public Class ProjectInstaller
Inherits System.Configuration.Install.Installer
End Class
</code></pre>
<p>This seems ridiculously simple, and I couldn't figure out how it could possibly work, and in fact it didn't. However, when running installutil.exe on the project with this version of the installer class, installutil.exe does not throw an error message and reports that the service has been installed successfully.</p>
<p>I suspect I need code in my installer class that does some of what's in my first example, but doesn't do whichever part is causing the error.</p>
<p>Any suggestions?</p>
<p>(This has been edited extensively for clarity and to add code examples which were not originally included)</p>
http://stackoverflow.com/questions/1883718/looking-for-blogging-service-api1Looking for blogging 'service' APIKabeer2009-12-10T20:18:14Z2009-12-10T23:02:11Z
<p>Hello. In my quest to build a site that has blogging capabilities, I am searching a blogging service. Please note that I am not interested in installing something like wordpress in-premise. I am looking for a service which will provide me with APIs to read and write blogs and be responsible for persistence and performance. Needless to say, it should be adequately secure and should be scalable.
Any pointers will be appreciated.</p>
http://stackoverflow.com/questions/1407217/net-windows-service-multiple-services-in-one-project0.NET Windows Service - multiple services in one projectBoris2009-09-10T19:23:49Z2009-12-10T18:47:42Z
<p>Currently, I have a project with a Windows Service. I also created another "Setup Project" which installs the Windows Service.</p>
<p>My question is this: Can I add another Windows Service to the same project? (This way, I can use 1 installer, and share some code between the services more easily.) If I can, does that mean when one service encounters errors then both services are stopped, or do they error out independently of each other?</p>
<p>Are there any other differences between coding 1 service per project, or having multiple services in one project?</p>
http://stackoverflow.com/questions/1882654/wcf-validating-service-certificate-using-a-custom-validator-on-the-client-side0WCF validating service certificate using a custom validator on the client sidetempleavenue2009-12-10T17:34:37Z2009-12-10T17:34:37Z
<p>If I am using a custom validator to validate the service certificate on the client side, what do i need to do? so far I have the following:</p>
<ol>
<li>Implemented my own custom validator to validate which implemnents X509CertificateValidator.</li>
<li>Configure the app.config for the client to use the endpointbehavior where I specify to use the Custom Validator.</li>
<li>After an instance of the service client is created, I set to use my own custom validator as follows:
client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidaionMode = Security.X509CertificateValidatioinMode.Custom;
client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidaionMode = new MyCertificateValidator().</li>
</ol>
<p>I am not sure if the step 3 is need or not(how do I tell to use custom validator when validating the service certificate). </p>
<p>For this setup, I have an error type load error when running the client (it failed to load my custom validator). I am missing something. Also, where do I put the custom validator class: in the client or in the service? </p>
http://stackoverflow.com/questions/1882188/singleton-pattern-in-windows-activation-service1singleton pattern in Windows Activation ServiceJoshua2009-12-10T16:23:08Z2009-12-10T16:23:08Z
<p>Hello
I have a few WCF services that are currently being self hosted, in a very basic NT Service. I want to expand my application to add provisioning of WCF Services, and updates, as well as isolation (I want each WCF Service to be in its own AppDomain). These WCF Services contain logic that needs to be run on a regular basis, pinging the database, and getting information from external devices so that when a request comes in the data is readily available.</p>
<p>I'm thinking about trying out Windows Activation Service, because i really like the provisioning, and isolation that comes with a managed services infrastructure. If I didn't use WAS I would essentially have to write the same code myself.</p>
<p>From what I understand though WAS does not really support the model of having a service that is running before someone actually calls a method on the service. the article I read here</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc163357.aspx" rel="nofollow">MSDN Article Link</a></p>
<p>states "That means in essence that out-of-the-box WAS hosting is not something that is really suited for sessionful or singleton services. It is more suitable for stateless per-call services."</p>
<p>it does say that "Out of the box" so I'm wondering if anyone has used WAS to host a WCF service that really behaves more like an NT Service (starting and stopping independantly of having a method called upon it).
Or any other ideas would be great. I was planning on writting this infrastructure myself, to host WCF services in a custom ServiceHost, and put their execution in a seporate AppDomain, as well as allow for provision of these services after initial installation, along with updates. However, I would MUCH MUCH MUCH rather not own that code if I don't have to.</p>
<p>thanks</p>
<p>Joshua</p>
http://stackoverflow.com/questions/1870279/post-form-data-to-external-url-curl0Post form data to external url + curlJames2009-12-08T22:20:06Z2009-12-10T09:39:54Z
<p>Hello all,</p>
<p>I have this form that I am trying to use to post data to an external url. I do have some very basic knowlegde of using php curl. So far if I use this code that I have written:</p>
<pre><code><?php
if ($_POST['request_callback'])
{
$customer_name = cleaninput($_REQUEST['customer_name'],"text");
$debtor_id = cleaninput($_REQUEST['debtor_id'],"number");
$telephone_number = cleaninput($_REQUEST['customer_number'],"number");
if ($_POST['callme_now'] == '1') {
$callback_time = date('y-m-d ' . $_POST['hour_select'] . ':' . $_POST['minute_select'] . ':s');
} else {
$callback_time = date('y-m-d H:i:s');
}
// Send using CURL
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, "http://www.myjoomla.eo/test.php"); // URL to post
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "Name=$customer_name&Debtor_ID=$debtor_id&Telephone_Number=$telephone_number&CallBack_Time=$callback_time");
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
$result = curl_exec( $ch ); // runs the post
curl_close($ch);
echo "Reply Response: " . $result; // echo reply response
}
?>
</code></pre>
<p>So far, it does post to the file and the results are display. Now how do I format the data that has been posted into xml format? Ideally, I am trying to acheive something like this an xml that looks like this:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<CallRequest>
<ProjectName>Test</ProjectName>
<ContactNumberToDial>07843088348</ContactNumberToDial>
<DateTimeToDial></DateTimeToDial>
<ListSource>WebLead</ListSource>
<AgentName></AgentName>
<AddToList>False</AddToList>
<SpecificAgent>False</SpecificAgent>
<DBField>
<FieldName>Name</FieldName>
<FieldValue>Testing</FieldValue>
</DBField>
</CallRequest>
</code></pre>
<p>Anyone have an Idea of what to do here?</p>
<p>Thanks,</p>
<p>James</p>
http://stackoverflow.com/questions/1873552/passing-paramters-using-ksoap2-to-net-web-service-always-passes-nulls-empty-v0passing paramters using ksoap2 to .net web service, always passes nulls (empty) valuesFadi2009-12-09T12:19:34Z2009-12-09T17:44:35Z
<p>Hi,
I'm having a problem in calling .net web services from android
using ksoap2. The call is executed just fine without parameters, but
when I pass paramters of any type, the web service just recieves a
null value. I tried everything possible but no luck so far. I hope
someone can help,
The client side code is:</p>
<p>public static boolean temp(){
try {
SoapObject request = new SoapObject(NAMESPACE,
METHOD_NAME_TEMP);</p>
<pre><code> PopertyInfo p = new PropertyInfo();
p.type = PropertyInfo.INTEGER_CLASS;
p.setName("num");
p.setValue(5);
p.setNamespace(NAMESPACE);
request.addProperty(p) ;
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope
</code></pre>
<p>(SoapEnvelope.VER11 );
envelope.dotNet = true;
envelope.encodingStyle = SoapSerializationEnvelope.ENC;
envelope.setOutputSoapObject(request);
AndroidHttpTransport androidHttpTransport = new
AndroidHttpTransport (URL);
androidHttpTransport.call(SOAP_ACTION_TEMP, envelope);
....</p>
http://stackoverflow.com/questions/1870723/does-a-website-link-href-validation-service-exist0Does a website link (href) validation service exist?Petras2009-12-08T23:56:04Z2009-12-09T00:07:43Z
<p>I am looking for a web service kind of like Google Analytics.
Paste some javascript into your web page and if any of the links there become invalid, hey presto, an email is sent to someone telling them which link, which page etc etc has the incorrect link.</p>
<p>Anyone heard of such a service?</p>
http://stackoverflow.com/questions/1869504/c-registry-read-write-from-a-non-admin-windows-service0c++ registry read/write from a non-admin Windows ServiceMartin2009-12-08T20:08:32Z2009-12-08T21:08:25Z
<p>I'd like to read/write some registry information from my non-admin Windows Service, and have it applied regardless of the user logged in. Would using a subkey of HKEY_USERS/.DEFAULT do the trick?</p>
<p>Essentially, something like CSIDL_COMMON_APPDATA but in the registry.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1869270/ikvm-exe-as-a-service0IKVM exe as a Servicejonaspp2009-12-08T19:28:56Z2009-12-08T19:28:56Z
<p>How could I run my IKVM compiled exe as a Windows Service? Should I write a Wrapper Service to it? Is there already anything to do this?</p>
<p>Thanks </p>