I know it is possible to create a jaxws:endpoint without the SEI, so long as you have the wdslURL, serviceName & endpointName, address.
I see lots of examples about wsdl2java, and then using that class value as the serviceClass attr. And lots of Java based examples, I am more interested in spring based XML.
For example, here is what I...
I'm importing a WSDL as a service definition (inbound to my service), and for whatever reason the client is formatting the request such that WCF cannot deserialize it without the proxy classes having MessageContract decorations.
I've gotten it to work this way by adding the MessageContract attribute on the main container class, which ...
I'm using the Zend Framework's Soap Server module and I'm looking to return a complex type that looks like the below, but for the life of me, I can't figure out how to do this...
Desired Output
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP...
I have a WSDL which I need to trigger some commands from. I need to do this as part of a Maven Plugin (Mojo)
I'm a relative newbie to SOAP so what I want to know is this:
1) Is this possible? Can the SOAP calls be run from a Maven Plugin or does it require a container or something else?
2) If so, what tools should I use to do this? I...
Hi,
I want to create service that contains two binding and two contracts.
The binding are:
1. wsDualHttpBinding
2. wsHttpBinding
I get two interfaces:
public interface IBasicSite
public interface ISiteGateway:IBasicSite
The difference between IBasicSite and ISiteGateway is only that ISiteGateway support also Callback's that called I...
hello,
i have a problem working with PHP SoapClient with a WS (WSDL) that contains https.
my PHP version is 5.2.5.
before you ask, yes, i am using PHP's Soap and openSSL extentions.
the URL i am trying to reach is:
https://id3check.gb.co.uk/gbportalinternational/aspx/id3check_1b.asmx?WSDL
the code i am using:
$url = "https://id3check....
Hello:
I am trying to create Web Services from the Top-Down approach. I downloaded Eclipse and am using the WSDL gui editor in it to build my WSDL files.
I am splitting up my Services based on "modules". The Types I am adding to the WSDLs all need to reference common stuff, such as PersonEntity, AddressEntity, States enumeration (simpl...
I have a web service exposed by an external entity that is developed in java.
My client is a .Net client.
I am unable to create the proxy class for this webservice using WSDL tool it errors out when it tries to read the schema file referenced in the WSDL file as
<wsdl:types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...
I am working on a SOAP Client in C#, consuming a service I've exposed in PHP using NuSoap. My web service is working great from a consumption standpoint, but the trouble I'm running into has to do with passing a complex type as an argument.
Working with a complex type returned by a method is no trouble, but I can't seem to figure out h...
I'm learning about web services and most of the resources I've been reading talk about registering your web service once it's ready for use by others. Is registering a web service required to use the service?
For example, let's say I have a web application on a company intranet and I create another web service app that retrieves some so...
Hi
I'm trying to use EasyWSDL but I can't read any file from the filesystem.
WSDLReader reader = WSDLFactory.newInstance().newWSDLReader();
Description desc = reader.read(???????);
Any ideas?
...
I have the following service definition (incomplete, but demonstrates the error.
Visual Studio tells me (translated from german) "In this Schema Namespace http://schemas.xmlsoap.org/wsdl/ is not available" at the line where I define OffertXML.
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="TestOffertverwaltung"
targetNa...
I have a wsdl file with me and want to generate a sample XML file for request/response of an API. Using soapUI I managed to generate the file but it has question marks inside, like this: <cin:returnURL>?</cin:returnURL>. What I want is like this; <cin:returnURL>---returnURL---</cin:returnURL>.
Is there any way to to do this using soapU...
I have a XSD in local , and I need to import the same into a WSDL. I have couple of other xsds too which are already on the production namespace.
Now I have little clue as how to make this XSD that is only in my local to be made available in my WSDL file to test the webservice using soapUI.
So questions, what will be the namespace and...
Hello,
I have a customer that supplied me with a WSDL and asked that we stand up a SOAP server based on that WSDL. We are a PHP shop, so we defined a basic soap server as follows:
class pipelineApplicationHandler {
public function AuthenticationHeader ($Username, $Password) {
// Do stuff here related to authentic...
Hi all,
I used WCF to create a restful web service in .NET, by means of a .svc file. The web application automatically produces a WSDL file. AFAIK, the WADL is more natural for a restul web service.
How could I create a restful service in .NET (preferably with wcf) that produces a WADL description?
Note An answer like "RTFM" is acce...
After developing a web service on Eclipse, based on Axis1 and JBoss, I deploy it and test it with soapUI. It works perfectly.
Eclipse generates a wsdl file which I use in Eclipse's new web service client wizard to create an application client that consumes the web service. It generates the client code perfectly, but when I invoke some o...
Type not found: '(ArrayOfint, http://schemas.microsoft.com/2003/10/Serialization/Arrays, )'
is what suds resolver raises.
In ...2003/10/Serialization/Arrays ArrayOfInt is defined, so I guess linux' case sensitivity is the problem.
Any Idea how I can get around that?
from suds.client import Client
c = Client("https://developer-api.aff...
I want to make a call to a webservice of which I only have the WSDL file. I'll list the important bits from the WSDL file with context sensitive names replaced by general ones:
The function I want to call:
<wsdl:operation name="myFunction">
<wsdl:input message="ns:myFunctionRequest" wsaw:Action="urn:myFunction"/>
<wsdl:output mes...
How do I simply understand wsdl's? Seems very complicated. How is it related to soap? Where does rest fit in all these? Please give examples.
...