[jboss-jira] [JBoss JIRA] Assigned: (JBAS-9394) Web Services no longer deployed with latest checkout

jaikiran pai (JIRA) jira-events at lists.jboss.org
Thu Jun 2 05:57:01 EDT 2011


     [ https://issues.jboss.org/browse/JBAS-9394?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

jaikiran pai reassigned JBAS-9394:
----------------------------------

    Assignee: Richard Opalka  (was: jaikiran pai)


Looking at the code, this one looks specific to JBoss WS. The JBoss WS code has a check for leaving out classes that are type Servlet from the endpoint detection:

getEndpointClass in http://anonsvn.jboss.org/repos/jbossas/trunk/webservices/src/main/java/org/jboss/webservices/integration/util/ASHelper.java

{code:java}
final Class<?> endpointClass = loader.loadClass(endpointClassName);
            final boolean notServlet = !Servlet.class.isAssignableFrom(endpointClass);

            if (notServlet)
            {
               return endpointClass;
            }

{code}

I don't know why that check is there. Assigning this to Richard, since he might know more about this.


> Web Services no longer deployed with latest checkout
> ----------------------------------------------------
>
>                 Key: JBAS-9394
>                 URL: https://issues.jboss.org/browse/JBAS-9394
>             Project: Legacy JBoss Application Server 6 
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>    Affects Versions: 6.1.0
>         Environment: Oracle JDK 1.6.0_25 on Solaris SPARC 10
>            Reporter: Frank Langelage
>            Assignee: Richard Opalka
>         Attachments: Jira-JBAS-9394.tar
>
>
> Web Services are no longer recognized and deployed with the latest subversion checkout ob JBoss AS 6.1.0.
> The older checkout of JBoss AS 6.0.1 running the same app publishes the web services as expected.
> Some of the latest checkins broke this. Don't know which one exactly.
> I created a test project which creates an ear file containing one war file which contains two webservices.
> The first one uses a web.xml file to define the servlet. This service is recognized an deployed.
> The second one uses the WebServlet annotation like our app does successfully on 6.0.1. This is not recognized anymore.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jboss-jira mailing list