SOAP web services from AS3, without Flex?
What's the best library/package/class out there for calling SOAP web services from ActionScript 3, without using the Flex framework? ...
What's the best library/package/class out there for calling SOAP web services from ActionScript 3, without using the Flex framework? ...
Looking at the specifications for DLNA, most of the metadata communication appears to be soap based. However I can't find anything like a WSDL for any of the various services. Instead there is some sort of service description language that looks like this: <scpd> <serviceStateTable> <stateVariable> <Optional /> <name...
I am learning how to consume .net web services. I am using 4.7 JDE in Eclipse, testing in the Curve (8520) simulator 4.6.1.272. I generated the stubs using Sun Java Wireless Toolkit 2.5. One of the services requires a complex type in the SOAP header (not in the SOAP body). Is it possible to do that using the stubs created by the toolk...
We have built a webservice for a client that uses AutoCAD. They have a macro that runs in AutoCAD that builds a SOAP request. But they have not figured out how to actually send() the soap request to us. So the XML is all proper and ready to go, they just need to send it. Anybody out there familiar enough with AutoLISP to know how to se...
Basically, I'm looking to create a simple music playlist platform but in the form of webpages. Users create playlist, add songs to it, and other users can view these playlists. But the website must use SOAP to send and retrieve data. How is this possible? Is this possible? ...
This may not be an appropriate question, but I'm not sure how else to research this. We have a client who uses PHP to connect to our .NET web service on a third party web host. They have been complaining about intermittent connection issues. On our end we have tested the service and it works, no problems. It's an extremely simple servi...
We have a WCF service and I use wsHttpBinding with transport security and custom authentication. I recently discovered that secure sessions are on by default (see this SO question). I'm surprised that such a feature is on by default. I thought that by default I'd get the simplest configuration and that additional features would be on ...
So, I'm working on integrating Fedex's Address Validation into a site I'm working on. Fedex web services are SOAP-based, so we're in the magical land of WSDLs here. I'm not fluent with web services yet, so bear with me. One can only consume the Address Validation service at a production level; I've got my production credentials situated...
I have get data through wsdl but i am getting data but i can't use it . is there any way to get proper data ? Due to spam protection mechanism i can't post source to SOF. ...
I am trying to create a webservice using the PHP Soap extension and I am having problems with the .wsdl. Is there an easy way to generate 2.0 wsdl's? Where is a good site (or book) that I can look to in order to determine how to build the WSDL? I have no problem getting my soap client to retrieve soap messages from other web services so ...
I have a problem verifying a SOAP message timestamp and body. Before starting to write any code I'm trying to verify it by myself, these are the steps I followed to verify the timestamp: 1) Extract the timestamp tag, add any used namespace and write it to a file: <u:Timestamp u:Id="uuid-cd1febd3-a76a-4148-8a3e-367aee62293d-1" xmlns:u=...
I'm trying to consume a hello world AXIS2 SOAP web service using a PHP client. The Java class is written in Netbeans and the AXIS2 aar file is generated using the Netbeans AXIS2 plugin. You've all seen it before but here's the java class: public class SOAPHello { public String sayHello(String username) { return "Hello,...
I have a WCF service reference: http://.../Service.svc(?WSDL) and I have an XML file containing a compliant SOAP envelope <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body> <MyXML> ... Now, I would like to send this raw data directly to the service (and receive the response) ...
Does anyone know how to log all request and responses with the builtin SoapClient in PHP? I could in fact manually log everything with SoapClient::__getLastRequest() and SoapClient::__getLastResponse() But we have that much soap requests in our system that i'm looking other possibilities. Note: i'm using wsdl mode so using a method that...
I need some advice on which library is the best choice when it comes to creating SOAP servers (and eventually SOAP clients) in PHP. I know there is built-in functions for this, but is that really the best way to go about it? Also, if you could attach some arguments as to why a certain library/method is the better, i'd be much delighted...
I'm trying to build a C# service in .NET 3.5 that supports both SOAP - and shows the WSDL - and REST. The SOAP service and WSDL generation was easy enough to do using the ServiceHost and a BasicHttpBinding classes. Got that working and the client was happy. Because the SOAP calls all used simple parameters, the client developers reque...
Hello, I am a big noob to start off. I typically use SOAPsonar to get a WSDL and then fill out the XML and then POST it Now I want to be able to use Python to take an XML file and POST it to the same URL that I would use in SOAPSonar - Basically I want to do the same thing I do in SOAPSonar but, using Python. I sure could use some help...
I am trying to Execute the below services using System.Web.Client and I passed the SAOP message in this format. but when I say Upload String it gives me error Error: Exception calling "UploadString" with "2" argument(s): "The remote server returned an error: (500) Internal Server Error." At :line:28 char:46 + (new-object System.Net.WebC...
Hi Folks, I've just finished an online service for shortening URLs (in php5 with Zend Framework); you can enter an URL and you get an short URL (like tinyurl and such sites). I'm thinking about the API for developers - at the moment you can send URLs with SOAP to the service, but I am not sure if this is a good solution. What is the be...
I was looking at XML-RPC for a project. And correct me if I'm wrong, but it seems like XML-RPC has no XML datatype. Are you supposed to pass as a string? or something else? Am I missing something? Looks like this was though of with SOAP. ...