I have a Windows mobile project and a Web Service. I can connect to the dev server with a console app, but not the windows mobile emulator.
The emulator can access the network without issue. I have IIS installed. If I deploy the Web Service to the local IIS and update the reference the emulator can connect without issue.
Firefox can c...
Hi Friends,
What is way to connect to SOAP based web service from Blackberry Application. Every one is using KSoap Library. Is there no native support in Blackeberry SDK to connect to webservice.?
...
I've recently been tasked with performing a comparison of SOA suites. I've been looking into the SOA offerings of jBoss, Oracle, WSO2, etc.., and comparing everything SOA from ESB, application servers, middleware, BPM, goverance and discovery. I thought I had a pretty clear understanding of Service Discovery and UDDI, but in the JBoss do...
A little up front info:
I have a SOAP service (hosted using JAX-WS (Endpoint class), but I don't think that is important).
I can connect to and use the web service just fine with Visual Studio generating the client (C#).
I generated a java client using Eclipse Web Tools (new --> other --> web services --> web services client).
Then...
I'm looking for a web service testing framework that has a good built in text input / output gui. The point would be for business and other non developer users to be able to test requirements by using a simple gui that they could enter values into and see the results from the web service. I have seen lots of references on Stack Overflow ...
Could someone please direct me to some good documentation or feedback here on what are best practices for implementing web services in an application that handles different concerns? For example, should I create different services, one that handles security, (AuthService), one that handles data-entry for customer service reps, (CRUDServ...
Win 7 and VS2010 B2. I am trying to write a minimal web server using the built-in HttpListener. However, I keep getting an AccessDenied exception. Here is the code:
int Run(string[] args) {
_server = new HttpListener();
_server.Prefixes.Add("http://*:9669/");
_server.Start();
Console.WriteLine("Serv...
I have to connect with PHP WebService via SOAP from a .Net (C#, WPF) application. I added reference to this service, some proxies were generated.
When I invoked some function:
var client = new someAPIPortTypeClient();
XmlNode[] response = client.status(arg1, arg2);
I got response:
SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http:/...
I'm trying to create a program which needs to access a web service. E.g. a mobile program that accesses a a super market service. How do I go about it?
...
This question is part user experience, part engineering.
I am trying to find a nice, clean way to have a user communicate with my web page while they are on another web page. I have web services that will accept HTTP POST/GET, so AJAX and other asynchronous niceties are welcome - don't worry about the details of their communication, the...
I'm trying to learn to call SharePoint Web Services from an external C# client. I'm using MOSS 2007 and VS 2008. There are lots of examples on the web of doing so, but most of them seem to be using a different form of each of the Web Service APIs than what I'm seeing in Visual Studio. My question is...what up wit dat?
When, for examp...
We have a web application built on a Tomcat 6/WebWork/Hibernate/SQL Server stack.
One part of the web application is a network map built using
the Flare toolkit (the predecessor to Flare was Prefuse). The network map data is retrieved via a webservice call, say getData(). This call is made by the Flare application to retrieve XML data ...
When adding a new web reference, one of the options that visual studio gives you is to search for web services on the local machine (The exact option name is "Web services on the local machine").
My question is, how does Visual Studio find the web services on the local machine? The local website that contains the service doesn't contain...
I'm building an XML-based webservice in Rails to serve as the backend for an iPhone app, and I'm wondering how I can best achieve an auth scheme that will let me use both GET and POST requests -- i.e. one that doesn't require auth sent in the body of an XML payload.
The wrinkle here is that I'm not using regular HTTP auth. Instead, I'm...
Hi,
does anybody know agood way in granting a connection from one service to another, so that both services benefits fromeach other?
I would like to have an easy but never the less safe way to do a connection between my server and another server, but I don't know how to do that.
It should be ...
easy, so that neither the user nor the ...
hi guys,
I been getting a really nasty error when updating a "Service Reference" for a WCF web service when using VisualStudio 2010 Beta 2 so I have switched to using SLsvcUtil.exe to generate the client proxy to use in my Silverlight 3 application.
Problem is that I noted that before, when using "Add Service Reference" from within Vi...
How easy is it to determine whether an iPhone application is cracked and report that device ID to a server rather than block it / or turning the app into a lite version? Would patching remove these methods to the server?
It is mainly a losing battle preventing an app being cracked, but i want a system not dissimilar to product keys / or...
I am having a webmethod that returns some data.I'm using jquery to call that function with its Content type specified as XML.The problem is that it is working on local machine but not on server.The code i'm using is:
var arrInputs = pnl.getElementsByTagName("input");
str = arrInputs[0].value;
$.ajax({
type: "POST",
...
Using CXF to create contract-last web services seems like an efficient and effective way to rapidly create either SOAP or REST based web services. However, I'm unclear/unsure of the following and I'd appreciate insight/feedback:
Are there any significant pitfalls of contract-last that I should be aware of?
Are there any significant iss...
I have an ASP.NET 3.5 web service (old school SOAP, not WCF) running on two servers set up identically in IIS 6.0. The Authentication/Access control is set up as follows:
Enable Anonymous Access = False
Integrated Windows authentication = True
Digest authentication for Windows domain servers = False
Basic authentication = False
.NET ...