I am implementing a simple Web Service Server.
At first I thought the request ?WSDL would be sufficient to for Web Service clients.
If I add a Web Service Reference in visual studio to the project there are some additional requests made.
GET ?WSDL
POST ?WSDL
GET ?WSDL/$metadata
Because my server fails to respond correctly to steps ...
Hi,
Is that better to use WCF REST Starter Kit for consuming web services (REST) with WCF (by using HTTPClient) or do it directly with WCF ?
It seems that WCF REST Starter kit won't be available for .NET 4.0 and is a preview version only.
Thanks !
...
My web server would be overloaded quickly if all the work were done there. I'm going to stand up a second server behind it, to process data.
What's the advantage of EJB over RMI, or vice versa?
What about web services (SOAP, REST)?
...
Hello,
I'm having a problem using a WCF call from a Windows service to my WCF service running on my web server. This call has been working for a number of weeks, but then stopped working all of a sudden, and has not worked since.
The exception I'm getting is:
"General Error Occurred System.ServiceModel.CommunicationException: An erro...
Hi I am trying to deploy a web service client application in Jboss 4.2.3GA. I already did this and it works in glassfish v2.x. I copied jboss-saaj.jar, jboss-jaxws-ext.jar, jboss-jaxws.jar, jboss-jaxrpc.jar and jaxb-api.jar. Can someone please shed some info?
Also I deployed this in netbeans 6.7.
# Caused by: java.io.IOException: Could...
What are the best-practice / industry standard technologies for the folowing requirements
Allow transfer of business objects from one client / server to another
Language and platform independent
Supports Streaming to alow passing large data (e.g. a connected statefull conversation)
Is Asynchronous in nature (doesn't block, allows mon...
Hello
i'm developing a .net application which consumes a java web service, i created the client through wsdl.exe tool and its working fine, one of the method of the web service, receives an xml document as a parameter, and im using an XmlTextWriter to generate the document, but im having problems when including special characters inside ...
I'm trying to set up a .NET 3.5 web service project in Visual Studio. My goal is to include a namespace in this web service that I can expose to web applications that references this web service.
As you can see below, I have added the namespace "MyWebservices", but I am not able to find it after referencing the web service.
Service1.a...
Is it possible to configure a WCF proxy such that it is able to understand SOAP 1.1 and SOAP 1.2 messages at the same time? In other words, I want to be able to connect to a web service that may return at any time, SOAP 1.1 or 1.2 based messages.
Thanks.
...
I'm simply attempting to use a soap header for authentication purposes.
After adding a service reference to a client console application, the header shows as the first parameter in list instead of as a member on the client object.
Anyone have any idea what I'm doing wrong?
WebService:
public class Service1 : System.Web.Services.WebSe...
I have SOAP web services for Application 1 available to me. And, I'd like to implement a Java application that translate Application 1's Web Services calls to Application 2's JMX API. So App 1 can manage a bunch of operations through App 2.
If I understand the problem correctly, I want to build a SOAP/JMX Proxy (Remote Proxy design patt...
Hey folks, this seems to have been discussion fairly often but I want to make a simple, watered down question around doing authentication with RESTful services. The scenario is as follows:
There is a system that houses registered users for an application. The system exposes a RESTful API for accessing these users.
There is a fro...
Although polling a webservice is possible, do you know of another method to push changes to a mobile client except using the exchange server mail transport?
...
Hey people!
Currently I'm working on a C/C++ cross-platform client/server software. I'm very experienced developer when it comes to low level socket development.
The problem with Berkley sockets/Winsock, is that you always have to make some kind of parser to get things right on the receiver side. I mean, you have to interpret data, and ...
When using the REST interface for Last.fm web service, are the "Etag" and/or "Last-Modified" HTTP headers provided in the responses?
E.g. let's say I plan on using the track.getTags API method, is either "Etag" / "Last-Modified" HTTP header sent along with the response?
(NOTE: I have asked the same question on Last.fm's "discussion boa...
Hey!
Scenario:What my project do right now
User Enters his Login and Password through his mobile phone and servlets contacts webservice of Authentication and user gets authenticated with the system in the mean while user is Authorized also i.e What page he is allowed to see.
Page appears infront of user on his mobile screen from where ...
Hi, I have built a webservices, but it can accessed by all poeple. I want to it only used by the IP which I assigned. it's possible can do it on the webservices code. I was using vb
...
I'd like to access a web service with a given (simple) WSDL from within windows powershell.
Is there an easy way to do this?
...
I am trying to consume this WSDL service:
Transit Time Service
I successfully connect and get a response the first time but on subsequent calls I receive the exception:
The underlying connection was closed: A connection that was expected to be kept alive was closed by the server.
I overrode the GetWebRequest in the reference.cs file ...
I've built a webservice that wraps Apache FOP. You send it XML, and it gives you an MTOM stream that contains the rendered PDF. Now that its working, I'd like to run some performance tests on it. soapUI says they support MTOM, and I use it for all my other webservice performance testing, so'd I'd be great if I didn't have to write a cust...