web-services

Possible to use Kerberos Token Profile via WCF over SSL?

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 ...

MS Access and SOAP, XMLRPC etc

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? ...

How can I access 'Direct Reports' within the UserProfileService.asmx web service?

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...

Windows Mobile Application calling a webservice

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...

Extracting Cache Process information via SOAP in 2008.2

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? ...

Handle WCF exceptions from webservice proxy

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...

Convert PictureStream to HTML5 canvas

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...

ERROR: Attempted to write schema for bad QName

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...

Looking for a Best Practice regarding Webservices between .Net and Cocoa

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...

WCF service returns HTTP 200 header and then times out without returning any content.

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...

How can I have only one instance of a Web service used for all the clients?

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...

webservice with Qt

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 ...

Consume WS-* Web Service with Flash?

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. ...

[nuSoap] How to avoid to send some attributes in webservice response ?

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 ...

How to use local wsdl file in generated service code (jax-ws)

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. ...

Web Proxy Paramaters

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) ...

GroovyWS and complex requests

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:--...

How to do authentication in a native app using web service?

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. ...

http status from gsoap header

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. ...

JAX-WS and character encoding questions

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...