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 ...
0
votes
1answer
9 views
WSConsume command not working
I want to consume a wsdl for which i am making use of wsconsume command of JBOSS in command prompt. But i am getting an error 'wsconsume is not recognized as an internal or expternal command, operable ...
0
votes
0answers
34 views
XML to PHP SoapClient - Multidimensional Array?
I'm trying to use PHP SoapClient to post the XML request below
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="https://NewHotel/Web/Services/">
...
0
votes
0answers
16 views
WSDL for QImage(QT) in C++
I want to serialize a Qt Image (QImage) in C++ gsoap web service. The web service part where i am confused looks like code below. I want to pass a QImage with other data via web service. i dont want ...
0
votes
0answers
55 views
WCF service generated from WSDL not able to use same contract
I have wsdl which was generatede by JAX-WS RI of a working web service, but i don't have access to the service itself.
Now what i would like to do is, to create my own WCF service out of the wsdl ...
0
votes
0answers
15 views
maven - install is creating xsd files. How to understand this?
I have a big project that has multiple modules. It has a Webservice module too. When I run mvn clean install, in the target folder, I see a lot of xsd files created by the install command. I have gone ...
0
votes
1answer
22 views
How can I find what services are offered in a WSDL file?
I am a SOAP/WebServices newbie, and have been given a WSDL file that has a bunch of web services that I can connect to.
What is the easiest way to parse this and show me what services are offered, ...
0
votes
1answer
19 views
Proxy for simpleType not generated
I create a service reference in VS by right clicking "Service References" and entering a URL that contains the wsdl.
It kind of works but the property AddRobinsonEntryRequest.subscriberEmails is ...
0
votes
0answers
18 views
Soap header with call optons by ajax javascript call?
I am consuming WS of soap client with header first time,so please help me
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
37 views
Generate JAX-WS client abstract interface from wsdl
All, Forgive me I am not familiar with the CXF and JAX-WS, I want to know if I can generate abstract interface code based on the WSDL so that I can implement a web service client based on the ...
0
votes
0answers
7 views
Cant load first three combo Infocasa?
I have get error on response like:
Error: the XML response that was returned from the server is invalid. Received: http://soap.infocasa.com/clientservice/clientservice.asmx?WSDL<?xml version="1.0" ...
0
votes
1answer
138 views
JAX-WS wsgen created wsdl can't be read by wsimport or eclipse web services explorer?
I've created a simple HelloWorldWS project to run on Tomcat 7 with Metro 2.2.
I have installed the metro libraries using the ant script on my local tomcat server.
I have also added the libraries to an ...
0
votes
1answer
37 views
suds send None attribute
I am trying to call a service that requires Null(None) attributes but suds removes them. I need to send..
<ns1:Body>
<ns0:QueryIntersection>
<ns0:intersectingRoad>
...
0
votes
1answer
46 views
Authentication using PHP to consume wsdl
I'm having trouble connecting to a wsdl service through PHP. The trouble seems to come in authentication. Here is my code so far:
$soapURL = "http://myurl?wsdl";
$soapLogin = Array(
...
0
votes
1answer
41 views
Axis2 service and primitive parameters (issue with C# client)
I deployed "hello world" service (Tomcat + Axis2):
public class ServerLogic {
public int add(int x, int y) {
return x + y;
}
}
But Axis2 generated WSDL like this:
<xs:element ...
0
votes
2answers
42 views
how to get value soap response in PHP?
Please help me guys... I'm struggling with this..
Problem
How to get FirstName value from this ...
in PHP
GetReportResponse Object
(
[GetReportResult] => MBPeopleSearchRs_Type Object
(
...
0
votes
1answer
25 views
how to get value from wsdl returned data in PHP?
Below is the data I'm getting from wsdl response... I need to get the separate value for example how to get the firstname from this array...Please anyone help me...
GetReportResponse Object ( ...
0
votes
0answers
28 views
designate a default namespace for an element
I'm building a service to accept the following message. Note how InformationExchangePackage has no namespace prefix, but takes the default xmlns="http://www.something.com/dir/1.0.9". I can not figure ...
-2
votes
0answers
28 views
Relation between WSDL and SOAP in web services [closed]
Please tell me any one am i correct or not.
WSDL means Web Service Description Language in XML format.It covers accepts of web Service like what is message format,communication protocol .....
SOAP ...
0
votes
1answer
26 views
BasicHttpBinding recommended settings
I have a memory leak (or v.high memory usage) in one of my processes, and I believe it may be due to incorrectly/poorly settings in the BasicHttpBinding it uses when constructing SOAP clients.
In ...
0
votes
0answers
55 views
Can Wsdl.exe handle soap encoded arrays
I have a WSDL that contains an array definition based on soap encoding (http://schemas.xmlsoap.org/soap/encoding/). The array contains another complex type and the WSDL looks something like that (Its ...
0
votes
0answers
13 views
Generating Loosely Typed wsdl in Siebel for dispatching the input to corresponding service
I have got a requirement to create a parent wsdl which direct to corresponding wsdl based on the request. This has to be handled because any change we make, it affects all other layers and the ...
0
votes
0answers
41 views
Change maxRequestLength in dynamic web service invoker
I created a dynamic web service invoker for ASMX Web Services ONLY which works fine, but now I want to add extra functionality that allows to specify the maximum request size of the web service ...
0
votes
0answers
18 views
Backward compatibility in ASMX to WCF migration
I need to upgrade our web services to use WCF instead of ASMX. Is it possible to have the backward compatibility to use back ASMX service?
I'm having two proxy projects. one is generated by ASMX ...
0
votes
0answers
42 views
WCF WSDL-link and metadata exchange not working
Currently myself and an admin have a problem getting the webservice(WCF) running.
Our Setup: The customer sends a request via https(certificate) to a loadbalancer which sends the request via https to ...
0
votes
0answers
51 views
Parsing Soap Fault Exception with no namespace
I used Apache CXF to create java Classes using a given WSDL. Below is the incomplete WSDL (I only included the things which I'm about to ask)
<definitions
xmlns="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
1answer
41 views
i have this wsdl to call web service through soap usinng wsdl but this wsdl is showing some validation error
definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns="urn:oasis:names:tc:DSML:2:0:core"
...
0
votes
0answers
116 views
Unexpected wrapper element when using CXF generated client
I've generated a client for a webservice using CXF's wsdl2java.
THe client connects OK, but throws an expection complaining that the response found doesn't match the expected response.
May 22, 2013 ...
1
vote
1answer
120 views
Getting value from SOAP response in php
I am getting a SOAP response for a SOAP call perfectly using SOAP ui but when I call the same in php, I am not able to traverse to the desired element(CreditId in this case), which I want.
The ...
1
vote
0answers
37 views
Web Service does not contain operation - it does, but it starts with an upper case letter
I am trying to write a SOAP Client for KashFlow which has this WSDL:
https://securedwebapp.com/api/service.asmx
It uses soapenc, so I can't use JAXB (and wsimport) as I'd prefer, and so need to use ...
0
votes
2answers
97 views
SAXParseException: The prefix “xsi” for attribute “xsi:schemaLocation” is not bound
I'm getting the error when I try to call WebService (HP-Service Manager, if it's going to help) from the class deployed to WebSphere 7.0. The same code functions when I call it from JUnit code...
The ...
0
votes
1answer
22 views
given wsdl file, convert into example
Is there any open tools/websites that if you been given a soap(wsdl) file, it can generate you some examples?
I am new to wsdl, even I've been given the api file, I don't really know how to ...
0
votes
0answers
30 views
Adding simpleContent using nusoap
My problem seems to be very simple, but I just can't find any solution.
I use nusoap for webservice, and I need to produce a structure like this (from php arrray):
<ns0:measurementUnitList>
...
1
vote
0answers
44 views
Perl SOAP::WSDL support SOAP 1.2?
I am using SOAP::WSDL to parse a WSDL file to a web service client, but in the WSDL file the SOAP version is SOAP 1.2 and SOAP::WSDL crashes when meeting such a SOAP version.
When I change the SOAP ...
0
votes
0answers
11 views
issue in schemaLocation in WSDL
I have a wsdl https://my.server.com/P2/P1/HelloWorlWebService?wsdl , in that the schema location is as follows
xsd:schema
xsd:import namespace="http://webservices.server.com/" ...
0
votes
0answers
32 views
“Error parsing the WSDL file:” Web service plugin in Wordpress
i've been looking around stackoverflow if anybody had already asked this question, but not find one. I am new at using Wordpress and using THIS PLUGIN GUIDE to activate the plugin to use over Web ...
0
votes
1answer
51 views
Is it still not recommded to use implementation of java collection and map in web services [closed]
I'm deciding on whether to use implementation of java collection and map or stick to arrays in webservices. Postings on Google all seem to suggest sticking to array but those postings were all from ...
0
votes
2answers
130 views
[Oracle Service Bus]How to access the WSDL URL of a OSB proxy service in web browser
Does anybody knows how to achieve above ? For example, in tomcat,axis2 if a service is deployed I can access the WSDL of it like localhost:8080/services/foo?wsdl . How to achieve the same in OSB ? Any ...
0
votes
1answer
48 views
Read SOAP contents by given WSDL description
I've been given a service API of wsdl, I've never done it and not sure what I should do with it.
The file is a description of what they gonna send us:
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
0answers
11 views
WSDL File location in eclipse
I am new to web services concepts and applications. I would like to take a look at the wsdl file, but I don't know where it is located. Please help!
0
votes
0answers
49 views
Changing type of webparam
So my question is basically the following:
I've got a xsd that I need to use as reference to create a server with a webservice. The xsd that I've got as reference is more or less the following:
...
0
votes
0answers
11 views
Tool for WSDL modeling?
In order to develop webservices by using the Top-Down method, I need to choose a tool for the WSDL modeling. I prefer a graphical method like Papyrus for UML. Could you give me some suggestions?
0
votes
0answers
29 views
Circular imports in wsdl - java class generation
There are two wsdls :
svcwsdl which has port type and service definitions
svcwsdl1 which has the binding definitions
svcwsdl refers svcwsdl1 for binding type and svcwsdl1 refers svcwsdl for port ...
1
vote
2answers
534 views
JSON, REST, SOAP, WSDL, and SOA: How do they all link together
Currently doing some exams and I'm struggling through some concepts. These have all been 'mentioned' in my notes really but I didn't really understand how they all linked together. As far as my ...
2
votes
1answer
98 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/" ...
0
votes
0answers
35 views
install wsdl.exe on windows server without install visual studio
I want to get wsdl file and proxy class of service and add them to visual studio in my local machine.
I can access to web service just from one server machine and don't have permission on it to ...
0
votes
2answers
66 views
WSDL SOAP web service integraion in iOS
Currently i am developing new iOS application which POINT to MAGENTO WSDL SOAP web service.
After lots of searching i found the LogNMagento-master library.
But still i got wrong response.
So any ...
1
vote
1answer
100 views
WSDL/XML parsing iOS objective C
I would like some help to parse this Response. I think it is WSDL and would like to check "Successfully Entered" string. Below is the code:
<soapenv:Envelope ...
1
vote
2answers
95 views
C# Web Service client that will fail if WSDL is not available or invalid
My client hosts a few web services and has ASP.NET Web pages that will demo the web service and acts as a quick check to verify that the web service is up by the client. The problem is that the WSDL ...
2
votes
1answer
126 views
TXSDateTime/TXSDecimal memory leaks in web services in Delphi XE
I'm experiencing some challenges with memory management with a TRemotable descendant class that was created by the WSDL importer in Delphi XE.
The TRemotable descendant class is declared as follows:
...
0
votes
0answers
32 views
How can I describe choice element using nusoap?
I use nusoap to generate wsdl and I'm stuck at the point trying to describe choice element (xsd:choice).
The required xsd part looks like this:
<xsd:complexType ...




