Upcomming jbossws-2.0.1.GA
by Thomas Diesler
Team,
could you please review your 2.0.1 related jira issues and give an
indication when you will be done.
Code freeze is Mon,20-Aug-2007
If you expect a delay, please raise your hand early enough so we can
rearrange bits.
The timing of this release is critical.
cheers
-thomas
--
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thomas Diesler
Web Service Lead
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
17 years, 5 months
[Fwd: [jbossws-commits] JBossWS SVN: r4283 - stack/native/branches/native-2.0/ant-import-tests.]
by Darran Lofthouse
For any commits to either the 2.0 or trunk branches if the issue is
related to a Jira issue can we please make sure that the commit message
contains the Jira issue number.
This is how the commits are linked to Jira issues and is how we identify
the code changes if we have a need to port the fix to an alternative
version or to identify which changes may have broken something else.
--
Regards,
Darran Lofthouse.
Senior Software Maintenance Engineer
JBoss, a division of Red Hat
-------- Forwarded Message --------
> From: jbossws-commits(a)lists.jboss.org
> Reply-To: jbossws-commits(a)lists.jboss.org
> To: jbossws-commits(a)lists.jboss.org
> Subject: [jbossws-commits] JBossWS SVN: r4283 -
> stack/native/branches/native-2.0/ant-import-tests.
> Date: Thu, 09 Aug 2007 06:04:15 -0400
>
> Author: richard_opalka
> Date: 2007-08-09 06:04:14 -0400 (Thu, 09 Aug 2007)
> New Revision: 4283
>
> Modified:
> stack/native/branches/native-2.0/ant-import-tests/build-jars-jaxws.xml
> Log:
> adding new test war creation
>
> Modified: stack/native/branches/native-2.0/ant-import-tests/build-jars-jaxws.xml
> ===================================================================
> --- stack/native/branches/native-2.0/ant-import-tests/build-jars-jaxws.xml 2007-08-09 10:02:28 UTC (rev 4282)
> +++ stack/native/branches/native-2.0/ant-import-tests/build-jars-jaxws.xml 2007-08-09 10:04:14 UTC (rev 4283)
> @@ -341,7 +341,15 @@
> <webinf dir="${tests.output.dir}/resources/jaxws/jbws1702/WEB-INF"/>
> </war>
>
> - <!-- jaxws namespace -->
> + <!-- jaxws-jbws1733 -->
> + <war warfile="${tests.output.dir}/libs/jaxws-jbws1733.war" webxml="${tests.output.dir}/resources/jaxws/jbws1733/WEB-INF/web.xml">
> + <classes dir="${tests.output.dir}/classes">
> + <include name="org/jboss/test/ws/jaxws/jbws1733/JBWS1733.class"/>
> + <include name="org/jboss/test/ws/jaxws/jbws1733/JBWS1733Impl.class"/>
> + </classes>
> + </war>
> +
> + <!-- jaxws namespace -->
> <war warfile="${tests.output.dir}/libs/jaxws-namespace.war" webxml="${tests.output.dir}/resources/jaxws/namespace/WEB-INF/web.xml">
> <classes dir="${tests.output.dir}/classes">
> <include name="org/jboss/test/ws/jaxws/namespace/EndpointBean.class"/>
>
> _______________________________________________
> jbossws-commits mailing list
> jbossws-commits(a)lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/jbossws-commits
17 years, 5 months
[Design of JBoss Web Services] - dump message logging based on Mbean
by maeste
Looking at some issues about redirection of message logging made by cxf or metro, I thought that these feature can be ignored in favor of a more general message dumping. With this approach we would have an unique configuration (independent from the stack) to enable message dumping, we would have message dumping also for native stack, and moreover we can made something more sophisticated than simple dumping (for example start and stopping dynamically, or saving somewhere messages for a time frame to analyze it).
My idea is to make an MBean doing the job (receiving servlet request response, logging messages, eventually making something more with them) invoked by RequestHandler. Of course RequestHandler have to become an abstract class (now it is an interface) and some refactoring is needed.
Moreover users have a single configuration to change to dump messages not depending from the stack used, and the behaviour can be changed runtime from jmx-console.
Any opinion about?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4072382#4072382
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4072382
17 years, 5 months
Re: Fixes for JBossWS 2.0.1
by Thomas Diesler
Yes, legacy should should only contain tags - no active branches
On Wed, 2007-08-08 at 15:10 +0100, Darran Lofthouse wrote:
> What is the correct place now to commit fixes for JBossWS 2.0.1.GA?
>
> Is it here: -
>
> https://svn.jboss.org/repos/jbossws/stack/native/branches/native-2.0
>
> Is the legacy branch for JBossWS 2.0 now dead?
>
--
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thomas Diesler
Web Service Lead
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
17 years, 5 months
Re: Some Generic Questions
by Thomas Diesler
Hi Richard,
when you go to http://jira.jboss.org/jira/browse/JBWS
You should see a link to 'Show my open issues sorted by version'
When you click on that you should see your issues scheduled for
jbossws-2.0.1 (1-Sep-2008) namely
Verify BindingProvider.SESSION_MAINTAIN_PROPERTY
http://jira.jboss.org/jira/browse/JBWS-1733
When you're ready please 'Start progress' on the issue so others know
that this is being worked on.
For almost every issue we create a test case that is dedicated to that
issue. The final comment in jira should show a successful run of the
test case.
If a test case has been created but is expected to fail, we disable the
test like this
testFoo()
{
if (true)
{
System.out.println("FIXME: [JBWS-JBWS1733] Verify
BindingProvider.SESSION_MAINTAIN_PROPERTY");
return;
}
}
In that way we can easily see regression. Hudson reports the FIXMEs in
the test output.
Please work on branch
https://svn.jboss.org/repos/jbossws/stack/native/branches/jbossws-2.0
When you're done, changes should be merged to
https://svn.jboss.org/repos/jbossws/stack/native/trunk
cheers
-thomas
On Tue, 2007-08-07 at 06:34 -0400, ropalka(a)redhat.com wrote:
> OK Thomas, when you'll be ready with the jbossws feature wishlist, send
> it to me
> ;-)
>
> Richard
>
> Quoting Thomas Diesler <thomas.diesler(a)jboss.com>:
>
> > You are already using your RH account - thats good.
> >
> > On Tue, 2007-08-07 at 06:08 -0400, ropalka(a)redhat.com wrote:
> >> Hi Thomas and Heiko,
> >>
> >> it was great to meet you both in the Munich last Wednesday ;-)
> >>
> >> OK, what about the work. I've got just two questions:
> >>
> >> Is there a separate VPN access for JBoss guys or it is meant to be RH one?
> >
> > There is just one.
> >
> >>
> >> I didn't get any mail laying out the jbossws project objectives for
> >> this quarter
> >> on yesterday. Was it sent already?
> >
> > No, I am still working on it.
> >
> >>
> >> PS: I'm still working on my setup stuff, when I'll be finished I'll
> >> contact you
> >> immediately via Skype. (I'm having a problem with Skype installation
> >> and I hope
> >> I'll fix it in few minutes/hours)
> >
> > ok
> >
> >>
> >> Richard
> >>
> >> ---
> >> Hi Richard,
> >>
> >> a warm welcome again to the team. It was good to see you in Munich last
> >> week.
> >>
> >> Lets first get you setup properly. Most of the below tasks will be
> >> handled by it-ops(a)jboss.org. Please get in touch with them and create
> >> tickets as needed.
> >>
> >> #1 redhat/jboss email account
> >> #2 vpn access
> >> #3 jira account using the above email
> >> #4 forum account using the above email
> >> #5 svn access using the above account
> >> #6 subscribe to the jbossws lists on
> >> https://lists.jboss.org/mailman/listinfo
> >>
> >> #7 the QA environment
> >>
> >> http://jbws.dyndns.org:8180/hudson/
> >>
> >> username: hudson
> >> password: deadbeefjboss
> >>
> >> #8 salesforce account https://www.salesforce.com/login.jsp
> >>
> >> Later today, you will receive a mail laying out the jbossws project
> >> objectives for this quarter and some recommendations of tasks that you
> >> could pickup.
> >>
> >> cheers
> >> -thomas
> >>
> >>
> > --
> > xxxxxxxxxxxxxxxxxxxxxxxxxxxx
> > Thomas Diesler
> > Web Service Lead
> > JBoss, a division of Red Hat
> > xxxxxxxxxxxxxxxxxxxxxxxxxxxx
> >
> >
> >
>
>
>
>
>
--
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thomas Diesler
Web Service Lead
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
17 years, 5 months