java - Spring WS Client - How to create mapping POJO for WSDLs without using Axis -
i'm creating spring ws client. have huge wsdl third-party company. provide set of classes maps wsdl via axis' wsdl2java. don't want use axis or dependencies them.
since web service client, i'm free choose framework. problem how generate mapping class wsdl without using axis's wsdl2java. stuck manipulating pure xml? take note i'm using spring ws.
edit:
is true if service provider has built service axis 1, you're stuck making client that's based on axis 1? read answer jax-ws client axis service. thought web services supposed decoupled or @ least independent platform created, allowing have .net based web service accessed java based client , vice versa?
if want use spring-ws, best bet use wsimport tool ships java 6 (or use jax-ws ri, if you're on java5). generate jax-ws stubs web service. included in these stubs standard jaxb bindings wsdl's schema, , can used spring-ws (wsimport generate other service stubs won't need spring-ws).
Comments
Post a Comment