Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [glassfish-dev] [jakartaee-platform-dev] Removing Jakarta Enterprise Web Services, JSR 109 from GlassFish or not?
  • From: "Steve Millidge (Payara)" <steve.millidge@xxxxxxxxxxx>
  • Date: Tue, 12 May 2020 17:24:49 +0000
  • Accept-language: en-GB, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=payara.fish; dmarc=pass action=none header.from=payara.fish; dkim=pass header.d=payara.fish; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=Z9fPXJHb26TM54CUusD3B/3StsKKghRdKW9wLoyoyFY=; b=SwfC0l5tVNBDffzfcfF6yiPE5rezgAy1M2MqJNMsaXoKpugidqt+/exc8rMtFoMc8lsM4WGfloYWRi6Y/d2T4UeqYySO/eZCEEp0slq9zVXNzL+TFrjgZrht1z6M7vHSo94EdpyPI6XPxnNc8hkG2RbDuKDE5JeiBCNEFR6MWdplOeztVW85pnUx/0EFaWB7o0TuLP0Amaee2Kv/w7vwZPPv3/eSbm7kNGZTok0/zbWFdNplt9kZE0WdJaOBP3K7spBYDy4HawV5GKvF86bL7PgEwX1StxgEfo1voFaYR/WOODCwHLZ+TBqVtAfxPFX5gHO8IjNLMYT5G6w5tuYbHQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=cLFOd4rZncG8jfwgk+TcttHIPgSStaTTyp5K8N+GSdqYNDjxOirg/j7JqTkzmeLkXvNyaKy4oM39+dLj2HDjK2AhCePm/od3mP3rsQcrMZQgCyY1bALuWQ8Uxh+vvKKz5QhcKfmFZVbC/kVwMDKBzZcQTkfvXhc/MrNnylC5d90DKSZ+JthALfAp3qcE0qgAeIIHT5/boeIMq35esxJ5fCj7C3pDr1s/SiYak83g9CTPGU+yVXUsO+NH3rvmcnll0kf8Yhtrkr8UxJaCzKoNmdFsIrbceEJKXDjeE9UZ9jCxwGwPLrHnrJnXR6BQRj/EDudpnCN6O9zQt1fPGauQXw==
  • Delivered-to: glassfish-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/glassfish-dev>
  • List-help: <mailto:glassfish-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/glassfish-dev>, <mailto:glassfish-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/glassfish-dev>, <mailto:glassfish-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHWKHPnk6RdZBBgAESoq2MKGakVKKiksip3gAABDbA=
  • Thread-topic: [glassfish-dev] [jakartaee-platform-dev] Removing Jakarta Enterprise Web Services, JSR 109 from GlassFish or not?

OK but all Jakarta apis in jakarta namespace should be incorporated so this can probably be tracked down and removed now. EJB container has been jakarta'd

-----Original Message-----
From: glassfish-dev-bounces@xxxxxxxxxxx <glassfish-dev-bounces@xxxxxxxxxxx> On Behalf Of Lukas Jungmann
Sent: 12 May 2020 18:17
To: glassfish-dev@xxxxxxxxxxx
Subject: Re: [glassfish-dev] [jakartaee-platform-dev] Removing Jakarta Enterprise Web Services, JSR 109 from GlassFish or not?

On 5/12/20 6:57 PM, Steve Millidge (Payara) wrote:
> Not sure how we missed that one.

.... jsr109-impl (for now) requires javax.servlet[1] as well as jakarta.servlet to build to avoid having broken build. I don't recall details right now but I think there was some call from ejb container to
jsr109 which was passing some httpsession or something like that...

--lukas

[1]: 
https://github.com/eclipse-ee4j/glassfish/blob/master/appserver/webservices/jsr109-impl/pom.xml#L109

> 
> *From:*jakartaee-platform-dev-bounces@xxxxxxxxxxx
> <jakartaee-platform-dev-bounces@xxxxxxxxxxx> *On Behalf Of *arjan 
> tijms
> *Sent:* 12 May 2020 17:48
> *To:* Lukas Jungmann <lukas.jungmann@xxxxxxxxxx>
> *Cc:* glassfish developer discussions <glassfish-dev@xxxxxxxxxxx>; 
> jakartaee-platform developer discussions 
> <jakartaee-platform-dev@xxxxxxxxxxx>
> *Subject:* Re: [jakartaee-platform-dev] Removing Jakarta Enterprise 
> Web Services, JSR 109 from GlassFish or not?
> 
> Hi,
> 
> On Tue, May 12, 2020 at 5:42 PM Lukas Jungmann 
> <lukas.jungmann@xxxxxxxxxx <mailto:lukas.jungmann@xxxxxxxxxx>> wrote:
> 
>     IMHO it is less work to keep it there and update it - and I believe it
>     is already done - then remove it.
> 
> Currently jsr109-impl in GlassFish uses the javax.* packages still, so 
> with the jakarta-ized Grizzly it doesn't compile.
> 
> E.g. this one would not compile:
> 
> public class EjbWSAdapter extends ServletHandler {
> 
>      public EjbWSAdapter() {
> 
>          super(new EjbWSServletConfig(new 
> WebappContext("EjbWSAdapter")));
> 
>          this.setServletInstance(new EjbWebServiceServlet());
> 
>          try {
> 
>              this.servletInstance.init(getServletConfig());
> 
>          } catch (Exception ignored) {
> 
>          }
> 
>      }
> 
> I'll look at staging Grizzly 3.0.0-M1 and then integrate and update 
> jsr109-impl at the same time (hoping Metro will play along).
> 
> Kind regards,
> 
> Arjan
> 
> 
>     thanks,
>     --lukas
> 
>      >
>      > Kind regards,
>      > Arjan
> 
> 
> _______________________________________________
> glassfish-dev mailing list
> glassfish-dev@xxxxxxxxxxx
> To unsubscribe from this list, visit 
> https://www.eclipse.org/mailman/listinfo/glassfish-dev
> 
_______________________________________________
glassfish-dev mailing list
glassfish-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/glassfish-dev

Back to the top