I've generated a WCF proxy from a WSDL file, but now when I call the proxy methods, they return null. I've enabled message logging, and can see that the messages from the server are correctly returned.
I've checked the answer of this question, but in my case at least the name of the returned object was the same in the message and in the...
I read that this should only happen if the SOAP server is not using HTTP protocol, but in my case it is.
My WSDL is below. But instead of calling my soapActions (which are parsed correctly by suds):
<wsdl:binding name="Authentication_x0020_ServiceSoap" type="tns:Authentication_x0020_ServiceSoap">
<soap:binding transport="http://s...
Hi
Our application provides a SOAP API. Our wsdl starting lines are something like
<wsdl:definitions name='ControlDServices' ... xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' ...
This usually works OK, but a customer complained that when they try to use our SOAP API in NetBeans with the wsdl we provide they got this error:
Web S...
I'd like to build a simple test harness for the various web services consumed by my application that I can run in my staging or production environment to verify that the web services are working and see what data their web methods are returning.
Is there a way I can generate a SOAP request based on the WSDL provided by a web service at...
Many tools are available for web service designing, programming and testing, commercial and free. But what is available in the area of documentation? Are there tools which can parse a WSDL and then generate a 'human-readable' documentation in HTML (or PDF)?
...
Is there a clever way to expose WSDL from a WCF service hosted on one IIS server automatically on another server?
Thanks
...
I'm using JAX-WS api for wsdl generation.
Java-bean class is something like:
public class MyBean {
private String nullableField;
private String notNullableField;
// and here appropriate get/set/ters
}
When wsdl is generated then nullability of this fields is not specified.
Question: what (and where) necessary to specify...
Hello.
I have a web-service with method signature like this:
public RetType doIt(String description){
return null;
}
After wsdl is generated I see that (in wsdl) method doIt have argument name arg0. Is there a way in code-first approach to specify argument name to be shown in wsdl appropriately like in java class method signature?
...
Hi All,
I have .xsd file i need to convert it into wsdl,how would i do so?and is this conversion the right approach. I have request and response data in same .xsd file
...
I have a WSDL service that is working fine with .NET using HTTP POST Bindings, rather than using SOAP. The HTTP Post request returns the raw XML for the objects etc. removing all the overhead of SOAP.
I would like to use this within the iPhone. I have located the tool at wsdl2objc tool (http://code.google.com/p/wsdl2objc/) however it...
Say, I have a WebService SettingsWebService with a WebMethod AddUser(User userObject).
The User class is in the SettingsWebService solution.
When i generate a proxy for the SettingsWebService it creates a class for asmx which contains the AddUser webmethod.
It also generates a class for the User class.
The client now uses
Proxy.Add...
Hi there,
I have a web service written in C++ using gSoap. One of the methods of the webservice is
int HS__TBusinessComponentGetContents( xsd__positiveInteger pSession,
xsd__positiveInteger pComponentType,
xsd__string pPath,
xsd__string pFilter,
xsd__string pChangedAfter,
xsd__positiveInteger pFlags,
xsd__string &rResult);
Using ...
In Biztalk, I always make the root element and the typename the same as the filename (less the .xsd extension). We have an orchestration, published as WCF web service (Basic Http Binding).
When Java (RAD) pulls the WSDL and generates classes and packages, it builds a package and a class name with the same name, thus it won't compile w...
I am going back and forth with setting an element to minOccurs="0" and nillable="true".
I was reading this article and now in my WSDL I'm not sure if using both is worth it. The article gives a good example of representing arrays where you might have null values interspersed throughout, as this can't be done with just minOccurs="0". Now...
I am very new to SOAP and WSDL.
The problem:
SSL certifacte has been updated (renewed and upgraded to Extended Validation), and now vendors application is no longer able to post to databse though WSDL (certifacte error).
My test case using soapUI works flawlessly (of course generated from the WSDL hosted on the server with the new cert...
I have problem in creating web-service using cakephp .
this what i do to create this web-service .
I use NuSOAP - Web Services Toolkit for PHP for this.
I create a controller called WsController and import the library on it.
class WsController extends AppController{
var $uses = array();
function info() {
$this->layout= null;
...
I've recently been working on an ACORD P&C compliant web service and have run into some trouble with errors from wsimport saying it is unable to parse one of the xsd files.
The error message is:
[ERROR] Unable to parse "D:\projects\DICACORD\DicAcordQuoteRq.xsd" : Illegal character in opaque part at index 2: D:\projects\DICACORD\...
I apologize if if this is a bonehead question.
I've used WSDL to generate code to talk to web services, but my question is about using it to actually generate web services.
Let's say that I have a device that is going to communicate with a web service. The web service in question doesn't actually exist and is out of my control. That...
hi all, i have tested and implemented a simple web service for user login process in PHP using SOAP in my intranet its working fine,the same implement in online server when i tried to access wsdl file it downloaded instead of displaying it's content and also when using the soap client it displays wsdl parsing error.
so kindly give your ...
Hi all,
I was wondering if there is a (java?) API parsing a WSDL and returning a structure of the WSDL as well as a description of the schema.
I know a tool like wsimport can generate the stubs for a java client but I would also like to create the graphical interfaces (java swing, html...) for sending and receiving some simple requests...