I'm doing some work for a charity that's having a fund drive. Whenever someone makes a pledge, their pledge amount is logged to SQL Server. They'd like to have the pledge total posted across a couple of other websites, so I thought, "a-ha! this is an opportune time to learn about web services!" I assumed I could set up a web service th...
Hello, I wanted to know if python had any service like Java's JNDI.
More specifically, I want a service where providers can register themselves and then consumers can ask fro where certain provider end-points are.
For example, assume that I want to implement a mailbox for all my friends. Each of them have their own end-point, so friend...
Is there a way to get the service name from C# that the current service was registered with when it was installed.
For instance, I register the same service twice:
sc.exe create ServiceName1 binPath= D:\myservice.exe
sc.exe create ServiceName2 binPath= D:\myservice.exe
In my service, I actually want to know if I am ServiceName1 or Se...
Hi,
I have built an ADO.net data services to expose data in a SQL server database as XML.
What I want to be able to do is create a feed reader for this ATOM feed in .net or may be a user control which subscribes to this URI based ATOM Feed from ADO.net data service & publishes the latest information on our website
...
Hi Folks,
We have a current WinForm/Windows Service running in .NET 1.1 out on various customer sites that is getting data from internal systems, transforming it and then calling a Web Service synchronously.
This client app will no longer work in Vista or Windows 7 etc.. and its time to update!!
I was looking for ideas on what I coul...
I have a C# WCF client that is wrapped for COM+ Enterprise Services. I install the component on the target machine and use regsvcs to put it into Component services.
My question is, where will it look for it's configuration file, as it is running under the dllhost process rather than a regular exe?
...
Hello everybody,
I am trying to learn the new services method in flex 4. but i can´t get it work. A test oparation near the service in flash builder 4 works. But when i run the code i get NetConnection.Call.Failed: HTTP: Failed. Does somebody knows what the problem can be?
Tom
CODE:
PHP
<?php
class AuthService {
public funct...
Hi,
Can you please let me know how you handled
Dynamic Data with Entity Framework and RIA Services
Thanks
Saritha
...
Anyone have experience parsing complex response types using ws-xmlrpc?
The service returns a HashMap with one of the values an Array, when I request the key of the array from the hashmap, java just returns "java.lang.Object".
How do I access the contents of the array?
Any ideas?
Thanks in advance for your input.
...
Hi, I'm trying to call web service function via GET method using jQuery, but having a problem. This is a web service code:
[WebService(Namespace = "http://something.com/samples")]
[ScriptService]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class TestWebService : System.Web.Services.WebService {
[WebMethod]
...
Hi,
I'm looking for some help on deciding a useful folder stucture strategy for reporting service projects in TFS. Does any one have some suggestions on which way I should stucture TFS? Should it be a project per report or should it be one Reporting project with multiple folders under the main that contain all the report projects?
i.e...
Hi all,
Here is my question, I have a solution with 4 projects in it for a WCF Service :
DLL Library : Service Interface.
DLL Library : Service Code.
Form Application : Service hosting application.
Form Application : Service client application.
I'd like to have certain properties of the service accessible for the hosting application...
Hi,
I am using RIA Services Beta 2 with Linq2Sql and SL3. In my SL3, I have a datagrid where I can do some mappings of data (Updates, Inserts and Deletes). I override the Submit method when SubmitChanges() is called. In the submit method in the domain service, I do some validation. If a validation fails for a particular ChangeSetEntry i...
I'm reading a book about programming ASP.NET in C#. The book makes the following comment:
Previous editions of this book tackled web services, a feature that allows you to create code routines that can be called by other applications over the Internet.Web services are more interesting when
considering rich client development (beca...
Hi. I've setup a project in Netbeans 6.5 with some web services that I've created myself and some web services that I've imported from WSDL files. I've setup a couple of desktop application through Netbeans in order to consume these web services. I'm not too sure where to go from here.
I have the GUI setup but not sure how to reference...
Hi all, I have some simple forms in silverlight 4 using WCF RIA RC2 Domain Services.
All of my forms appear to be working great, I went with the traditional code behind for granular control and formatting.
The problem I am having is on one particular form the data isnt being updated unless I update one of the other fields.
Here is my...
hi
When I start to installing using installutil it gives me following error, I have set ServiceInstaller and ServiceInstallerProcess
System.InvalidOperationException: Installation failed due to the absence of a ServiceProcessInstaller. The ServiceProcessInstaller must either be the containing installer, or it must be present in the Ins...
I'm trying to create a simple multiplayer game. There's a WorkerService which is supposed to handle all network communication and all interaction between this service and my Activities is done with AIDL. I think this is a standard approach - to enable two way interaction I use also an IWorkerCallback interface (also AIDL).
The problem i...
Hi,
I am trying to get my head around OSGi Services. The main question I keep asking myself is: What's the benefit of using services instead of working with bundles and their exported packages?
As far as I know it seems the concept of Late Binding has something to do with it. Bundle dependencies are wired together at bundle start, so t...
What is the best practice for emulating overloaded methods over WCF?
Typically I might write an interface like this
interface IInterface
{
MyType ReadMyType(int id);
IEnumerable<MyType> ReadMyType(String name);
IEnumerable<MyType> ReadMyType(String name, int maxResults);
}
What would this interface look like after yo...