com.hashmapinc.tempus.witsml.client.WMLS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of witsml-client Show documentation
Show all versions of witsml-client Show documentation
This library assists in querying a WITSML server for 1.3.1.1 data or 1.4.1.1 data
package com.hashmapinc.tempus.witsml.client;
import javax.xml.rpc.Service;
import javax.xml.rpc.ServiceException;
import java.net.URL;
public interface WMLS extends Service {
public String getStoreSoapPortAddress();
public StoreSoapPort_PortType getStoreSoapPort() throws ServiceException;
public StoreSoapPort_PortType getStoreSoapPort(URL portAddress) throws ServiceException;
}