Registry / networking / jaxws-api

jaxws-api

JSON →
library2.3.1javamavenunverified

JAX-WS (JSR 224) API provides the standard Java API for XML-based web services.

<dependency> <groupId>javax.xml.ws</groupId> <artifactId>jaxws-api</artifactId> <version>2.3.1</version> </dependency>
INSTALL
IMPORT
SIG · JAXWS-API
J
jaxws-api
networkingjavav2.3.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Service
✓ javax.xml.ws.Service

Creates a JAX-WS Service instance from a WSDL URL.

import javax.xml.ws.Service; import javax.xml.namespace.QName; import java.net.URL; public class Quickstart { public static void main(String[] args) throws Exception { URL wsdlURL = new URL("http://example.com/service?wsdl"); QName serviceName = new QName("http://example.com/", "MyService"); Service service = Service.create(wsdlURL, serviceName); System.out.println("Service created: " + service); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.3.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
12
Resources
jaxws-api — mvn dependency:get jaxws-api · libregistry