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"?
...
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...
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...
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?
...
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 ...
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...
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...
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.
...
Hello,
Can anyone point me a way to access WSDL webservices from a GWT client? Is that even possible?
Thanks!
...
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...
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...
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...
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' ...
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 ...
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...
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...
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
...
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...
Could u give me some basics similarities between java and wsdl?
...
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
...