wsdl

Reading Web service, I have a WSDL

I am normally used to using JSON/REST. I have been given access to a web service with WSDL file that I need to use to read data. I have no idea where to start What is the quickest easiest way to get JAVA code up and running that can query this web "service"? ...

Deploying a web service to a server

I have a web service currently running in Glassfish through Netbeans. Netbeans automatically created a wsdl for this, at Logging listening at address at http://localhost:8080/LogWebService/LoggingService where LogWebService is the project name and LoggingService is the class name. I want to move the service to an external server so I c...

Dynamic invocation with Axis / WSIF and complex types from WSDL

Hi To avoid repeating a lot, I will link to this post which is exactly my problem. So what I'm trying to do is to invoke a web service with complex input types where I just have raw XML in a string as input. Obviously the XML can be parsed into xml nodes etc. but I don't have the custom complex classes which would make it easy of cours...

Does Spring 3.0 provides a service definition file?

I'm wondering about Spring 3.0 whether it provides an automatically generated service definition page after I defined services. With SOAP we have a WSDL file which contains WHAT, HOW and WHERE we can call a service. Is that possible with Spring 3.0 or not? ...

getting Uncaught SoapFault exception when using soap client

Hello, PHP Version: 5.3.3 I'm using the SOAP extension to pull data from a web api. Below you can see my connection details. When it gets to line 3 I get an error: Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://www.global1.autotask.net/atservices/1.2/atws.wsdl' : failed to load ...

Web service WSDL and discovery is not working correctly.

Background: We have a remote web server that has our web site and web service on it. We have access to this service and the site, but not the server directly as it is managed by another company. The Problem: Our web services are operational and work fine, but we cannot connect to the web service because the WSDL specifies the soap addre...

Generate PHP code from WSDL (for service replacement)

We have few Web Services witch now are handled by an external application, and we plan to replace them as an new own implementation. Is there some tool/class witch will generate stock php interface and structures 100% compatible with those WSDL's we have now? I'll have to re-implement this wsdl interface, and i have to be sure, that in...

How to export metadata from a running WCF service.

Hello, I wish to send the service metadata of a running WCF service to a third party developer, so he'll be able to create a proxy on his end. At the moment the service is accessible from my local machine only. ...

GWT and WebServices (wsdl)

Hello, Can anyone point me a way to access WSDL webservices from a GWT client? Is that even possible? Thanks! ...

WSDL, Enums and C#: It's still murky...

I tried to look this up online, but all the WSDL examples seem to not really explain if I should mark things as basetype string in the WSDL or int... Basically, I'm trying to make my WSDL so that I can represent an Enumeration. I have a C# Enum in mind already that I want to match it up to... public enum MyEnum { Item1 = 0, Ite...

Dynamic WSDL Implementation in C#

I am relatively new to web services in .Net, so I apologize if this is a newbie sort of question. I have found numerous resources on how to implement web services in a .Net project, but all of them seem to involve static definition of the exposed methods. While this may be suitable for some applications, it does not fit the bill for wha...

Soap message response body modification help

I've been playing around with web services using jbossws-cxf. I don't think the issue is with the implementation I'm using but instead how the code is generated. Here is my pojo with the annotations for a web service. package com.matt.test.ws; import javax.jws.WebMethod; import javax.jws.WebResult; import javax.jws.WebService; import j...

NuSOAP PHP web service and .NET WebService reference - problem

Hello I have created a PHP SOAP WebService with NuSOAP. I add a WebReference from C# application. I enter the URL of the WSDL, I can see methods in the wizard but no proxy code is generated. When I do update web reference, I get error message box: The custom tool 'MSDiscoCodeGenerator' failed. Unable to import binding 'XXXSoapBinding' ...

Why doesn't the /reference option to svcutil.exe work?

I'm attempting to use svcutil.exe to generate -only- the service contracts (interfaces) from a set of .wsdl files. When I do this (from an http-hosted wsdl), it picks up the included schemas and generates all the code for them. Great. What I would REALLY like to do, however, is to use a set of classes already generated from the schema ...

.net 4 WCF Endpoint in generated metadata (WSDL) points to node rather than virtual host hosted on load balanced (NLBS) IIS6

This is real simple. I have a wcf service (nothing fancy, just New Project-> WCF Service Application), that runs great in Visual Studio. When I deploy it to an clustered IIS6 environment, it works mostly. I can send a request and get a response. However, the generated metadata consistently refers to a particular node in the cluster...

Examples of ASP.Net MVC 2 - WCF/WSDL - using IoC methodology

We here at my company are just about to get going on ASP.Net MVC 2 for our UI to interface a backend totally SOA with WCF/WSDL. I have looked at various books examples of how to totally make the applicalion loosely coupled from the Domain perspective using the IoC containers e.g. Unity or Castle (looks to be the way to go !) ...BUT Are t...

i cannot get the data in wsdl xml. The wsdl is written in coldfusion and i use php

Hi, when a wsdl is written in coldfusion, is it posible to use the wsdl in php? i just wondering, why theres no data available. Thanks ...

How to create SOAP messages ? How to convert a soap message to an object?

1- How do i create soap messages to communicate with a web service? Let's say my client needs to send a request to a web service, Do i generate the FULL soap string and then send it to the web service, including header, body, envelop etc? 2- Let's say the web service sends me back a SOAP response, the response contains information about...

similarites between JAVA and WSDL?

Could u give me some basics similarities between java and wsdl? ...

Can I use SVCUTIL to create a Web Service reference for .NET 2.0 (i.e. NOT for a WCF Client)

Hi We have a WCF service exposing a basicHTTPBinding endpoint but need to consume it from a .NET 2.0 application. We have the WSDL files available. Can I use SVCUTIL to generate a web service reference compatable with .NET 2.0? Thanks ...