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

learn more… | top users | synonyms

0
votes
2answers
19 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
11 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
8 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 ...
-1
votes
0answers
17 views

Relation between WSDL and SOAP in web services

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
17 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
9 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
7 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
23 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
9 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
18 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
19 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
17 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
9 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
45 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 ...
0
votes
0answers
23 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
34 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
12 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
28 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
28 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
9 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
12 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
49 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
37 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
23 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
7 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
29 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
9 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
16 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
427 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
55 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
16 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
32 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
58 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
59 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
66 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
23 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 ...
0
votes
0answers
15 views

Is it possible to define WSDL for a port listener?

I have a TCP-IP port listening implementation that basically receives an xml and sends an xml. Is it possible to define a wsdl for this service without altering the implementation?
1
vote
0answers
33 views

WSDL with the same operation name and input type produce incorrect client stubs?

I have a WSDL file with the same operation name and request parameter name. When I generated the client stubs using the WSDL file, the port class produces a method with void return type. Furthermore, ...
0
votes
0answers
8 views

Find out if a Secure Web Service is accessible from a machine

I have a Secure Web Service which can be accessed from any public domain. But, for a particular user, the service is unreachable, but they say the server is reachable for them. Is there any mechanism ...
0
votes
2answers
57 views

Sending XML input to WSDL using SoapClient

I have this WSDL: https://secure.softwarekey.com/solo/webservices/XmlCustomerService.asmx?WSDL I am trying to use SoapClient to send a request to the CustomerSearch method. The code I'm using is as ...
0
votes
0answers
17 views

Can wsdl2java generated files be used in an Android project?

Java files generated by wsdl2java require javax.xml.bind., javax.xml.ws., etc. that Android does not seem to support. Is there a way to remedy this?
0
votes
0answers
5 views

Ultra cart -FSI Fullfilment integration Web service Error

I am working on Ultra cart (shopping cart) - FSI (fullfilment Center) Web service integration and successfully communicated with Ultra cart Web service through WSDL service URL. But for FSI web ...
0
votes
0answers
7 views

Error when generating the WSDL / rule project

I am working on a rule project with WODM 7.5. I deploy my ruleApp project from rule designer to rule execution server, and when i want to download/print the WSDL I get this error : ...
0
votes
1answer
35 views

Example/ Tutorials to use Apache ServiceMix API's for monitoring web-service programmatically [closed]

I am new to the world of Apache ServiceMix and I need to setup a test environment in which I need to delopy a simple (SOAP) web-service and then call that web service from any external medium. I ...
0
votes
1answer
25 views

Is it possible to map element name to php class (SoapClient)

Using SoapClient, is it possible to map an element name (as opposed to a type) to a php class? In the php manual: http://www.php.net/manual/en/soapclient.soapclient.php classmap is defined thus: ...
0
votes
0answers
22 views

windows phone, wsdl function “not found” error

I am programming a little windows phone 7 application. It should consume webservices. I tested sucessfully the code in a xammp (local) environment, but if on a free webhoster I get an error ...
0
votes
1answer
96 views

Soap request using cURL and PHP

I'm trying to send a SOAP post via Curl in PHP but I always get a couldn't connect to host problem. But when i trie to use the same URL in a web based client like hurl, a got the correct response : ...
0
votes
1answer
35 views

Generation of proxy works fine in one environment but not in the other?

I have a simple Webserivce (WCF) hosted in a Windows Service(Selfhost). The declaration of the service looks like this : <service ...
0
votes
1answer
33 views

How to send files in a SOAP web service with Spring WS

I am creating my first SOAP Web Service with Spring WS by following this article http://static.springsource.org/spring-ws/sites/2.0/reference/html/tutorial.html. So far it seems to make sense and is ...
0
votes
1answer
19 views

Accessing a webservice on my localhost

I've a running WebService published on "http://localhost:8080/FreeMeteoWS/FreeMeteoWS?WSDL". I want to access this webservice from a device on the same network...what address should I put in order to ...

1 2 3 4 5 74