The examples everywhere show how to do Kerberos Token Profile 1.1 via WCF, however it uses Message security. In fact, the WCF implementation defaults to sign+encrypt. I have a requirement of using SSL, and instead using KTP for authentication and signing, and NOT encrypting.
If I change the mode to TransportWithMessageCredential, it no ...
I have been searching high and low on Google and finding very little information on using Web services with MS Access 2007. I'm sure this is possible somehow but I can't find any relevant information.
Any ideas?
...
I'm building a browser-compatible InfoPath 2007 form which uses the UserProfileService Web Service hosted on a MOSS2007 Team Site as a secondary data connection.
I'm having no problems pulling all of the standard properties out of the User Profile (Name, Manager, etc.), but does anybody know of a way that I can access the 'Direct Repor...
Hi,
I have a mobile application that calls a webservice, but I am getting the error "Unable to read data from the transport connection" when calling the webservice.
Note that when using a wi-fi connection, it works just fine!
Also connection to the internet with the mobile device is good - can access the asmx page of the webservice.
A...
What is the best way to configure Intersystems Cache 2008.2 so that the Web Service interface could be utilized to export a table consisting of the process information?
...
I have a WCF service (.NET 4) hosted in IIS. My service contract has one method with:
[FaultContract(typeof(string))]
My service implementation for that method validates input parameters and may throw an exception like this:
if (string.IsNullOrWhiteSpace(siteName)) { throw new FaultException("siteName is required."); }
The consumer...
I am retrieving a byte array of a pictureStream from a .net webservice. the JSON byte array response looks like this:
[137, 80, 78, 372, 617 more...]
I am trying to convert this byte array and draw it into an HTML canvas like this
var context = document.getElementById('boxcover').getContext('2d');
context.putImageData(movies.PictureS...
Hey everyone
I'm trying to import a Java axis web service into C# to be used in my application; however, it is giving me the following error: Attempted to write schema for bad QName
Any idea what this could be? I've imported schema before no problem, but this one won't budge.
Also, it's important to note that whenever I click the lin...
I'm planning a project which will consist of a Windows Server Application programmed in .Net/C# and Clients programmed in Silverlight/C#, Windows Forms/C# and a MacClient programmed in Cocoa. My Question is, which Webservice technology will be the best for the communication between the Clients and the Server and is the easiest to program...
I have a Silverlight 4 user control that calls a WCF service residing within an ASP.NET 4 web application.
Anonymous access to the webservice is enabled. clientaccesspolicy.xml is in place and downloads successfully. Navigating to FieldITDbService.svc on the server correctly pulls up the service metadata.
However, when I try to view t...
Hi all,
I have a web service that executes a task that may take hours to finish (asynchronously)
I would like to share the status of that task by all the clients that connects to the server (I'm using a web application for this)
For example, the first client that calls the page http://localhost/process.aspx
will instantiate the web se...
Hi
I'm looking for a code to implement a Web Service with Qt (server side)
If you have any information I will appreciate
Regards
...
Can Flash consume web services that embed WS-* such as WS-Security?
The services are actually WCF services with .NET using WsHttpBinding... I need the security features of WS.
...
Hello,
i'm developing a NuSoap WebService to be consumed from a Flash app: everything runs fine but, when returning a response in XML, i receive a lot of non-useful (for the client) attributes like xsi:type="xsd:string" xsi:type="xsd:int" for every node.
I know that they are necessary for SOAP stuff, but i'm asking if there is a way to ...
It generates URL with http code, how do I change it to local file so that later
web services could be packed to jar and this jar will be used as library.
...
Is there a way of adding paramaters to a web service call dynamically.
something like
Dim ws as new localhost.MyWebservice
ws.HelloWorld.Parmaters.Add(Paramater1)
...
Hello Comrades,
I've faced with a problem of sending complex requests with GroovyWS.
This is sample request generated by soapUI:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:dex="http://www.temp.com/com/dex"
>
<soapenv:Header/>
<soapenv:Body>
<dex:executeRequest>
<!--Optional:--...
In a web application, we have session to store the authentication. But let say I am developing a native application with web service, for example, the Facebook app. How can I check the session in the native app? Thank you.
...
does anybody knows how to retrieve the http status in gSoap?
I have "HTTP/1.1 202 ACCEPTED..." and I want to print the 202 somehow.
...
Hi,
I have a question on sending XML as string in a Webservice. One of our providers has developed a webservice that we should use. Their webservice is basically just a transport mechanism for their own request/response messages, e.g. class MyRequest is serialized to an XML string using JAXB passed to a setRequest method in their webser...