Never seen this one before.
WebService.Implementation imp = new WebService.Implementation();
WebService.ImplementationRequest req = new WebService.ImplementationRequest();
return imp.GetValue(req);
The object that imp returns is not null. It's returning an ImplementationResponse, as expected. But all of the fields in that object are...
I am building a web site that consumes an external web service. I have added the WSDL of the external service as reference to my site. How do i view the contents of the SOAP envelope that is sent as request when i call the web method in the external service.
I get an "XML Parse Exception" when i make the web service call. So i want to s...
What are your approaches to generating some sort of human-readable documentation from WSDLs?
In the past I've used WSDL viewer (by Tomi Vanek) (see my blog post about integrating it into NAnt) and I'm happy with the results, but I'm interested in any possible alternatives.
I've also heard of x3sp, but I haven't tried it.
...
I need to get unmanaged Windows C++ clients to talk to a WCF service. C++ clients could be running on Win2000 and later. I have a control over both WCF service and which C++ API is being used. Since it's for a proprietary application, it is preferable to use Microsoft stuff where possible, definitely not GNU licensed APIs. Those of you w...
This is the first time I've used a webservice for anything so the question may be a little basic. Anyhow, I have a webservice that acts as a proxy to our vendors site. It simplifies the "screen scrape" that we would usually have to do. The webservice function looks like this:
namespace foo
{
public class MyService : WebService ...
I'm now toying around with WebServices, using the .NET framework (.asmx files, not WCF). I'm wondering what's the best practice to tell the user that some sort of business-error has happened in the method call.
My small test-case:
I have measuring probes which need to register with a central server. Each probe should have a different p...
I have been approached to create a website using Sabre Web Services to power the reservations system. All documentation I have seen refers to .NET or Java solutions, I was in doubt whether PHP can be used as access is performed using SOAP. I have found no further information about this, I assume the answer is yes, but wonder why there is...
I am using .Net 2.0 framework and would like to call a function in Windows service from a web service. Is this possible? And If yes, how much control I will have over the function i.e passing parameters, getting the result back etc. Any ideas would be greatly appreciated :)
...
One of our wcf service applications calls a seperate third party web service to submit information.
We are getting the following error every so often, but not all the time:
System.Net.WebException: The remote name could not be resolved: 'ws.examplesite.net'
at System.Net.HttpWebRequest.GetRequestStream()
at System.Web.Services.Pro...
I have a .net 2.0 click-once application that connects to IIS web services on Windows 2003 R2 64-bits. The IIS is setup with Integrated Windows Authentication.
So whenever a web service call is made to IIS web services, there is a double handshake taking place:
Client Request #1
GetEmployeeList
Server Response #1 <- 401
HTTP...
I'm wondering if any best practices exist for guidelines as to what should and should not go into a validator control. My thought and practice was that it should be basic sanity checking (i.e. did the user enter all the required inputs? Is there 10 digits in the phone number, is the email address in the valid form? etc..), but I've recen...
I am trying to use Twitter OAuth and my POST requests are failing with a 401 (Invalid OAuth Request) error.
For example, if I want to post a new status update, I am sending a HTTP POST request to https://twitter.com/statuses/update.json with the following parameters -
status=Testing&oauth_version=1.0&oauth_token=xxx&
oauth_nonce=xxx&o...
Edit: I decided to just convert this to a normal web page, as I only need to provide one integer parameter and retrieve a string.
I'll leave the question open if anyone has a good answer.
I have a web service that I want to call, but because this must be called from a plugin to another system, an application config file with all the ...
I am reading from a .NET 2.0 web service using Silverlight 2.0. The web service requests time out after 30 seconds, which is OK for most queries but occasionally I get a timeout. How do I extend the timeout to one minute?
I tried this but it makes no difference.
SilverSearchSoapClient client = new SilverSearchSoapClient();
clie...
I have developed a web service which accepts the login credentials from the XML message passed to it. I have concerns over this method as the developer who consumes the service can easily share the login credentials and my service can be called from some other application that uses the same credentials.
Is there any way that I can issue ...
Hi there,
Is it possible to use CXF with Tomcat and without Spring?
...
I have a Base64 binary string that is part of an XML document that is sent to us by a 3rd party supplier, I would like to be able to save it back to its original file format (jpg).
Using the accepted answer from this question "saving a base64 string to disk as a binary using php" I can save the string to a jpg with little effort, so I k...
I need to produce a web service that looks to the client side like a file system. I will need the client to be a able to:
load files
save files
access meta data about files
use username/password
The reason I don't want to just host static content is that:
some of the content will be virtual.
some of the meta data will be non standa...
I have a window application, it calls a web service to get information. One of the functionalities of the window application is to go to a web page. In this web page, it’s looking for cookies on the client machine, and logs them in if the cookies is valid.
What I was trying to do is to create the same cookie on a web service call. ...
The contract name 'IMyService' could not be found in the list of contracts implemented by the service 'MyService'.. ---> System.InvalidOperationException: The contract name 'IMyService' could not be found in the list of contracts implemented by the service 'MyService'.
This is driving me crazy. I have a WCF web service that works on my ...