Hey guys, I'm really new to this :icon_confused: I've managed to setup a Web Service and a Client to access the service within Eclipse. However, I want to access a Web Service that already exists. From what I understand, that service must have a WSDL (Web Services Description Language) for it to be used by Eclipse. The Web Service that I want to interact with does not have a WSDL or at the very least it doesn't have a .wsdl file. Um I'm hoping that's possible or perhaps I've confused the application I'm trying to access for a Web Service?
I'm using a pre-defined platform that can process SOAP requests. Just to confirm the following is a SOAP request hey?
<?xml version="1.0" encoding="UTF-8"?>
<GetObservation service="SOS" version="0.0.31"
xmlns="http://www.opengeospatial.net/sos"
xmlns:gml="http://www.opengis.net/gml"
xmlns:ogc="http://www.opengis.net/ogc"
xmlns:ows="http://www.opengeospatial.net/ows"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:swe="http://www.opengis.net/swe">
<offering>TAG_READING</offering>
<eventTime>
<ogc:During>
<gml:TimePeriod>
<gml:beginPosition>2007-12-10T08:00:00</gml:beginPosition>
<gml:endPosition>2007-12-13T12:00:00</gml:endPosition>
</gml:TimePeriod>
</ogc:During>
</eventTime>
<procedure>urn:ogc:def:procedure:wavertrend_rx201_sensory_web</procedure>
<observedProperty>urn:ogc:def:phenomenon:OGC:1.0.30:temperature</observedProperty>
<featureOfInterest>
<ObjectID>COR01</ObjectID>
</featureOfInterest>
<resultFormat>text/xml;subtype="OM"</resultFormat>
</GetObservation>
I want to be able to send requests via a Java program and interpret these results within the program. Can anyone please tell me how this is done? I'd need the appropriate .jar files hey? I'm not sure what they are or if they even come with Eclipse. The version of Eclipse that I have is the JaveEE one. Please advise :icon_neutral: