Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7884111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T04:42:40+00:00 2026-06-03T04:42:40+00:00

Is this possible to somehow expose JAX-WS web service as spring bean? I need

  • 0

Is this possible to somehow expose JAX-WS web service as spring bean? I need to set some objects into my implementation class, but I want to do this using spring.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T04:42:42+00:00Added an answer on June 3, 2026 at 4:42 am

    You need to use SpringBeanAutowiringSupport and Autowired annotation to inject the object from spring. Create an endpoint class which will work like real web service but calls to real implementation methods goes throught your web service interface which is injected from spring.

    For e.g:

    @WebService(targetNamespace = "http://my.ws/MyWs",
            portName = "MyWsService",
            serviceName = "MyWs",
            endpointInterface = "my.ws.MyWsService",
            wsdlLocation = "WEB-INF/wsdl/MyWs.wsdl")
    public class MyWsEndpoint extends SpringBeanAutowiringSupport implements MyWsService {
    
        @Autowired
        private MyWsService proxy;
    
        public void myMethod() {
            proxy.myMethod();
        }
    
    }
    

    Your JAX-WS enpoint configuration should look like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <endpoints xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime" version="2.0">
        <endpoint
                name="MyWsService"
                implementation="my.ws.MyWsEndpoint"
                url-pattern="/services/MyWsService"/>
    </endpoints>
    

    Define real implementation class in spring but remember that both: your endpoint class and implementation class must implement your web service interface.

    <bean id="myWsImpl" class="my.ws.MyWsImpl"/>
    

    And thats it, now you can use spring in your JAX-WS web service.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is this possible somehow to generate a GUID in C#, that mostly corresponds to
Is it possible to somehow do this without taking out the @? It does
Is this possible? Situation is that I want to store some XML in my
Is this possible somehow? @Name(geolocationService) public interface GeolocationService { @Query(SELECT g FROM Geolocation geolocation
Is it possible to deserialize an NSString of JSON into objects via RestKit? I
Is this possible somehow? I mean for my own bundle? Thank you Misha p.s.
Is it possible somehow to achieve this behavior in C#: public interface IReadOnly {
is this possible somehow? I would like to redirect to different pages depending on
is this possible somehow? Following scenario: statelesse local EJB with name A singleton startup
Is this possible? I am creating a single base factory function to drive factories

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.