wsdl

ASP.NET VB -- How to consume web service with WSDL file?

Hi all --- have been given a URL to a WSDL, a piece of it is here..not sure if this is a pertinent piece or not. I know how to add the web reference and import the namespace in Visual Studio 2005. Questions...how do I pass my values to it? How do I encode for binary-64? I have the methodname (GETP)...not sure how to invoke it as a func...

Service Generated from WSDL Returns Different WSDL

I have generated a WCF service interface from a delivered WSDL schema, this interface have then been implemented in one of my WCF services without any problems. [ServiceBehavior(Name = "HL7Service", Namespace = "urn:hl7-org:v3")] [ServiceContract(Namespace = "urn:hl7-org:v3", Name = "HL7Service", SessionMode = SessionMode.Allowed)] publ...

my wcf services only show directory listing and no wsdl

I have a few wcf services created a number of ways. all of them only display the directory listing when i browse to them. (I fixed the part about authentication) Also I have very nice mex settings for all of them as well. it seems to me that there should be a file in the service location to browse to? its especially annoying that I ...

Generate webservice from wsdl

This is maybe a really simple question, but I couldn't locate an answer: For a client I need to HOST a webservice. The client has sent me a wsdl file that the webservice should 'implement'. How do I go about that? I've generated any number of client-rpoxies but this is the other way around. I can use both ASP.NET 2.0 webservices or Wind...

WCF and IIS 6 - WSDL is not exposed

Hello, I have developed an ASP.NET application that includes a WCF service. This service needs to be consumed by third party applications. This service has worked fine while testing in my development environment. My development environment is using IIS 7.0 on Window 7 RC 1. However, I cannot use the service once it is in my staging / pr...

simple wsdl python

how to write simple wsdl in python ? ...

Python SOAP document handling

I've been trying to use suds for Python to call a SOAP WSDL. I just need to call the service programmatically and write the output XML document. However suds automatically parses this data into it's own pythonic data format. I've been looking through the examples and the documentation, but I can't seem to find a way to return the XML doc...

Difference between Apache CXF and Axis

What are the advantages of using Apache CXF over Apache Axis and vice versa? ...

In IIS hosted WCF services, how to disable address translation?

When I publish my ASP.NET WCF service, the WSDL uses the machine name instead of the domain name. How to prevent this? Example: <wsdl:import namespace="http://ListenerService" location="http://MACHINE_NAME/ListenerService/service.svc?wsdl=wsdl0"/&gt; <soap:address location="http://MACHINE_NAME/ListenerService/service.svc"/&gt; ...

Whats wrong with the following JIRA Jelly + Soap Script?

anyone knows what wrong with the following Jira, Jelly + Soap script? Assume the WSDL file is correct, since it works with soap directly. <JiraJelly xmlns:jira="jelly:com.atlassian.jira.jelly.enterprise.JiraTagLib" xmlns:core="jelly:core" xmlns:soap="jelly:soap"> <core:new var="endpointvar" className="java.lang.String"> <core:a...

WCF service with dual methods - one for structured results and one for raw XML results. Is there a better way?

I'm designing a WCF web service method that can return results either as a raw XML string, or as a structure, depending on the client's preference. A simple approach is to have two separate methods: MyStructure GetData(); string GetDataAsXML(); This should work fine, but given that the wire representation in both cases will be the s...

Adding schemas from WSDL to XmlSchemaSet

Guys, I have a WSDL laying at http://blabalba/bla/myWsdl.wsdl, the WSDL contains one schema that import two schema from schemaLocation="Schema/1.xsd" and schemaLocation="Schema1/2.xsd" (physically those two lays in blabalba/bla/Schema and blabalba/bla/Schema1). Using some web utilities I have able to upload the WSDL metadata content int...

Namespace Prefixes in Wsdl (.net)

Namespace prefixes in my wsdl are automatically generated: s1:, s2:, etc, how can i put a specific prefix for my namespaces? Can't find it anywhere... Do i have to override the xml serialization and add them by hand (how do i do that in .net webservices?) (i mean in .net2.0 asmx, the guys who are going to use this webservice say they...

WSDL Object model

I'm using the WSDL object model (WOM) along with XSOM for a project of mine. The WOM gives me a way to drill down and look at messages and the message types which are element declarations. However, I am unable to find a way to parse the simple and complex types. The APIs are tricky. There seems to be some kind of a connection between WOM...

How to call a web service with no wsdl in .net

I have to connect to a third party web service that provides no wsdl nor asmx. The url of the service is just http://server/service.soap I have read this article about raw services calls, but I'm not sure if this is what I'm looking for. Also, I've asked for wsdl files, but being told that there are none (and there won't be). I'm usi...

How can I describe a web service in plain english?

Hi, I'm looking to document a few simple web services to a (mostly) non-technical audience. The rub there is "mostly". Some are very technical, and I want the form of the documentation to be correct and not to alienate them. I can't claim to be hugely technical myself, but what I want to get across is the content of the data that is e...

Adobe Flex Builder WSDL classes autogenerator generates weird files

Adobe Flex Builder WSDL classes autogenerator generates wierd files. For example: http://ws.cdyne.com/WeatherWS/Weather.asmx?wsdl After importing it generates these files: ArrayOfForecast.as ArrayOfWeatherDescription.as ArrayOfWeatherDescription0.as BaseWeather.as BaseWeatherSchema.as Forecast.as ForecastReturn.as ForecastReturn0.as...

How to accept a collection of a base type in WCF

The Setup I have a WCF service that exposes a base type (e.g. Animal) as well as a few derived types (e.g. Lion, Tiger, and Bear). Another type (e.g. Zoo) includes a property that is a collection of the base type. The base type is concrete, not abstract, so it is perfectly acceptable for the collection to contain instances of the base t...

gsoap class generation problem

I am trying to generate gsoap classes for the JIRA issue tracking system WSDL. I run these commands to generate the required classes: $ wsdl2h -o JIRASoap.h <url to wsdl> $ soapcpp2 -C JIRASoap.h The soapcpp2 command gives the following output, but does not indicate how to fix it. There were errors: 3 syntax errors 1 semantic error 2...

How to use a WSDL

I need to consume a Web Service. They send me the WSDL file. What should I do to add it to my website and start using it as the proxy. ( If I put it on a Virtual Directory it is been discovered, but does it grants me the connection with the real web service?) ...