Web Service Description Language (WSDL) is an XML based, human- and machine-readable language used to describe a web service. It describes the available web service methods, the message request and response structures, the possible faults, and the communication and security requirements. This tag ...
5
votes
0answers
268 views
Perl SOAP::WSDL accessing HTTPS Unathorized error
I'm trying to generate a Perl library to connect to a WebService. This webservice is in an HTTPS server and my user has access to it.
I've executed wsdl2perl.pl several times, with different ...
4
votes
0answers
547 views
Can't get Perl web service running using WSDL::Generator
I have been trying for two weeks to create a web service in Perl (with WSDL::Generator) and call it with a client written in Perl.
Now I try the examples provided with the library specializes in ...
3
votes
0answers
108 views
How does CXF translate WSDL's localhost to actual server URL?
All WSDLs I have seen so far, use localhost to describe the services address. e.g.:
<wsdl:service name="SQLService">
<wsdl:port name="SQLServiceSoap" binding="tns:SQLServiceSoap">
...
3
votes
0answers
253 views
svcutil.exe NOT generating specified fields for minOccurs=0
Using svcutil.exe to generate code from wsdl's + xsd's on files from the local file system. Previously used wsdl.exe. When a field is optional (i.e. has minOccurs="0"), wsdl.exe used to generate a ...
3
votes
0answers
122 views
Reference to own wsdl url
I'm building a web service that's supposed to register on another server by sending its wsdl URL to that server.
I built a very basic web service in Netbeans,
@WebService
public class RegisterTest{
...
3
votes
0answers
1k views
IOS calling WCF service
I am trying to call a WCF service from IOS Xcode. I am generating the code from WSDL using SuDz-C. The code is successfully generated as far as the Exposed classes and methods are concerned. But, the ...
3
votes
0answers
802 views
How to create Nullable fields/variables from WSDL instead of extra fields/variables
I am using wsdl.exe to convert a WSDL file and Types.xsd file into a C# file. The wsdl file specifies optional variables (minOccurs="0" maxOccurs="1"), and the generated .NET type handles this by ...
3
votes
0answers
842 views
Issue generating correct proxy objects from WSDL
I'm having an issue with the WSDL generator in .NET. It is missing out on complex types in one specific method.
Response from web service
<?xml version="1.0" encoding="UTF-8"?>
...
2
votes
0answers
26 views
JAX-WS web-service defined by WSDL with abstract global elements
Here is a WSDL containing abstract global element named paramName:
<wsdl:definitions name="AdapterSessionManagerService" targetNamespace="http://companyname.org/" ...
2
votes
0answers
106 views
How to enter credentials (Authorize object) in a web service call?
I followed the advice provided here and it worked like a charm. Right now, I'm connecting to the server and calling a method named GetFunctionalityTest. The only input to it is a string, which can be ...
2
votes
0answers
244 views
Setting minOccurs=0 in a WSDL using “Specified” pattern not working
OK, obviously I'm doing something wrong here. I'm trying to create a webservice and I want "dateShipped" to be optional which means in the WSDL, I want minOccurs="0"
[Serializable]
[XmlType]
public ...
2
votes
0answers
247 views
Encountering unauthorized authentication scheme from web service
I have a .WSDL file from our client company, for which I need to use to call a web service. Their system is SAP (SAP PI). My application is a C# .NET 3.5 client developed in VS 2008. I added a ...
2
votes
0answers
141 views
Returning null as a SOAP response
I have the following service implemented:
@WebService
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.WRAPPED,
style = SOAPBinding.Style.DOCUMENT,
use = ...
2
votes
0answers
57 views
How to force websphere v7.0 to generate inlineschema?
I am using RAD 8 and websphere 7 for developing web applications. I am working on a web service and I found that by default websphere generates XSD for input and output complex types and adds import ...
2
votes
0answers
283 views
JAXB - change package - working with embedding JAXB binding declaration but not with external file
I would like to change the package name of all the classes that are in a schema. Unfortunately I cannot use the element of jaxws-maven-plugin as I have got a WSDL and more schemas in it.
...
2
votes
0answers
184 views
Android ksoap web service issue getting pullParserExcepstion
I am consuming a .net web service using ksoap2 but getting the following Exception:
org.xmlpull.v1.XmlPullParserException: unexpected type (position:END_DOCUMENT null@1:1 in ...
2
votes
0answers
69 views
wsdl doc has missing wsdl:port element when svcutil executed from a Process object in a windows app
For reasons unnecessary to go into on this thread, I'm trying to create a wrapper for svcutil, which will then standardise the wsdl & xsd docs created to point at certain addresses. However, one ...
2
votes
0answers
79 views
How can I generate a valid WCF proxy for a service that has a period in the message types?
I am interfacing with a web service I have no control over and it has messages (input/output) and actions that contain periods (.)
When svcutil generates the proxy, it includes:
...
2
votes
0answers
138 views
xsd restrictions not reflected in WSDL
The generated WSDL at deploy time from my JAX-WS service does not reflect the restrictions specified in the associated XMLSchema .xsd file, although the generated Java class files do. I am using xjc ...
2
votes
0answers
50 views
SmartGWT loading WSDL
I am trying to call a web service from my SmartGWT program by coding on server side.
However the XMLTools.LoadWSDL(WSDLurl,WSDLLoadCallback) is giving me an error for the following code:
CODE :
...
2
votes
0answers
113 views
SharePoint services WSDL specification
What is the reason why hitting, for example, http:///_vti_bin/UserGroup.asmx?wsdl gives me a not full wsdl specification (if compared with ...
2
votes
0answers
143 views
Remove port number in wsdl
I need to remove the port number in the wsdl file of my WCF service.
I use the IWsdlExportExtension and IEndpointBehavior in order to do that but it always ended up with the original port number.
...
2
votes
0answers
107 views
svcutil.exe cannot handle imports?
I'm on a project in which a .NET frontend communicates with a Java backend. We use wdsl's + xsd's to describe the interface between front and backend. I'm on the frontend side in .NET 4.0. We used to ...
2
votes
0answers
228 views
SOAP Faults - Integrating .NET WCF and Java WSImport
I'm looking for help/advice on defining SOAP faults the correct way when creating a web service with .NET WCF and consuming it with JAX-WS (wsimport).
Let's assume my service looks like this:
...
2
votes
0answers
435 views
c# proxy class for test and production web service
I use the generated webservice proxy classes from visual studio 2010 to access a web service from my .net 2.0 client.
This works all fine, but my problem is, that the webservice has a wsdl for the ...
2
votes
0answers
235 views
Authentication of WSDL Webservices using P12 certificate in ios
Heading ##I am working on WSDL webservices. Client has provided certificate p12 for authentication of these webservice.
I have implemented following code for the single certificate which i have added ...
2
votes
0answers
355 views
How to get wsdl input and output names to appear
I have a WCF web service project (VB.NET 3.5), and the WSDL it generates does not have the input and output names, like this:
<wsdl:operation name="getListing">
<soap:operation ...
2
votes
0answers
160 views
Using the any schema element in wsdl with PHP SoapServer
I can't seem to get the XSD element to work in my wsdl using PHP SoapServer. According to everything I have read and seeing how a couple of other companies implement "loose typed" wsdls. The ...
2
votes
0answers
174 views
Type Hinting for array in class method generated by WSDL2PHP?
I am working with class code generated from the WSDL into PHP. The piece that is hanging me up is the way the class methods were written so that simple arrays appear to be required to be objects of ...
2
votes
0answers
265 views
JAXB2 parsing WSDL containing soap encoded type
I have a problem with jaxb2 in my spring WS.
the Spring ws has to parse a wsdl file (no xsd) containing soap encoded types (Array).What maven plugin can i use to be able to marshall the wsdl file with ...
2
votes
0answers
148 views
Access SOAP from behind proxy
I have a Ruby script that runs behind a proxy and needs to access a SOAP API. I have exported the "http_proxy" Unix environment variable but it doesn't help. My proxy server doesn't require ...
2
votes
0answers
371 views
With custom WSDL and a referenced schema, why isn't the return Xml from my SOAP method serialized from the objects correctly?
After reading this article:
Improve Web Service Interoperability with XML Message Design
I decided to have a go at importing our existing message design schema into the WSDL for our new SOAP ...
2
votes
0answers
180 views
How can I tell Axis WSDL2Java to take WSDLs from a JAR?
I have a maven project in which I am using the Codehaus Axis Tools plugin to run WSDL2Java.
Unfortunately, I do not have direct control of my WSDLs - they are provided to me in a JAR which is in my ...
2
votes
0answers
450 views
SOAP response - child element namespace
I have problem with namespace of child elements in SOAP response.
Here is a SOAP request:
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
...
2
votes
0answers
246 views
how to return custom types with php soap server?
I'm in with PHP SoapServer working in non-wsdl mode. I have the server set up to handle the data and return a response using setClass(). I tried returning an associative array, but that translates ...
2
votes
0answers
195 views
WCF Single Service Implementation - Multiple Behaviours, Funny WSDL
I have a simple IIS hosted service that I need to expose both through a wsHttpBinding endpoint without throttling and a basicHttpBinding endpoint with throttling.
I configure my services as follows:
...
2
votes
0answers
193 views
Autogenerate Stub code in C++ to access a webservice?
I'm chancing my arm with this question.
I'm looking for a tool which will avoid doing a lot of coding by autogenerating much of the code to access a webservice.
I'm trying to help out someone who ...
2
votes
0answers
301 views
Unbound Prefix failure with wsdl2perl.pl
I have a WSDL that is automatically generated by a .NET WCF service. I am trying to generate a Perl client from the WSDL using wsdl2perl.pl. It gets through several of the interfaces and objects ...
2
votes
0answers
533 views
How to send existing SOAP Request to Existing WSDL
I have a problem, I have a SOAP request envelope like this:
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ...
2
votes
0answers
168 views
How to hide type inheritance in .NET XML web services WSDL
I have a web service, it exposes method M(B). Here B: A (B inherits from A).
I need to hide this inheritance from the service consumers. The consumers don't need to know about A, although B will have ...
2
votes
0answers
542 views
WSDL file for Apache CXF with “any xml” body
Background: I'm developing web-service which communicates over WS-Management protocol. The original WSDL from here http://schemas.xmlsoap.org/ws/2005/06/management/wsman.wsdl looks like:
...
2
votes
0answers
719 views
wsdl array of objects
I wrote wsdl file, then modified skeleton and tried to test. Something wrong with array of songs objects.
<xsd:complexType name="ArrayOfSongs">
<xsd:sequence>
...
2
votes
0answers
762 views
Problems importing WSDL using WCF
I'm trying with WCF to import WSDL for a web service provided by one of my company's partners. The web service is written in Java. I get this error:
Warning: Fault named FooException in operation ...
2
votes
0answers
270 views
Is it possible to control elements in WSDL minOccurs maxOccurs?
is it possible writing WCF, that will expose my properties with controllable maxOccurs?
<xs:element name="param" type="string" minOccurs="1" maxOccurs="10" />
What I have only found, it's ...
2
votes
0answers
718 views
How to exclude the import of schemas in WSDL
I want to remove the import of schema in the WSDL instead want the schema elements to be present in the WSDL.
Im using Weblogic 10.3 Web Servics JAXWS where as i have tried this
<jwsc ...
2
votes
0answers
335 views
How to get rid of cos-nonambig schema error while generating java source from wsdl with cxf 2.2.12
Hi I have a problem while generating source code from this wsdl https://mollusk.atollon.com//scheduler.wsdl . My question is:
is it possible to get rid of the cos-nonambig error and generate source ...
2
votes
0answers
288 views
replacing an attribute at WSDL file from a Deployment plan XML
I have two files WSDL file and Deployment plan file. I am trying to replace an attribute at the WSDL file from the Deployment plan file.
WSDL file
<wsdl:definitions
name="Project"
...
2
votes
0answers
755 views
Name attribute on the <wsdl:definitions> tag
I am writing a WCF service and need to control the value of the name atttribute on the wsdl:definitions tag in the generated WSDL document. The ServiceBehavior and the ServiceContract attributes do ...
2
votes
0answers
239 views
Better solution for WCF service(s) that talk to 3rd party Java services?
I am in a scenario where I have to integrate with a 3rd party system here at my job that exposes Java-based web services. I can parse the service WSDL definitions and generate proxy classes and ...
2
votes
0answers
164 views
Integers in TextNodes w/ Python minidom
I am working on an API using SOAP and WSDL. The WSDL expects integers to come through. I am fairly new to ALL of this, and constructing XML in Python. I have chosen to use minidom to create my SOAP ...