wsdl

WSDL Perl handlers in Apache broken unless "touch"ed

The Short Version I have a mod_perl handler in Apache that uses generated code (from wsdl2perl) to make SOAP calls to a web service. One of the methods from the WSDL is failing to create valid SOAP XML unless I "touch" the generated perl module after Apache has been started. Other methods from the WSDL are fine. A standalone perl script ...

Multiple Operations with soapAction="" in a WCF Service Contract?

I need to create a service that will be "called back" by a third party. As a result, I need to conform to their WSDL. Their WSDL has all of the operations defined with soapAction="", so my service needs to do the same. Unfortunately, I'm getting the error: The operations A and B have the same action (). Every operation must h...

How can I add a web reference without the web service URL?

Basically, I have a regenerated wrapper code for a web service that I need to use; when I run this, it works perfectly and receives the data from web service. How can I add an already regenerated code from a .wsdl file to another Visual Studio solution as a web service? ...

WCF .svc Accessible Over HTTP But Accessing WSDL Causes "Connection Was Reset"

I have a WCF service which is hosted on IIS6 on a Win2003 SP2 machine. The WCF service is hosting correctly and is visible over HTTP giving the usual "To test this service, you will need to create a client and use it to call the service" message. However accessing the .svc?WSDL link causes the connection to be reset. The server itself ...

Does wsimport tool from JAX-WS allows to create RESTful class clients?

Im using wsimport but I cant find why or how to create classes for RESTful web services/ports defined in WSDL. Does wsimport tool from JAX-WS allows to create RESTful class clients? ...

How do you modify the SOAP header for a .NET web service proxy generated by VS2008?

Is there a way to modify the header (say to insert a security / authentication element) for Service References that are generated by Visual Studio 2008? How would you do it? ...

Unable to load WSDL file error in flex while making a call to a web service.

I am trying to call a webservice from my Flex application and this is the code: <mx:WebService id="myWebService" wsdl="http://172.16.111.103:22222/cics/services/PRESENT1?wsdl"&gt; <mx:operation name="PRESENT1Operation" result="resultHandler(event)" fault="faultHandler(event)"> </mx:operation> </mx:We...

WCF host in windows service: cannot get wsdl

Hi guys! i've a windows service that hosts a WCF service with basicHTTPBinding. In test everything goes right, when i deploy the win service on a Window Server 2003, service hosts correctly wcf, I print out endpoints in tracing, they're correct, but when i ask for wsdl using the address that service exposed (i.e. http://mybaseaddress/?w...

How to handle SOAP XMLResponse c#

Hi I want to handle xmlresponse from standard c# soap (or other c# soap) and replace within some argument, because PEAR PHP Soap was incorrected sending WSDL file (wsld without typed definitions). How i can do this?? ...

What tool can I use to merge wsdl and xsd file?

I have two files, one with webservice description (wsdl), second with data structures used in webservice (xsd). I have nothing more, webservice doesn't work yet. I need to merge them into one, because Delphi 7 WSDL Importer doesn't handle included xsd files to well. Where can I find tool to do it? EDIT I copied xsd content into <types>...

Spring-ws client from WSDL

I have created a POX client (generated from jaxb2 from XSD) using spring-ws, but am confused as to how to create a SOAP client (generated from a WSDL). I am using wsimport to generate stubs, but it seems like this goes 1 step too far for use with spring-ws. The stub actually handles the transport, where as with the POX client, spring h...

Is there a good wsdl and xsd editor?

I've found the wsdl editor in Eclipse to be bug-ridden. Netbeans dropped their wsdl plugin sometime ago. Is there a good editor that allows you to create and edit wsdl and xsd files? I highly prefer an editor that works on different platforms (that leaves out XML Spy for me). I'm going to check out Oxygen. It's not clear if it creat...

Implementing a SOAP 1.2 server with Rails 3

SOAP? Why would you use that? I am using Ruby Enterprise Edition and Rails 3 to write my web application. The application uses Ustream's Watershed white label broadcasting services to provide live streaming for my users. Unfortunately I have hit a snag during development. Watershed allows an application to provide it's own authentic...

Make Visual Studios "Add Service Reference" Feature use an existing Class

When I add a service reference to my Visual Studio 2010 C# project, a new class for one of the types defined in the WSDL will be generated. A de-facto equivalent definition of that type already exists in our solution in a different assembly. When adding the SoapTypeAttribute to the existing class and replacing the references to the gene...

Help with SOAP request using PHP

I'm having a SOAP related problem in PHP. I'm trying to create arbitrary SOAP request using Nusoap_client class. The complete request including headers should look like the example below. Ofcourse the placeholders (string) should be replaced with actual values. POST /services/RecipeCouponAPI11.asmx HTTP/1.1 Host: example.com Content-Typ...

Amazon EC2 and jbossws

Hi - I've deployed a webservice to a Jboss instance running on Amazon EC2. The webservice works fine locally, but when I deploy on EC2, and go to the /jbossws/services page the Endpoint Address for the webservice is the private DNS of the ec2 instance (domU-X-X-X-X etc...), not the public dns (which I would like it to be). I've tried ...

How to implement WSDL service in PHP ?

We are working on a website which will provide the client access to a WSDL service via SOAP mechanism. How do i implement a WSDL service in PHP ? What is Apache Axis2 and Apache CXF ? Does it suit my requirements ? Will it work on PHP or do i have to code it in Java ? ...

WSDL for other protocols different than SOAP?

From wikipedia: The Web Services Description Language (WSDL, pronounced 'wiz-dəl') is an XML-based language that provides a model for describing Web services. But in most cases, I found that WSDL is used in conjunction with SOAP. but as far as I know, if the WSDL is a language to describe web services. there should be possibl...

Change Address/Port of WSDL EndPointAddress at runtime?

So I currently have 2 WSDLs added as Service References in my solution. They look like this in my app.config file (I removed the "bindings" field, because it's uninteresting): <system.serviceModel> <client> <endpoint address="http://localhost:8080/query-service/jse" binding="basicHttpBinding" bindingConfiguration="QueryBinding" co...

JAX-WS with JAXB tutorial

I'm getting started in developing web services using JAX-WS. I'm trying to implement classes I can send between my service and client using JAXB, but having trouble getting it to work. I've tried following the example at this site but cannot seem to get it to work. After following the instructions, the test page that's displayed doesn't...