<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-16915</id>
	<title>Nabble - cxf-dev</title>
	<updated>2009-12-23T08:05:36Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/cxf-dev-f16915.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/cxf-dev-f16915.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26904019</id>
	<title>Re: JAXRS - POST</title>
	<published>2009-12-23T08:05:36Z</published>
	<updated>2009-12-23T08:05:36Z</updated>
	<author>
		<name>Padmam</name>
	</author>
	<content type="html">Thanks Sergey...
&lt;br&gt;&lt;br&gt;Can you also tell me how to access this from a Client?
&lt;br&gt;I created following class and when tried to access it threw 405 exception:
&lt;br&gt;&lt;br&gt;public class Client {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /**
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;* @param args
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*/
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public static void main(String[] args) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HelloWorld helloWorld = WebClient.create(&amp;quot;&lt;a href=&quot;http://localhost:8081/SampleRestProject/helloWorld/customers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8081/SampleRestProject/helloWorld/customers&lt;/a&gt;&amp;quot;).accept(&amp;quot;application/json&amp;quot;).get(HelloWorld.class);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }	
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Padma
&lt;br&gt;&lt;br&gt;It should be @Consumes({&amp;quot;application/json&amp;quot;, &amp;quot;application/xml&amp;quot;})
&lt;br&gt;&lt;br&gt;Also, pelase make sure ContentType of the HTTP request conatins either application/json or application/xml and that it accepts
&lt;br&gt;application/json
&lt;br&gt;&lt;br&gt;&lt;br&gt;cheers, Sergey
&lt;br&gt;&lt;br&gt;&amp;gt; @Path(&amp;quot;/customers&amp;quot;)
&lt;br&gt;&amp;gt; public Customer getCustomers() {
&lt;br&gt;&amp;gt; Customer customer = new Customer();
&lt;br&gt;&amp;gt; customer.setId(1);
&lt;br&gt;&amp;gt; customer.setName(&amp;quot;Padma&amp;quot;);
&lt;br&gt;&amp;gt; return customer;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;beans xmlns=&amp;quot;&lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xmlns:jaxrs=&amp;quot;&lt;a href=&quot;http://cxf.apache.org/jaxrs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/jaxrs&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xsi:schemaLocation=&amp;quot;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.springframework.org/schema/beans/spring-beans.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans/spring-beans.xsd&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cxf.apache.org/jaxrs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/jaxrs&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cxf.apache.org/schemas/jaxrs.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/schemas/jaxrs.xsd&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;!-- do not use import statements if CXFServlet init parameters link to
&lt;br&gt;&amp;gt; this beans.xml --&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;import resource=&amp;quot;classpath:META-INF/cxf/cxf.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;import
&lt;br&gt;&amp;gt; resource=&amp;quot;classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;import resource=&amp;quot;classpath:META-INF/cxf/cxf-servlet.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;jaxrs:server id=&amp;quot;helloWorldService&amp;quot; address=&amp;quot;/helloWorld&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;jaxrs:serviceBeans&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;ref bean=&amp;quot;helloWorld&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/jaxrs:serviceBeans&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;jaxrs:extensionMappings&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;entry key=&amp;quot;json&amp;quot; value=&amp;quot;application/json&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;entry key=&amp;quot;xml&amp;quot; value=&amp;quot;application/xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/jaxrs:extensionMappings&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;/jaxrs:server&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;bean id=&amp;quot;helloWorld&amp;quot; class=&amp;quot;com.tfs.pe.HelloWorldImpl&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;/beans&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Please help.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; Padma
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/JAXRS---POST-tp26897610p26897610.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/JAXRS---POST-tp26897610p26897610.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the cxf-dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;/quote&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JAXRS---POST-tp26897610p26904019.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26901493</id>
	<title>Re: JAXRS - POST</title>
	<published>2009-12-23T04:34:33Z</published>
	<updated>2009-12-23T04:34:33Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I tried to create a RestFul JSON service with CXF. The example works for GET
&lt;br&gt;&amp;gt; method. When i try the same with POST method, i get &amp;quot;.No operation matching
&lt;br&gt;&amp;gt; request path found&amp;quot; error message. 
&lt;br&gt;&amp;gt; URL I hit is: &lt;a href=&quot;http://localhost:8081/SampleRestProject/helloWorld/customers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8081/SampleRestProject/helloWorld/customers&lt;/a&gt;.
&lt;br&gt;&amp;gt; Find below resource class and bean definition.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; @Path(&amp;quot;/&amp;quot;)
&lt;br&gt;&amp;gt; @Produces(&amp;quot;application/json&amp;quot;)
&lt;br&gt;&amp;gt; public class HelloWorldImpl implements HelloWorld
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; @POST
&lt;br&gt;&amp;gt; @Produces(&amp;quot;application/json&amp;quot;)
&lt;br&gt;&amp;gt; @Consumes(&amp;quot;application/json,application/xml&amp;quot;)
&lt;/div&gt;&lt;br&gt;&lt;br&gt;It should be @Consumes({&amp;quot;application/json&amp;quot;, &amp;quot;application/xml&amp;quot;})
&lt;br&gt;&lt;br&gt;Also, pelase make sure ContentType of the HTTP request conatins either application/json or application/xml and that it accepts
&lt;br&gt;application/json
&lt;br&gt;&lt;br&gt;&lt;br&gt;cheers, Sergey
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; @Path(&amp;quot;/customers&amp;quot;)
&lt;br&gt;&amp;gt; public Customer getCustomers() {
&lt;br&gt;&amp;gt; Customer customer = new Customer();
&lt;br&gt;&amp;gt; customer.setId(1);
&lt;br&gt;&amp;gt; customer.setName(&amp;quot;Padma&amp;quot;);
&lt;br&gt;&amp;gt; return customer;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;beans xmlns=&amp;quot;&lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xmlns:jaxrs=&amp;quot;&lt;a href=&quot;http://cxf.apache.org/jaxrs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/jaxrs&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; xsi:schemaLocation=&amp;quot;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.springframework.org/schema/beans/spring-beans.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans/spring-beans.xsd&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cxf.apache.org/jaxrs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/jaxrs&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cxf.apache.org/schemas/jaxrs.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/schemas/jaxrs.xsd&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;!-- do not use import statements if CXFServlet init parameters link to
&lt;br&gt;&amp;gt; this beans.xml --&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;import resource=&amp;quot;classpath:META-INF/cxf/cxf.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;import
&lt;br&gt;&amp;gt; resource=&amp;quot;classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;import resource=&amp;quot;classpath:META-INF/cxf/cxf-servlet.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;jaxrs:server id=&amp;quot;helloWorldService&amp;quot; address=&amp;quot;/helloWorld&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;jaxrs:serviceBeans&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;ref bean=&amp;quot;helloWorld&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/jaxrs:serviceBeans&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;jaxrs:extensionMappings&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;entry key=&amp;quot;json&amp;quot; value=&amp;quot;application/json&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;entry key=&amp;quot;xml&amp;quot; value=&amp;quot;application/xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/jaxrs:extensionMappings&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;/jaxrs:server&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;bean id=&amp;quot;helloWorld&amp;quot; class=&amp;quot;com.tfs.pe.HelloWorldImpl&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;lt;/beans&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Please help.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt; Padma
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://old.nabble.com/JAXRS---POST-tp26897610p26897610.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/JAXRS---POST-tp26897610p26897610.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the cxf-dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JAXRS---POST-tp26897610p26901493.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26897610</id>
	<title>JAXRS - POST</title>
	<published>2009-12-22T21:15:21Z</published>
	<updated>2009-12-22T21:15:21Z</updated>
	<author>
		<name>Padmam</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I tried to create a RestFul JSON service with CXF. The example works for GET method. When i try the same with POST method, i get &amp;quot;.No operation matching request path found&amp;quot; error message. 
&lt;br&gt;URL I hit is: &lt;a href=&quot;http://localhost:8081/SampleRestProject/helloWorld/customers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8081/SampleRestProject/helloWorld/customers&lt;/a&gt;.
&lt;br&gt;Find below resource class and bean definition.
&lt;br&gt;&lt;br&gt;@Path(&amp;quot;/&amp;quot;)
&lt;br&gt;@Produces(&amp;quot;application/json&amp;quot;)
&lt;br&gt;public class HelloWorldImpl implements HelloWorld
&lt;br&gt;{
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @POST
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @Produces(&amp;quot;application/json&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @Consumes(&amp;quot;application/json,application/xml&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @Path(&amp;quot;/customers&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public Customer getCustomers() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Customer customer = new Customer();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; customer.setId(1);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; customer.setName(&amp;quot;Padma&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return customer;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;lt;beans xmlns=&amp;quot;&lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xmlns:jaxrs=&amp;quot;&lt;a href=&quot;http://cxf.apache.org/jaxrs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/jaxrs&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; xsi:schemaLocation=&amp;quot;
&lt;br&gt;&lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.springframework.org/schema/beans/spring-beans.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans/spring-beans.xsd&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://cxf.apache.org/jaxrs&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/jaxrs&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://cxf.apache.org/schemas/jaxrs.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/schemas/jaxrs.xsd&lt;/a&gt;&lt;br&gt;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- do not use import statements if CXFServlet init parameters link to this beans.xml --&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;import resource=&amp;quot;classpath:META-INF/cxf/cxf.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;import
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; resource=&amp;quot;classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;import resource=&amp;quot;classpath:META-INF/cxf/cxf-servlet.xml&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;jaxrs:server id=&amp;quot;helloWorldService&amp;quot; address=&amp;quot;/helloWorld&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;jaxrs:serviceBeans&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ref bean=&amp;quot;helloWorld&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/jaxrs:serviceBeans&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;jaxrs:extensionMappings&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;entry key=&amp;quot;json&amp;quot; value=&amp;quot;application/json&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;entry key=&amp;quot;xml&amp;quot; value=&amp;quot;application/xml&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/jaxrs:extensionMappings&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/jaxrs:server&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;bean id=&amp;quot;helloWorld&amp;quot; class=&amp;quot;com.tfs.pe.HelloWorldImpl&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/beans&amp;gt;
&lt;br&gt;&lt;br&gt;Please help.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Padma
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/JAXRS---POST-tp26897610p26897610.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26880532</id>
	<title>Re: Spring 3 and SpringSecurity 2.0.4 tests</title>
	<published>2009-12-21T13:41:32Z</published>
	<updated>2009-12-21T13:41:32Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">On Mon December 21 2009 12:38:45 pm Sergey Beryozkin wrote:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The jaxrs spring security system tests should be paasing now with
&lt;br&gt;&amp;gt; &amp;nbsp;-Pspring3, I did a minor update to the spring aop helper to ensure double
&lt;br&gt;&amp;gt; &amp;nbsp;cglib proxies are handled ok...
&lt;br&gt;&lt;br&gt;Major thanks Sergey!
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; I actully tried with updating the tests to use SpringSecurity 3.0.RC2, but
&lt;br&gt;&amp;gt; &amp;nbsp;I'd consider introducing SpringSecurity 3.0 specific tests later on, given
&lt;br&gt;&amp;gt; &amp;nbsp;that they changed the package name for Secured annotation, etc
&lt;br&gt;&lt;br&gt;Yea. &amp;nbsp;I definitely prefer keeping things working with Spring 2.5 as the 
&lt;br&gt;default for now. &amp;nbsp; I'm glad it all now works with Spring 3.0 as well. &amp;nbsp; :-)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26880532&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spring-3-and-JMS......-tp26836015p26880532.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26877628</id>
	<title>Re: Questions regarding JAX-RS exception handling</title>
	<published>2009-12-21T09:54:44Z</published>
	<updated>2009-12-21T09:54:44Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi Cyrille
&lt;br&gt;&lt;br&gt;Please see comments inline
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Dear all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; I am looking at the consistency of exception handling among JAX-WS
&lt;br&gt;&amp;gt; and JAX-RS. My primary goal is to ensure cxf management metrics (JMX)
&lt;br&gt;&amp;gt; are consistent.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; Here are few questions :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; SERVER SIDE JAXRS EXCEPTION MAPPER
&lt;br&gt;&amp;gt; ====================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If an ExceptionMapper handles the exception :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1) The JAXRSInvoker returns a Response instead of throwing an Exception
&lt;/div&gt;&lt;br&gt;Yes, this is for JAXRS message body writers be able to handle whatever Response entity a given mapper might've set up.
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2) Thus PhaseInterceptorChain does NOT see that an exception occurred
&lt;br&gt;&amp;gt; during the invocation
&lt;br&gt;&lt;br&gt;Yes
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 3) Thus the &amp;quot;Out Interceptors&amp;quot; are not replaced by the &amp;quot;Out Fault
&lt;br&gt;&amp;gt; Interceptors&amp;quot; and these &amp;quot;Out Interceptors&amp;quot; are called on
&lt;br&gt;&amp;gt; #handleMessage() with the outMessage (ie the response created by the
&lt;br&gt;&amp;gt; ExceptionMapper) instead of being called on #handleFaultMessage() with
&lt;br&gt;&amp;gt; the inMessage when information like the FaultMode is still holded by
&lt;br&gt;&amp;gt; the inMessage
&lt;br&gt;&lt;br&gt;Yes
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 4) Interceptors like the ResponseTimeMessageOutInterceptor who rely on
&lt;br&gt;&amp;gt; the faultMode attribute located on the Message that is being passed to
&lt;br&gt;&amp;gt; handleMessage/handleFault are lost, they don't find the information
&lt;br&gt;&amp;gt; they look for
&lt;br&gt;&lt;br&gt;I see...
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Questions :
&lt;br&gt;&amp;gt; * Wouldn't it make sense to call the &amp;nbsp;&amp;quot;Out Fault Interceptors&amp;quot; if a
&lt;br&gt;&amp;gt; JAX-RS exception is mapped to a custom response ?
&lt;br&gt;&lt;br&gt;Now that you suggested it, perhaps, one alternative in mapping exceptions to exception mappers would be to
&lt;br&gt;register JAX-RS specific fault interceptors which will do the mapping, instead of doing it in the JAXRSInInterceptor or 
&lt;br&gt;JAXRSInvoker...
&lt;br&gt;So other registered fault interceptors will get their chance as well...
&lt;br&gt;&lt;br&gt;What complicates things a bit is that JAXRS users can have ResponseHandler filteres registered which can override the 
&lt;br&gt;ExceptionMapper responses...
&lt;br&gt;&lt;br&gt;&amp;gt; * which message should be given to the handleFaultMessage() ? The
&lt;br&gt;&amp;gt; inMessage that caused the exception and that holds the exception as an
&lt;br&gt;&amp;gt; attribute (it would be consistent with JAX-WS) or the outMessage as
&lt;br&gt;&amp;gt; currently done ?
&lt;br&gt;&lt;br&gt;Perhaps we should consider introducing JAXRS fault interceptors ? They will do Exception Mapping and abort the chain if the mapping 
&lt;br&gt;has been found ? I'm not yet sure how feasible and/or sensitive such a change might be, but may be it will be the right step forward
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; CLIENT SIDE JAXRS EXCEPTION HANDLING
&lt;br&gt;&amp;gt; =============================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ClientProxyImpl handles exceptions after calling the interceptors
&lt;br&gt;&amp;gt; when, with JAX-WS, exception handling (CheckFaultInterceptor) is
&lt;br&gt;&amp;gt; performed in the POST_PROTOCOL phase.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Due to this, the &amp;quot;In Interceptors Chain&amp;quot; is called instead of the &amp;quot;In
&lt;br&gt;&amp;gt; Fault Interceptors Chain&amp;quot; and interceptors like
&lt;br&gt;&amp;gt; ResponseTimeMessageInInterceptor don't see the Response as an
&lt;br&gt;&amp;gt; exception.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Question :
&lt;br&gt;&amp;gt; Can we imagine to refactor jaxrs client side exception handling as a
&lt;br&gt;&amp;gt; post protocol interceptor ?
&lt;/div&gt;&lt;br&gt;The client side needs some refactoring going forward....Some of its code would definitely need to be moved to some isolated 
&lt;br&gt;interceptors. However, please see JAXRSSoapBookTest, Eamonn did quite a few tests with faulty features/interceptors/server faults...
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I hope this email was not too long ; it took me few hours to check all
&lt;br&gt;&amp;gt; these use cases and figure out how it worked :-)
&lt;br&gt;&lt;br&gt;No problems :-), please type as long a message as you'd like to :-), thanks for starting this thread
&lt;br&gt;&lt;br&gt;cheers, Sergey
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cyrille
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Cyrille Le Clerc
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26877628&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cleclerc@...&lt;/a&gt; 
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Questions-regarding-JAX-RS-exception-handling-tp26876750p26877628.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26877365</id>
	<title>Spring 3 and SpringSecurity 2.0.4 tests</title>
	<published>2009-12-21T09:38:45Z</published>
	<updated>2009-12-21T09:38:45Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;The jaxrs spring security system tests should be paasing now with -Pspring3, I did a minor update to the spring aop helper to ensure 
&lt;br&gt;double cglib proxies are handled ok...
&lt;br&gt;&lt;br&gt;I actully tried with updating the tests to use SpringSecurity 3.0.RC2, but I'd consider introducing SpringSecurity 3.0 specific 
&lt;br&gt;tests later on, given that they changed the package name for Secured annotation, etc
&lt;br&gt;&lt;br&gt;cheers, Sergey 
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spring-3-and-JMS......-tp26836015p26877365.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26876750</id>
	<title>Questions regarding JAX-RS exception handling</title>
	<published>2009-12-21T08:52:02Z</published>
	<updated>2009-12-21T08:52:02Z</updated>
	<author>
		<name>Cyrille Le Clerc-6</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Dear all,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;I am looking at the consistency of exception handling among JAX-WS
&lt;br&gt;and JAX-RS. My primary goal is to ensure cxf management metrics (JMX)
&lt;br&gt;are consistent.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Here are few questions :
&lt;br&gt;&lt;br&gt;SERVER SIDE JAXRS EXCEPTION MAPPER
&lt;br&gt;====================================
&lt;br&gt;&lt;br&gt;If an ExceptionMapper handles the exception :
&lt;br&gt;&lt;br&gt;1) The JAXRSInvoker returns a Response instead of throwing an Exception
&lt;br&gt;&lt;br&gt;2) Thus PhaseInterceptorChain does NOT see that an exception occurred
&lt;br&gt;during the invocation
&lt;br&gt;&lt;br&gt;3) Thus the &amp;quot;Out Interceptors&amp;quot; are not replaced by the &amp;quot;Out Fault
&lt;br&gt;Interceptors&amp;quot; and these &amp;quot;Out Interceptors&amp;quot; are called on
&lt;br&gt;#handleMessage() with the outMessage (ie the response created by the
&lt;br&gt;ExceptionMapper) instead of being called on #handleFaultMessage() with
&lt;br&gt;the inMessage when information like the FaultMode is still holded by
&lt;br&gt;the inMessage
&lt;br&gt;&lt;br&gt;4) Interceptors like the ResponseTimeMessageOutInterceptor who rely on
&lt;br&gt;the faultMode attribute located on the Message that is being passed to
&lt;br&gt;handleMessage/handleFault are lost, they don't find the information
&lt;br&gt;they look for
&lt;br&gt;&lt;br&gt;Questions :
&lt;br&gt;* Wouldn't it make sense to call the &amp;nbsp;&amp;quot;Out Fault Interceptors&amp;quot; if a
&lt;br&gt;JAX-RS exception is mapped to a custom response ?
&lt;br&gt;* which message should be given to the handleFaultMessage() ? The
&lt;br&gt;inMessage that caused the exception and that holds the exception as an
&lt;br&gt;attribute (it would be consistent with JAX-WS) or the outMessage as
&lt;br&gt;currently done ?
&lt;br&gt;&lt;br&gt;CLIENT SIDE JAXRS EXCEPTION HANDLING
&lt;br&gt;=============================================
&lt;br&gt;&lt;br&gt;ClientProxyImpl handles exceptions after calling the interceptors
&lt;br&gt;when, with JAX-WS, exception handling (CheckFaultInterceptor) is
&lt;br&gt;performed in the POST_PROTOCOL phase.
&lt;br&gt;&lt;br&gt;Due to this, the &amp;quot;In Interceptors Chain&amp;quot; is called instead of the &amp;quot;In
&lt;br&gt;Fault Interceptors Chain&amp;quot; and interceptors like
&lt;br&gt;ResponseTimeMessageInInterceptor don't see the Response as an
&lt;br&gt;exception.
&lt;br&gt;&lt;br&gt;Question :
&lt;br&gt;Can we imagine to refactor jaxrs client side exception handling as a
&lt;br&gt;post protocol interceptor ?
&lt;br&gt;&lt;br&gt;&lt;br&gt;I hope this email was not too long ; it took me few hours to check all
&lt;br&gt;these use cases and figure out how it worked :-)
&lt;br&gt;&lt;br&gt;Cyrille
&lt;br&gt;--
&lt;br&gt;Cyrille Le Clerc
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26876750&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cleclerc@...&lt;/a&gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Questions-regarding-JAX-RS-exception-handling-tp26876750p26876750.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26844684</id>
	<title>Re: DOSGi deploy failing on Hudson</title>
	<published>2009-12-18T07:00:36Z</published>
	<updated>2009-12-18T07:00:36Z</updated>
	<author>
		<name>davidb-3</name>
	</author>
	<content type="html">Ok - I'll take a look.
&lt;br&gt;I can't just change it to 1.0.0-SNAPSHOT because these classes are
&lt;br&gt;defined by the OSGi Alliance and their version is actually 1.0.0. But
&lt;br&gt;maybe we can avoid building this module separately, this module is
&lt;br&gt;only an internal artefact for DOSGi...
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;2009/12/18 Daniel Kulp &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26844684&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The problem is due to:
&lt;br&gt;&amp;gt; parent/pom.xml:
&lt;br&gt;&amp;gt; &amp;lt;remote.service.admin.interfaces.version&amp;gt;1.0.0&amp;lt;/remote.service.admin.interfaces.version&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thus, the build of
&lt;br&gt;&amp;gt; dsw/cxf-osgi-remote-service-admin-interfaces/pom.xml
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; is considered a release and is trying to deploy as a release.   That version
&lt;br&gt;&amp;gt; number needs to change to a SNAPSHOT.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Fri December 18 2009 4:35:36 am &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26844684&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;davidb@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The DOSGi deploy build on Hudson is failing with the following:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; [INFO] Error deploying artifact: Authorization failed: Access denied
&lt;br&gt;&amp;gt;&amp;gt; to:
&lt;br&gt;&amp;gt;&amp;gt;  &lt;a href=&quot;https://repository.apache.org/service/local/staging/deploy/maven2/org/apac&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://repository.apache.org/service/local/staging/deploy/maven2/org/apac&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; he/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remo
&lt;br&gt;&amp;gt;&amp;gt; te-service-admin-interfaces-1.0.0.jar
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; See [1]. Anyone an idea what might be causing this or how to resolve it?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; David
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; [1]
&lt;br&gt;&amp;gt;&amp;gt;  &lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; .apache.cxf.dosgi$cxf-dosgi-remote-service-admin-interfaces/console
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Daniel Kulp
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26844684&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/DOSGi-deploy-failing-on-Hudson-tp26841096p26844684.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26842919</id>
	<title>Re: DOSGi deploy failing on Hudson</title>
	<published>2009-12-18T04:49:40Z</published>
	<updated>2009-12-18T04:49:40Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;The problem is due to:
&lt;br&gt;parent/pom.xml: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;lt;remote.service.admin.interfaces.version&amp;gt;1.0.0&amp;lt;/remote.service.admin.interfaces.version&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thus, the build of 
&lt;br&gt;dsw/cxf-osgi-remote-service-admin-interfaces/pom.xml
&lt;br&gt;&lt;br&gt;is considered a release and is trying to deploy as a release. &amp;nbsp; That version 
&lt;br&gt;number needs to change to a SNAPSHOT.
&lt;br&gt;&lt;br&gt;Dan
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri December 18 2009 4:35:36 am &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26842919&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;davidb@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The DOSGi deploy build on Hudson is failing with the following:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [INFO] Error deploying artifact: Authorization failed: Access denied
&lt;br&gt;&amp;gt; to:
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;https://repository.apache.org/service/local/staging/deploy/maven2/org/apac&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://repository.apache.org/service/local/staging/deploy/maven2/org/apac&lt;/a&gt;&lt;br&gt;&amp;gt; he/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remo
&lt;br&gt;&amp;gt; te-service-admin-interfaces-1.0.0.jar
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; See [1]. Anyone an idea what might be causing this or how to resolve it?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; [1]
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org&lt;/a&gt;&lt;br&gt;&amp;gt; .apache.cxf.dosgi$cxf-dosgi-remote-service-admin-interfaces/console
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26842919&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/DOSGi-deploy-failing-on-Hudson-tp26841096p26842919.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26842463</id>
	<title>Re: svn commit: r892222 - in /cxf/dosgi/trunk/dsw/cxf-dsw/src: main/java/org/apache/cxf/dosgi/dsw/handlers/ test/java/org/apache/cxf/dosgi/dsw/handlers/</title>
	<published>2009-12-18T04:03:17Z</published>
	<updated>2009-12-18T04:03:17Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi David
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; The endpoint.uri is a new property that's introduced in the OSGi Remote
&lt;br&gt;&amp;gt;&amp;gt; Service Admin spec. This is now the standard way to configure the endpoint
&lt;br&gt;&amp;gt;&amp;gt; URI. The old properties are still supported for backward compatibility.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This endpoint.uri property will work JAXRS services as well ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If we let users have the same OSGI service exposed as SOAP and RESTful
&lt;br&gt;&amp;gt; services, how will it work with this property being used ? Perhaps in this
&lt;br&gt;&amp;gt; latter case org.apache.cxf.ws.address and org.apache.cxf.rs.address
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks, Sergey
&lt;/div&gt;&lt;br&gt;The we haven't refactored the JAX-RS handlers yet, see:
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/Re%3A-Migrating-CXF-DOSGi-to-be-complaint-with-the-new-OSGi-Remote--Service-Admin-spec-p26826519.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Re%3A-Migrating-CXF-DOSGi-to-be-complaint-with-the-new-OSGi-Remote--Service-Admin-spec-p26826519.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;But when we get to JAX-RS, it should also support the endpoint.uri property.
&lt;br&gt;If you have a single service that you want to expose through both
&lt;br&gt;using SOAP and REST we could make that possible by letting the user
&lt;br&gt;set org.apache.cxf.rs.address and org.apache.cxf.ws.address, since
&lt;br&gt;there's no overlap with these properties. Would that work for you?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; S.B : yes, it would, I think we're in agreement :-)
&lt;br&gt;&lt;br&gt;cheers, Sergey
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-svn-commit%3A-r892222---in--cxf-dosgi-trunk-dsw-cxf-dsw-src%3A-main-java-org-apache-cxf-dosgi-dsw-handlers--test-java-org-apache-cxf-dosgi-dsw-handlers--tp26842141p26842463.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26842350</id>
	<title>Re: svn commit: r892222 - in /cxf/dosgi/trunk/dsw/cxf-dsw/src:  main/java/org/apache/cxf/dosgi/dsw/handlers/ test/java/org/apache/cxf/dosgi/dsw/handlers/</title>
	<published>2009-12-18T03:49:44Z</published>
	<updated>2009-12-18T03:49:44Z</updated>
	<author>
		<name>David Bosschaert</name>
	</author>
	<content type="html">Hi Sergey,
&lt;br&gt;&lt;br&gt;2009/12/18 Sergey Beryozkin &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26842350&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sberyozk@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi David
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Author: davidb
&lt;br&gt;&amp;gt;&amp;gt; Date: Fri Dec 18 11:16:42 2009
&lt;br&gt;&amp;gt;&amp;gt; New Revision: 892222
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; URL: &lt;a href=&quot;http://svn.apache.org/viewvc?rev=892222&amp;view=rev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/viewvc?rev=892222&amp;view=rev&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Log:
&lt;br&gt;&amp;gt;&amp;gt; Added support for old way of configuring endpoint location back in. The
&lt;br&gt;&amp;gt;&amp;gt; following properties on the exposed services are now equivalents and can be
&lt;br&gt;&amp;gt;&amp;gt; set to a value such as &lt;a href=&quot;http://localhost:9876/myService&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:9876/myService&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;  endpoint.uri
&lt;br&gt;&amp;gt;&amp;gt;  org.apache.cxf.ws.address
&lt;br&gt;&amp;gt;&amp;gt;  osgi.remote.configuration.pojo.address
&lt;br&gt;&amp;gt;&amp;gt; The endpoint.uri is a new property that's introduced in the OSGi Remote
&lt;br&gt;&amp;gt;&amp;gt; Service Admin spec. This is now the standard way to configure the endpoint
&lt;br&gt;&amp;gt;&amp;gt; URI. The old properties are still supported for backward compatibility.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This endpoint.uri property will work JAXRS services as well ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If we let users have the same OSGI service exposed as SOAP and RESTful
&lt;br&gt;&amp;gt; services, how will it work with this property being used ? Perhaps in this
&lt;br&gt;&amp;gt; latter case org.apache.cxf.ws.address and org.apache.cxf.rs.address
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks, Sergey
&lt;/div&gt;&lt;br&gt;The we haven't refactored the JAX-RS handlers yet, see:
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/Re%3A-Migrating-CXF-DOSGi-to-be-complaint-with-the-new-OSGi-Remote--Service-Admin-spec-p26826519.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Re%3A-Migrating-CXF-DOSGi-to-be-complaint-with-the-new-OSGi-Remote--Service-Admin-spec-p26826519.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;But when we get to JAX-RS, it should also support the endpoint.uri property.
&lt;br&gt;If you have a single service that you want to expose through both
&lt;br&gt;using SOAP and REST we could make that possible by letting the user
&lt;br&gt;set org.apache.cxf.rs.address and org.apache.cxf.ws.address, since
&lt;br&gt;there's no overlap with these properties. Would that work for you?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-svn-commit%3A-r892222---in--cxf-dosgi-trunk-dsw-cxf-dsw-src%3A-main-java-org-apache-cxf-dosgi-dsw-handlers--test-java-org-apache-cxf-dosgi-dsw-handlers--tp26842141p26842350.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26842141</id>
	<title>Re: svn commit: r892222 - in /cxf/dosgi/trunk/dsw/cxf-dsw/src: main/java/org/apache/cxf/dosgi/dsw/handlers/ test/java/org/apache/cxf/dosgi/dsw/handlers/</title>
	<published>2009-12-18T03:26:21Z</published>
	<updated>2009-12-18T03:26:21Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi David
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Author: davidb
&lt;br&gt;&amp;gt; Date: Fri Dec 18 11:16:42 2009
&lt;br&gt;&amp;gt; New Revision: 892222
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; URL: &lt;a href=&quot;http://svn.apache.org/viewvc?rev=892222&amp;view=rev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/viewvc?rev=892222&amp;view=rev&lt;/a&gt;&lt;br&gt;&amp;gt; Log:
&lt;br&gt;&amp;gt; Added support for old way of configuring endpoint location back in. The following properties on the exposed services are now 
&lt;br&gt;&amp;gt; equivalents and can be set to a value such as &lt;a href=&quot;http://localhost:9876/myService&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:9876/myService&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp;endpoint.uri
&lt;br&gt;&amp;gt; &amp;nbsp;org.apache.cxf.ws.address
&lt;br&gt;&amp;gt; &amp;nbsp;osgi.remote.configuration.pojo.address
&lt;br&gt;&amp;gt; The endpoint.uri is a new property that's introduced in the OSGi Remote Service Admin spec. This is now the standard way to 
&lt;br&gt;&amp;gt; configure the endpoint URI. The old properties are still supported for backward compatibility.
&lt;/div&gt;&lt;br&gt;This endpoint.uri property will work JAXRS services as well ?
&lt;br&gt;&lt;br&gt;If we let users have the same OSGI service exposed as SOAP and RESTful services, how will it work with this property being used ? 
&lt;br&gt;Perhaps in this latter case org.apache.cxf.ws.address and org.apache.cxf.rs.address
&lt;br&gt;&lt;br&gt;thanks, Sergey
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-svn-commit%3A-r892222---in--cxf-dosgi-trunk-dsw-cxf-dsw-src%3A-main-java-org-apache-cxf-dosgi-dsw-handlers--test-java-org-apache-cxf-dosgi-dsw-handlers--tp26842141p26842141.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26841417</id>
	<title>Re: DOSGi deploy failing on Hudson</title>
	<published>2009-12-18T02:04:11Z</published>
	<updated>2009-12-18T02:04:11Z</updated>
	<author>
		<name>Eoghan Glynn-4</name>
	</author>
	<content type="html">Hmmm ... smells like a Nexus issue.
&lt;br&gt;&lt;br&gt;If I follow that link, I'm redirected to:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://repository.apache.org/service/local/staging/deploy/maven2/org/apache/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remote-service-admin-interfaces-1.0.0.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://repository.apache.org/service/local/staging/deploy/maven2/org/apache/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remote-service-admin-interfaces-1.0.0.jar&lt;/a&gt;&lt;br&gt;&lt;br&gt;with the message:
&lt;br&gt;Item not found on path
&lt;br&gt;&amp;quot;/org/apache/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remote-service-admin-interfaces-1.0.0.jar&amp;quot;
&lt;br&gt;in repository &amp;quot;orgapachecxf-001&amp;quot;!This looks a reference to a temporary
&lt;br&gt;staging area created by Nexus, for use for example while a release vote is
&lt;br&gt;in motion (so for the recent dOSGi 1.1 release that I cut, the staging area
&lt;br&gt;was assigned orgapachecxf-021).
&lt;br&gt;&lt;br&gt;Normally when the vote is declared, the staging area would be closed as the
&lt;br&gt;artifacts are promoted. I'd expect the backing storage is discarded by
&lt;br&gt;Nexus.
&lt;br&gt;&lt;br&gt;I don't know why its pointing back to the first CXF staging area ever
&lt;br&gt;created in this case (i.e. the &amp;quot;-001&amp;quot; suffix) but that would have long since
&lt;br&gt;ceased to exist.
&lt;br&gt;&lt;br&gt;Maybe report the issue to the infrastructure folks, or whomever has admin
&lt;br&gt;access to Nexus.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Eoghan
&lt;br&gt;&lt;br&gt;&lt;br&gt;2009/12/18 &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26841417&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;davidb@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The DOSGi deploy build on Hudson is failing with the following:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [INFO] Error deploying artifact: Authorization failed: Access denied
&lt;br&gt;&amp;gt; to:
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://repository.apache.org/service/local/staging/deploy/maven2/org/apache/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remote-service-admin-interfaces-1.0.0.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://repository.apache.org/service/local/staging/deploy/maven2/org/apache/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remote-service-admin-interfaces-1.0.0.jar&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; See [1]. Anyone an idea what might be causing this or how to resolve it?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [1]
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org.apache.cxf.dosgi$cxf-dosgi-remote-service-admin-interfaces/console&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org.apache.cxf.dosgi$cxf-dosgi-remote-service-admin-interfaces/console&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/DOSGi-deploy-failing-on-Hudson-tp26841096p26841417.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26841096</id>
	<title>DOSGi deploy failing on Hudson</title>
	<published>2009-12-18T01:35:36Z</published>
	<updated>2009-12-18T01:35:36Z</updated>
	<author>
		<name>davidb-3</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;The DOSGi deploy build on Hudson is failing with the following:
&lt;br&gt;&lt;br&gt;[INFO] Error deploying artifact: Authorization failed: Access denied
&lt;br&gt;to: &lt;a href=&quot;https://repository.apache.org/service/local/staging/deploy/maven2/org/apache/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remote-service-admin-interfaces-1.0.0.jar&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://repository.apache.org/service/local/staging/deploy/maven2/org/apache/cxf/dosgi/cxf-dosgi-remote-service-admin-interfaces/1.0.0/cxf-dosgi-remote-service-admin-interfaces-1.0.0.jar&lt;/a&gt;&lt;br&gt;&lt;br&gt;See [1]. Anyone an idea what might be causing this or how to resolve it?
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org.apache.cxf.dosgi$cxf-dosgi-remote-service-admin-interfaces/console&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hudson.zones.apache.org/hudson/view/CXF/job/CXF-DOSGi-deploy/81/org.apache.cxf.dosgi$cxf-dosgi-remote-service-admin-interfaces/console&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/DOSGi-deploy-failing-on-Hudson-tp26841096p26841096.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26838009</id>
	<title>Spring 3 results...</title>
	<published>2009-12-17T17:50:05Z</published>
	<updated>2009-12-17T17:50:05Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;We're down to two test failures when using Spring 3. &amp;nbsp; Both of the 
&lt;br&gt;JAXRSSpringSecurity tests are failing. &amp;nbsp; Not sure yet. &amp;nbsp; The version of spring 
&lt;br&gt;security we are picking up may have an issue. &amp;nbsp; Not really sure.
&lt;br&gt;&lt;br&gt;Anyway, things are looking pretty good with Spring3 now. &amp;nbsp; &amp;nbsp; :-)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26838009&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spring-3-results...-tp26838009p26838009.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26837742</id>
	<title>Re: Spring 3 and JMS......</title>
	<published>2009-12-17T17:15:14Z</published>
	<updated>2009-12-17T17:15:14Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;OK. &amp;nbsp; Figured it out. &amp;nbsp; With Spring 2.x, the DefaultMessageListenerContainer 
&lt;br&gt;that we create seems to be automatically started. &amp;nbsp; We don't ever call start 
&lt;br&gt;on it. &amp;nbsp; With Spring 3, we need to call start(). &amp;nbsp; &amp;nbsp;If I add that call after 
&lt;br&gt;the initialize, all the JMS tests pass.
&lt;br&gt;&lt;br&gt;Dan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thu December 17 2009 5:17:52 pm Daniel Kulp wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I added a profile to the build to build/run with the recently released
&lt;br&gt;&amp;gt; &amp;nbsp;Spring 3. &amp;nbsp; &amp;nbsp; I have it completely building now (although a bunch of
&lt;br&gt;&amp;gt; &amp;nbsp;warnings as Spring deprecated a bunch of stuff that we need to call for
&lt;br&gt;&amp;gt; &amp;nbsp;Spring 2.5), however, the JMS tests are hanging.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I would really appreciate it if someone could help look at it. &amp;nbsp; Just run
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; mvn -Pspring3
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; and it hangs in the JMSDestinationTest. &amp;nbsp; It may just be a timeout or
&lt;br&gt;&amp;gt; something needing adjusting or similar. &amp;nbsp; Don't really know yet.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You can also run it in eclipse and see. &amp;nbsp; A call like:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; mvn -Psetup.eclipse,spring3
&lt;br&gt;&amp;gt; would setup the eclipse workspace with the spring3 jars. &amp;nbsp; I can duplicate
&lt;br&gt;&amp;gt; &amp;nbsp;the hang there as well.
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26837742&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spring-3-and-JMS......-tp26836015p26837742.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26836015</id>
	<title>Spring 3 and JMS......</title>
	<published>2009-12-17T14:17:52Z</published>
	<updated>2009-12-17T14:17:52Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;I added a profile to the build to build/run with the recently released Spring 
&lt;br&gt;3. &amp;nbsp; &amp;nbsp; I have it completely building now (although a bunch of warnings as 
&lt;br&gt;Spring deprecated a bunch of stuff that we need to call for Spring 2.5), 
&lt;br&gt;however, the JMS tests are hanging. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;I would really appreciate it if someone could help look at it. &amp;nbsp; Just run 
&lt;br&gt;&lt;br&gt;mvn -Pspring3
&lt;br&gt;&lt;br&gt;and it hangs in the JMSDestinationTest. &amp;nbsp; It may just be a timeout or 
&lt;br&gt;something needing adjusting or similar. &amp;nbsp; Don't really know yet.
&lt;br&gt;&lt;br&gt;You can also run it in eclipse and see. &amp;nbsp; A call like:
&lt;br&gt;&lt;br&gt;mvn -Psetup.eclipse,spring3
&lt;br&gt;would setup the eclipse workspace with the spring3 jars. &amp;nbsp; I can duplicate the 
&lt;br&gt;hang there as well.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26836015&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Spring-3-and-JMS......-tp26836015p26836015.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26829802</id>
	<title>Distributed OSGi JIRA</title>
	<published>2009-12-17T07:31:49Z</published>
	<updated>2009-12-17T07:31:49Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;I just wanted to let everyone know that we've setup a separate JIRA for the 
&lt;br&gt;Distributed OSGi project:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/DOSGI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/DOSGI&lt;/a&gt;&lt;br&gt;&lt;br&gt;Which should allow the project to have more control of their issues and 
&lt;br&gt;components and versions and such. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;I've moved all the DOSGI related issues out of CXF into the new project. &amp;nbsp; 
&lt;br&gt;This obviously changes the issue ID numbers and such, but there were only 20 
&lt;br&gt;or so of them so not a huge deal at this point. &amp;nbsp; Better now than when we have 
&lt;br&gt;several hundred. &amp;nbsp; :-)
&lt;br&gt;&lt;br&gt;Anyway, please log any DOSGi related issues there. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;Enjoy!
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829802&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Distributed-OSGi-JIRA-tp26829802p26829802.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26829702</id>
	<title>Re: Should DOSGi have it's own JIRA?</title>
	<published>2009-12-17T07:25:42Z</published>
	<updated>2009-12-17T07:25:42Z</updated>
	<author>
		<name>davidb-3</name>
	</author>
	<content type="html">2009/12/17 Daniel Kulp &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829702&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; I've set it up:
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://issues.apache.org/jira/browse/DOSGI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/DOSGI&lt;/a&gt;&lt;br&gt;&lt;br&gt;Nice!
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On a related note, should we have a separate DOSGi space on the wiki as well
&lt;br&gt;&amp;gt; like we do for the docs?    It could then have it's own navigation bar,
&lt;br&gt;&amp;gt; etc....
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The top level page at cxf.apache.org would point dosgi project to a subdir
&lt;br&gt;&amp;gt; like
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://cxf.apache.org/dosgi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/dosgi&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; or similar.    Thoughts?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dan
&lt;/div&gt;&lt;br&gt;Personally I think that the DOSGi wiki within the CXF wiki as it is
&lt;br&gt;now is perfectly fine. It's a CXF subproject after all. Having the
&lt;br&gt;strong relation between the projects visible in the Wiki is a good
&lt;br&gt;thing IMHO.
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Should-DOSGi-have-it%27s-own-JIRA--tp26783525p26829702.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26829374</id>
	<title>Re: Should DOSGi have it's own JIRA?</title>
	<published>2009-12-17T07:05:17Z</published>
	<updated>2009-12-17T07:05:17Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">On Thu December 17 2009 5:33:39 am &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829374&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;davidb@...&lt;/a&gt; wrote:
&lt;br&gt;&amp;gt; Yeah - I think its a good idea to put CXF DOSGi as a separate project in
&lt;br&gt;&amp;gt; &amp;nbsp;JIRA.
&lt;br&gt;&lt;br&gt;I've set it up:
&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/DOSGI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/DOSGI&lt;/a&gt;&lt;br&gt;&lt;br&gt;On a related note, should we have a separate DOSGi space on the wiki as well 
&lt;br&gt;like we do for the docs? &amp;nbsp; &amp;nbsp;It could then have it's own navigation bar, 
&lt;br&gt;etc....
&lt;br&gt;&lt;br&gt;The top level page at cxf.apache.org would point dosgi project to a subdir 
&lt;br&gt;like
&lt;br&gt;&lt;a href=&quot;http://cxf.apache.org/dosgi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/dosgi&lt;/a&gt;&lt;br&gt;&lt;br&gt;or similar. &amp;nbsp; &amp;nbsp;Thoughts?
&lt;br&gt;&lt;br&gt;Dan
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 2009/12/17 Daniel Kulp &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829374&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; &amp;gt; Is there any objections to moving the DOSGI stuff out to it's own JIRA?
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;If not, I'll do so on Friday. &amp;nbsp; Speak now... &amp;nbsp;:-)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Dan
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Mon December 14 2009 2:39:17 pm Daniel Kulp wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Quick question:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; What are peoples thoughts about pulling the DOSGi stuff from the &amp;quot;CXF&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; JIRA into a separate CXFDOSGI (or just DOSGI) JIRA in the &amp;quot;Category:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; CXF&amp;quot; section at:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;https://issues.apache.org/jira/secure/BrowseProjects.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/secure/BrowseProjects.jspa&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; There are pluses and minuses:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; DOSGi has it's own release schedule, own version numbers,etc.... Thus,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp;having it's own project in JIRA allows it to track those things
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; properly without it affecting the main CXF project.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Also, DOSGi has it's own components such as its own build system, local
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; vs remote discovery, etc... &amp;nbsp; Having it's own JIRA project would allow
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; defining nice components for it's own uses.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; On the minus side, it does kind of lower the visibility of the DOSGi
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; issues in the CXF JIRA since they wouldn't be there.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; One COULD argue that JAX-RS could also be pulled out. &amp;nbsp; However, the
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; JAX-RS stuff is currently part of the main build and released as part of
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the full CXF stuff. &amp;nbsp;Thus, keeping it in is less of an issue. &amp;nbsp;If we
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; eventually split the builds into a &amp;quot;core&amp;quot;, &amp;quot;webservices&amp;quot;, &amp;quot;rest&amp;quot;, etc...
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; then it may make sense to do so at that time.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Daniel Kulp
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829374&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829374&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Should-DOSGi-have-it%27s-own-JIRA--tp26783525p26829374.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26826519</id>
	<title>Re: Migrating CXF-DOSGi to be complaint with the new OSGi Remote  Service Admin spec</title>
	<published>2009-12-17T03:15:06Z</published>
	<updated>2009-12-17T03:15:06Z</updated>
	<author>
		<name>David Bosschaert</name>
	</author>
	<content type="html">Marc has submitted the first patch to bug 2427.
&lt;br&gt;I'll be applying the patch shortly.
&lt;br&gt;&lt;br&gt;As this is work in progress, here's a summary of a few things that
&lt;br&gt;aren't finished yet:
&lt;br&gt;Remote Service Admin &amp; Topology Manager &amp;nbsp; (former DSW):
&lt;br&gt;************************************************************
&lt;br&gt;- Support of the HTTP service is not working at the moment as the
&lt;br&gt;complete configuration type handler is deactivated
&lt;br&gt;- Only the Pojo configuration type handler is supported at the moment
&lt;br&gt;the others will follow soon
&lt;br&gt;- The service decorator is disabled at the moment
&lt;br&gt;- Configuration of the Remote Service Admin and the Topology Manager
&lt;br&gt;via the Configuration Admin is not possible
&lt;br&gt;- Most of the test cases from the former DSW are deactivated as they
&lt;br&gt;need to be adapted to the Remote Service Admin and the Topology
&lt;br&gt;Manager
&lt;br&gt;&lt;br&gt;General:
&lt;br&gt;************************************************************
&lt;br&gt;- Local Discovery is missing
&lt;br&gt;- The Systests are deactivated as they are not yet adapted to the new
&lt;br&gt;implementation
&lt;br&gt;&lt;br&gt;Marc and I will be working on resolving these issues.
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;2009/12/4 David Bosschaert &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26826519&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;david.bosschaert@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As you've seen, the CXF-DOSGi 1.1 release is out [1]. Thanks Eoghan!
&lt;br&gt;&amp;gt; 1.1 is compliant with the current OSGi 4.2 Remote Services spec [2].
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In the mean time, in the OSGi Alliance an additional 'Distributed
&lt;br&gt;&amp;gt; OSGi' specification is nearing completion: Remote Service Admin [3].
&lt;br&gt;&amp;gt; This spec defines a number of APIs used internally in Distributed OSGi
&lt;br&gt;&amp;gt; implementations. The APIs define the interaction between the
&lt;br&gt;&amp;gt; Distribution Provider, Discovery System and a component called the
&lt;br&gt;&amp;gt; Topology Manager. The benefit of implementing this standard is that
&lt;br&gt;&amp;gt; you can mix &amp; match components from various implementations together.
&lt;br&gt;&amp;gt; For instance if someone provided a compliant Discovery implementation
&lt;br&gt;&amp;gt; based on UDDI, you could just replace the ZooKeeper-based one in CXF
&lt;br&gt;&amp;gt; with that UDDI one. It would just be a matter of replacing the
&lt;br&gt;&amp;gt; bundles.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; CXF-DOSGi is the Reference Implementation of chapter 13, and will also
&lt;br&gt;&amp;gt; be the reference implementation of chapter 122.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Marc Schaaf has been working on refactoring the CXF-DOSGi
&lt;br&gt;&amp;gt; implementation to also be compliant with Remote Service Admin while
&lt;br&gt;&amp;gt; maintaining backward compatibility. Marc and I are planning to
&lt;br&gt;&amp;gt; contribute this work to CXF-DOSGi trunk over the coming weeks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This might destabilize &lt;a href=&quot;http://svn.apache.org/repos/asf/cxf/dosgi/trunk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/repos/asf/cxf/dosgi/trunk&lt;/a&gt;&lt;br&gt;&amp;gt; for a little while, which is one of the reasons why we waited until
&lt;br&gt;&amp;gt; after the 1.1 release.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hope everyone is ok with this.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; David
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [1] &lt;a href=&quot;http://cxf.apache.org/dosgi-releases.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://cxf.apache.org/dosgi-releases.html&lt;/a&gt;&lt;br&gt;&amp;gt; [2] Chapter 13 in the 4.2 Compendium &lt;a href=&quot;http://www.osgi.org/Download/Release4V42&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.osgi.org/Download/Release4V42&lt;/a&gt;&lt;br&gt;&amp;gt; [3] Chapter 122 in
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.osgi.org/download/osgi-4.2-enterprise-early-draft4.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.osgi.org/download/osgi-4.2-enterprise-early-draft4.pdf&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Migrating-CXF-DOSGi-to-be-complaint-with-the-new-OSGi-Remote-Service--Admin-spec-tp26645023p26826519.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26826057</id>
	<title>Re: Should DOSGi have it's own JIRA?</title>
	<published>2009-12-17T02:33:39Z</published>
	<updated>2009-12-17T02:33:39Z</updated>
	<author>
		<name>davidb-3</name>
	</author>
	<content type="html">Yeah - I think its a good idea to put CXF DOSGi as a separate project in JIRA.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;2009/12/17 Daniel Kulp &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26826057&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is there any objections to moving the DOSGI stuff out to it's own JIRA?  If
&lt;br&gt;&amp;gt; not, I'll do so on Friday.   Speak now...  :-)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon December 14 2009 2:39:17 pm Daniel Kulp wrote:
&lt;br&gt;&amp;gt;&amp;gt; Quick question:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; What are peoples thoughts about pulling the DOSGi stuff from the &amp;quot;CXF&amp;quot; JIRA
&lt;br&gt;&amp;gt;&amp;gt; into a separate CXFDOSGI (or just DOSGI) JIRA in the &amp;quot;Category: CXF&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;  section at:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://issues.apache.org/jira/secure/BrowseProjects.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/secure/BrowseProjects.jspa&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; There are pluses and minuses:
&lt;br&gt;&amp;gt;&amp;gt; DOSGi has it's own release schedule, own version numbers,etc.... Thus,
&lt;br&gt;&amp;gt;&amp;gt;  having it's own project in JIRA allows it to track those things properly
&lt;br&gt;&amp;gt;&amp;gt;  without it affecting the main CXF project.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Also, DOSGi has it's own components such as its own build system, local vs
&lt;br&gt;&amp;gt;&amp;gt; remote discovery, etc...   Having it's own JIRA project would allow
&lt;br&gt;&amp;gt;&amp;gt;  defining nice components for it's own uses.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On the minus side, it does kind of lower the visibility of the DOSGi issues
&lt;br&gt;&amp;gt;&amp;gt;  in the CXF JIRA since they wouldn't be there.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; One COULD argue that JAX-RS could also be pulled out.   However, the JAX-RS
&lt;br&gt;&amp;gt;&amp;gt; stuff is currently part of the main build and released as part of the full
&lt;br&gt;&amp;gt;&amp;gt;  CXF stuff.  Thus, keeping it in is less of an issue.  If we eventually
&lt;br&gt;&amp;gt;&amp;gt;  split the builds into a &amp;quot;core&amp;quot;, &amp;quot;webservices&amp;quot;, &amp;quot;rest&amp;quot;, etc... then it may
&lt;br&gt;&amp;gt;&amp;gt;  make sense to do so at that time.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Daniel Kulp
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26826057&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Should-DOSGi-have-it%27s-own-JIRA--tp26783525p26826057.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26822382</id>
	<title>Re: Should DOSGi have it's own JIRA?</title>
	<published>2009-12-16T18:58:06Z</published>
	<updated>2009-12-16T18:58:06Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;Is there any objections to moving the DOSGI stuff out to it's own JIRA? &amp;nbsp;If 
&lt;br&gt;not, I'll do so on Friday. &amp;nbsp; Speak now... &amp;nbsp;:-)
&lt;br&gt;&lt;br&gt;Dan
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon December 14 2009 2:39:17 pm Daniel Kulp wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Quick question:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; What are peoples thoughts about pulling the DOSGi stuff from the &amp;quot;CXF&amp;quot; JIRA
&lt;br&gt;&amp;gt; into a separate CXFDOSGI (or just DOSGI) JIRA in the &amp;quot;Category: CXF&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp;section at:
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://issues.apache.org/jira/secure/BrowseProjects.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/secure/BrowseProjects.jspa&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There are pluses and minuses:
&lt;br&gt;&amp;gt; DOSGi has it's own release schedule, own version numbers,etc.... Thus,
&lt;br&gt;&amp;gt; &amp;nbsp;having it's own project in JIRA allows it to track those things properly
&lt;br&gt;&amp;gt; &amp;nbsp;without it affecting the main CXF project.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Also, DOSGi has it's own components such as its own build system, local vs
&lt;br&gt;&amp;gt; remote discovery, etc... &amp;nbsp; Having it's own JIRA project would allow
&lt;br&gt;&amp;gt; &amp;nbsp;defining nice components for it's own uses.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On the minus side, it does kind of lower the visibility of the DOSGi issues
&lt;br&gt;&amp;gt; &amp;nbsp;in the CXF JIRA since they wouldn't be there.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; One COULD argue that JAX-RS could also be pulled out. &amp;nbsp; However, the JAX-RS
&lt;br&gt;&amp;gt; stuff is currently part of the main build and released as part of the full
&lt;br&gt;&amp;gt; &amp;nbsp;CXF stuff. &amp;nbsp;Thus, keeping it in is less of an issue. &amp;nbsp;If we eventually
&lt;br&gt;&amp;gt; &amp;nbsp;split the builds into a &amp;quot;core&amp;quot;, &amp;quot;webservices&amp;quot;, &amp;quot;rest&amp;quot;, etc... then it may
&lt;br&gt;&amp;gt; &amp;nbsp;make sense to do so at that time.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26822382&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Should-DOSGi-have-it%27s-own-JIRA--tp26783525p26822382.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26793766</id>
	<title>Re: svn commit: r890756 - /cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/service/factory/ServerFactoryTest.java</title>
	<published>2009-12-15T04:02:38Z</published>
	<updated>2009-12-15T04:02:38Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;Thanks for taking care of this. &amp;nbsp; Sorry about that.
&lt;br&gt;&lt;br&gt;For some reason, my eclipse workspace isn't flagging these like it's supposed 
&lt;br&gt;to unless I completely clean the project and rebuild. &amp;nbsp; Not sure what's going 
&lt;br&gt;on with it. &amp;nbsp; May need to rebuild my eclipse workspace. &amp;nbsp;:-(
&lt;br&gt;&lt;br&gt;Dan
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue December 15 2009 6:11:37 am &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26793766&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bharath@...&lt;/a&gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Author: bharath
&lt;br&gt;&amp;gt; Date: Tue Dec 15 11:11:37 2009
&lt;br&gt;&amp;gt; New Revision: 890756
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; URL: &lt;a href=&quot;http://svn.apache.org/viewvc?rev=890756&amp;view=rev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/viewvc?rev=890756&amp;view=rev&lt;/a&gt;&lt;br&gt;&amp;gt; Log:
&lt;br&gt;&amp;gt; Fixed a checkstyle error due to unused import.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Modified:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt; &amp;nbsp;cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/service/factory/
&lt;br&gt;&amp;gt; ServerFactoryTest.java
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Modified:
&lt;br&gt;&amp;gt; &amp;nbsp;cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/service/factory/
&lt;br&gt;&amp;gt; ServerFactoryTest.java URL:
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/simple/src/test/java/or&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/simple/src/test/java/or&lt;/a&gt;&lt;br&gt;&amp;gt; g/apache/cxf/service/factory/ServerFactoryTest.java?rev=890756&amp;r1=890755&amp;r2
&lt;br&gt;&amp;gt; =890756&amp;view=diff
&lt;br&gt;&amp;gt; &amp;nbsp;==========================================================================
&lt;br&gt;&amp;gt; ==== ---
&lt;br&gt;&amp;gt; &amp;nbsp;cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/service/factory/
&lt;br&gt;&amp;gt; ServerFactoryTest.java (original) +++
&lt;br&gt;&amp;gt; &amp;nbsp;cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/service/factory/
&lt;br&gt;&amp;gt; ServerFactoryTest.java Tue Dec 15 11:11:37 2009 @@ -27,7 +27,6 @@
&lt;br&gt;&amp;gt; &amp;nbsp;import org.apache.cxf.endpoint.Server;
&lt;br&gt;&amp;gt; &amp;nbsp;import org.apache.cxf.endpoint.ServerImpl;
&lt;br&gt;&amp;gt; &amp;nbsp;import org.apache.cxf.frontend.ServerFactoryBean;
&lt;br&gt;&amp;gt; -import org.apache.cxf.helpers.XMLUtils;
&lt;br&gt;&amp;gt; &amp;nbsp;import org.apache.cxf.jaxb.JAXBDataBinding;
&lt;br&gt;&amp;gt; &amp;nbsp;import org.apache.cxf.message.Message;
&lt;br&gt;&amp;gt; &amp;nbsp;import org.apache.cxf.service.model.EndpointInfo;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26793766&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-svn-commit%3A-r890756----cxf-trunk-rt-frontend-simple-src-test-java-org-apache-cxf-service-factory-ServerFactoryTest.java-tp26793766p26793766.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26785316</id>
	<title>RE: Should DOSGi have it's own JIRA?</title>
	<published>2009-12-14T13:35:16Z</published>
	<updated>2009-12-14T13:35:16Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Possibly yes for DOSGI, DOSGI RI project is a higher-level project given
&lt;br&gt;that it incorporates CXF, and there is a link to the Distributed OSGi
&lt;br&gt;project from the main CXF page so moving the issues part into a separate
&lt;br&gt;JIRA should not affect the visibility of the project, as far as users
&lt;br&gt;checking the CXF is concerned... David and Eoghan and others may have a
&lt;br&gt;different opinion.
&lt;br&gt;&lt;br&gt;However, I'm much more pessimistic about moving the JAXRS component into
&lt;br&gt;a separate subproject for a number of reasons. 
&lt;br&gt;&lt;br&gt;It is really another frontend, like Cobra and JAXWS. It is on the same
&lt;br&gt;level as those frontends are. It is kind of contributing to CXF being
&lt;br&gt;seen as a more complete framework capable of hosting different types of
&lt;br&gt;services thus moving it away would start contributing to a more
&lt;br&gt;'fragmented' view of what CXF is.
&lt;br&gt;Another reason is that often enough CXF JAXRS fixes 'span' multiple
&lt;br&gt;components in one go, say HTTP transport and common and the JAXRS
&lt;br&gt;frontend itself. So it make it more difficult to push such fixes into
&lt;br&gt;CXF JAXRS snapshots.
&lt;br&gt;&lt;br&gt;This is what I think at the moment.
&lt;br&gt;Thanks, Sergey &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Daniel Kulp [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785316&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;] 
&lt;br&gt;Sent: 14 December 2009 19:39
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785316&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dev@...&lt;/a&gt;
&lt;br&gt;Subject: Should DOSGi have it's own JIRA?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Quick question:
&lt;br&gt;&lt;br&gt;What are peoples thoughts about pulling the DOSGi stuff from the &amp;quot;CXF&amp;quot;
&lt;br&gt;JIRA 
&lt;br&gt;into a separate CXFDOSGI (or just DOSGI) JIRA in the &amp;quot;Category: CXF&amp;quot;
&lt;br&gt;section 
&lt;br&gt;at:
&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/secure/BrowseProjects.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/secure/BrowseProjects.jspa&lt;/a&gt;&lt;br&gt;&lt;br&gt;There are pluses and minuses:
&lt;br&gt;DOSGi has it's own release schedule, own version numbers,etc.... Thus,
&lt;br&gt;having 
&lt;br&gt;it's own project in JIRA allows it to track those things properly
&lt;br&gt;without it 
&lt;br&gt;affecting the main CXF project.
&lt;br&gt;&lt;br&gt;Also, DOSGi has it's own components such as its own build system, local
&lt;br&gt;vs 
&lt;br&gt;remote discovery, etc... &amp;nbsp; Having it's own JIRA project would allow
&lt;br&gt;defining 
&lt;br&gt;nice components for it's own uses.
&lt;br&gt;&lt;br&gt;On the minus side, it does kind of lower the visibility of the DOSGi
&lt;br&gt;issues in 
&lt;br&gt;the CXF JIRA since they wouldn't be there. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;One COULD argue that JAX-RS could also be pulled out. &amp;nbsp; However, the
&lt;br&gt;JAX-RS 
&lt;br&gt;stuff is currently part of the main build and released as part of the
&lt;br&gt;full CXF 
&lt;br&gt;stuff. &amp;nbsp;Thus, keeping it in is less of an issue. &amp;nbsp;If we eventually split
&lt;br&gt;the 
&lt;br&gt;builds into a &amp;quot;core&amp;quot;, &amp;quot;webservices&amp;quot;, &amp;quot;rest&amp;quot;, etc... then it may make
&lt;br&gt;sense to 
&lt;br&gt;do so at that time.
&lt;br&gt;&lt;br&gt;Thoughts?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785316&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Should-DOSGi-have-it%27s-own-JIRA--tp26783525p26785316.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26783525</id>
	<title>Should DOSGi have it's own JIRA?</title>
	<published>2009-12-14T11:39:17Z</published>
	<updated>2009-12-14T11:39:17Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;Quick question:
&lt;br&gt;&lt;br&gt;What are peoples thoughts about pulling the DOSGi stuff from the &amp;quot;CXF&amp;quot; JIRA 
&lt;br&gt;into a separate CXFDOSGI (or just DOSGI) JIRA in the &amp;quot;Category: CXF&amp;quot; section 
&lt;br&gt;at:
&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/secure/BrowseProjects.jspa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/secure/BrowseProjects.jspa&lt;/a&gt;&lt;br&gt;&lt;br&gt;There are pluses and minuses:
&lt;br&gt;DOSGi has it's own release schedule, own version numbers,etc.... Thus, having 
&lt;br&gt;it's own project in JIRA allows it to track those things properly without it 
&lt;br&gt;affecting the main CXF project.
&lt;br&gt;&lt;br&gt;Also, DOSGi has it's own components such as its own build system, local vs 
&lt;br&gt;remote discovery, etc... &amp;nbsp; Having it's own JIRA project would allow defining 
&lt;br&gt;nice components for it's own uses.
&lt;br&gt;&lt;br&gt;On the minus side, it does kind of lower the visibility of the DOSGi issues in 
&lt;br&gt;the CXF JIRA since they wouldn't be there. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;One COULD argue that JAX-RS could also be pulled out. &amp;nbsp; However, the JAX-RS 
&lt;br&gt;stuff is currently part of the main build and released as part of the full CXF 
&lt;br&gt;stuff. &amp;nbsp;Thus, keeping it in is less of an issue. &amp;nbsp;If we eventually split the 
&lt;br&gt;builds into a &amp;quot;core&amp;quot;, &amp;quot;webservices&amp;quot;, &amp;quot;rest&amp;quot;, etc... then it may make sense to 
&lt;br&gt;do so at that time.
&lt;br&gt;&lt;br&gt;Thoughts?
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26783525&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Should-DOSGi-have-it%27s-own-JIRA--tp26783525p26783525.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26752005</id>
	<title>Re: Issues in generated Java code using apache CXF</title>
	<published>2009-12-11T13:56:09Z</published>
	<updated>2009-12-11T13:56:09Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">&lt;br&gt;Couple of notes:
&lt;br&gt;&lt;br&gt;1) The stack trace line: com.sun.xml.internal.ws.model....
&lt;br&gt;shows you aren't using CXF at all. &amp;nbsp;You are using the JAX-WS RI built into 
&lt;br&gt;java6. &amp;nbsp; 
&lt;br&gt;&lt;br&gt;2) &amp;nbsp;&amp;quot;IllegalAnnotationExceptions java.lang.StackTraceElement does not have a 
&lt;br&gt;no-arg default constructor&amp;quot;
&lt;br&gt;&lt;br&gt;This usually means someplace a bean is holding onto an Exception or similar 
&lt;br&gt;that isn't marked transient.
&lt;br&gt;&lt;br&gt;Dan
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;On Thu December 10 2009 5:04:14 pm rakeshrai wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I was trying to find out how to fix this issue which is caused after the
&lt;br&gt;&amp;gt; generated Apache CXF code. This never happened in Axis generated Java code.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Its complaining about some annotation which I don’t understand how to fix
&lt;br&gt;&amp;gt; the same.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In LnItm.java, I see the variables defined as shown below.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; protected int dropShipInd;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; @XmlElementRef(name = &amp;quot;lOA&amp;quot;, namespace =
&lt;br&gt;&amp;gt; &amp;quot;&lt;a href=&quot;http://ws.taxwareenterprise.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ws.taxwareenterprise.com&lt;/a&gt;&amp;quot;, type = JAXBElement.class)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Its hard to find out what exactly needs to be done to fix the error as
&lt;br&gt;&amp;gt; &amp;nbsp;shown below.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Caused by: java.security.PrivilegedActionException:
&lt;br&gt;&amp;gt; com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException: 6 counts
&lt;br&gt;&amp;gt; of IllegalAnnotationExceptions java.lang.StackTraceElement does not have a
&lt;br&gt;&amp;gt; no-arg default constructor.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; this problem is related to the following location:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.StackTraceElement
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at public java.lang.StackTraceElement[]
&lt;br&gt;&amp;gt; java.lang.Throwable.getStackTrace()
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.Throwable
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at public java.lang.Throwable java.rmi.RemoteException.detail
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.rmi.RemoteException
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.axis.AxisFault
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.TweFault
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There's no ObjectFactory with an @XmlElementDecl for the element
&lt;br&gt;&amp;gt; {&lt;a href=&quot;http://ws.taxwareenterprise.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ws.taxwareenterprise.com&lt;/a&gt;}lOA.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; this problem is related to the following location:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected javax.xml.bind.JAXBElement
&lt;br&gt;&amp;gt; com.taxwareenterprise.ws.cxf.LnItm.loa
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.LnItm
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForcLnItm
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected java.util.List
&lt;br&gt;&amp;gt; com.taxwareenterprise.ws.cxf.ForcLnItms.forcLnItm
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForcLnItms
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected com.taxwareenterprise.ws.cxf.ForcLnItms
&lt;br&gt;&amp;gt; com.taxwareenterprise.ws.cxf.ForcDoc.forcLnItms
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForcDoc
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected com.taxwareenterprise.ws.cxf.ForcDoc
&lt;br&gt;&amp;gt; com.taxwareenterprise.ws.cxf.ForceCalculationRequest.forcDoc
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForceCalculationRequest
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; at
&lt;br&gt;&amp;gt; com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException$Builder.ch
&lt;br&gt;&amp;gt; eck(IllegalAnnotationsException.java:66) at
&lt;br&gt;&amp;gt; com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBCon
&lt;br&gt;&amp;gt; textImpl.java:422) at
&lt;br&gt;&amp;gt; com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl.&amp;lt;init&amp;gt;(JAXBContextImpl
&lt;br&gt;&amp;gt; .java:270) at
&lt;br&gt;&amp;gt; com.sun.xml.internal.bind.v2.ContextFactory.createContext(ContextFactory.ja
&lt;br&gt;&amp;gt; va:103) at
&lt;br&gt;&amp;gt; com.sun.xml.internal.bind.api.JAXBRIContext.newInstance(JAXBRIContext.java:
&lt;br&gt;&amp;gt; 89) at
&lt;br&gt;&amp;gt; com.sun.xml.internal.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelIm
&lt;br&gt;&amp;gt; pl.java:126) at
&lt;br&gt;&amp;gt; com.sun.xml.internal.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelIm
&lt;br&gt;&amp;gt; pl.java:124) ... 11 more
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26752005&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Issues-in-generated-Java-code-using-apache-CXF-tp26735355p26752005.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26748390</id>
	<title>Re: Proposal : HTTP view for managed endpoints</title>
	<published>2009-12-11T09:32:25Z</published>
	<updated>2009-12-11T09:32:25Z</updated>
	<author>
		<name>Cyrille Le Clerc-5</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Dear all,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;It's a very appealing feature, I would like to have it not only as
&lt;br&gt;html but also as rss and in a shell client scripts friendly format.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Here are my humble insights about web services monitoring and management :
&lt;br&gt;&lt;br&gt;* Exposing management and monitoring features on web pages can be a
&lt;br&gt;security breach (try to Google the management URI of your favorite
&lt;br&gt;open source Java EE server, it's frightening :-) ).
&lt;br&gt;&lt;br&gt;* Nobody is perfect, I may expose a bunch of management jsp pages but
&lt;br&gt;I protect them Spring Security URI based authentication and
&lt;br&gt;authorization.
&lt;br&gt;&lt;br&gt;* Monitoring counters are often difficult to render on a simple web
&lt;br&gt;page because they most of the time are trends-up measures (1) and
&lt;br&gt;rendering them requires correlation to create &amp;quot;Per Minute&amp;quot; indicators
&lt;br&gt;(invocations per minute, etc).
&lt;br&gt;&lt;br&gt;* Web based monitoring would a nice and appealing feature but I feel
&lt;br&gt;most production scenarios will prefer JMX oriented monitoring tools
&lt;br&gt;for security, graphing and recording. I am personally very happy with
&lt;br&gt;the Hyperic HQ Open Source edition to monitor CXF and JBoss Jopr (also
&lt;br&gt;Open Source) seems to be as efficient.
&lt;br&gt;&lt;br&gt;* a REST based API would even be more powerful than raw html ! It
&lt;br&gt;would be great for non JMX enabled monitoring tools (Nagios, etc) to
&lt;br&gt;have shell script friendly format (). We would expose basic html for
&lt;br&gt;web browsers, RSS for widgets and dashboards, raw text for non JMX
&lt;br&gt;enabled monitoring tools (Nagios, etc).
&lt;br&gt;&lt;br&gt;* Such a web based monitoring solution could be very generic and not
&lt;br&gt;only apply to CXF metrics ; the forthcoming Spring 3 @ManagedMetric
&lt;br&gt;annotation could help.
&lt;br&gt;&lt;br&gt;* For security reasons, I would feel more comfortable with a dedicated
&lt;br&gt;base URI to ease URL based protection (with Spring Security, web.xml,
&lt;br&gt;etc). Using the @RolesAllowed standard annotation would be key to ease
&lt;br&gt;method level authorization.
&lt;br&gt;&lt;br&gt;* By the way, would it make sense to look at the @RolesAllowed
&lt;br&gt;standard annotation to protect the existing web services list (ie call
&lt;br&gt;to &amp;quot;/services/&amp;quot;) ?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;I hope I was not too long :-)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Cyrille
&lt;br&gt;--
&lt;br&gt;Cyrille Le Clerc
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26748390&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;cleclerc@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;(1) Hyperic HQ doc : &amp;quot;trendsup: Values will always increase. Because
&lt;br&gt;of that, the rate of change becomes more important, so HQ
&lt;br&gt;automatically creates a secondary metric: a per-minute rate
&lt;br&gt;measurement...&amp;quot;. See
&lt;br&gt;&lt;a href=&quot;http://support.hyperic.com/display/DOC/Metric+Parameters&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://support.hyperic.com/display/DOC/Metric+Parameters&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri, Dec 11, 2009 at 2:33 PM, Sergey Beryozkin &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26748390&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sberyozk@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now that both JAXWS and JAXRS operations can be monitored over JMX (hope Cyrille will confirm it later on), I reckon it would be cool to let users issue _manage queries against individual endpoints and get an HTML view, rather than having to launch a JConsole, ex :
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; GET &lt;a href=&quot;http://myjaxwsservice?_manage&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myjaxwsservice?_manage&lt;/a&gt;&lt;br&gt;&amp;gt; GET &lt;a href=&quot;http://myjaxrsservice?_manage&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myjaxrsservice?_manage&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; A custom QueryHandler implementation, registered as part of the management feature, will convert the information from the JMX mbeans into an HTML page. For a start, it can just do some plain HTML in code. At the next stage, we can think about produceing nicer pages and adding some polling JavaScript code, etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any comments ? I think it would be a very nice feature which would make the CXF management feature very visible to users. If someone could take upon this task then it would be appreciated a lot. Perhaps I might also look into it later on.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; cheers, Sergey
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-%3A-HTTP-view-for-managed-endpoints-tp26744378p26748390.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26744378</id>
	<title>Proposal : HTTP view for managed endpoints</title>
	<published>2009-12-11T05:33:39Z</published>
	<updated>2009-12-11T05:33:39Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;Now that both JAXWS and JAXRS operations can be monitored over JMX (hope Cyrille will confirm it later on), I reckon it would be cool to let users issue _manage queries against individual endpoints and get an HTML view, rather than having to launch a JConsole, ex :
&lt;br&gt;&lt;br&gt;GET &lt;a href=&quot;http://myjaxwsservice?_manage&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myjaxwsservice?_manage&lt;/a&gt;&lt;br&gt;GET &lt;a href=&quot;http://myjaxrsservice?_manage&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://myjaxrsservice?_manage&lt;/a&gt;&lt;br&gt;&lt;br&gt;A custom QueryHandler implementation, registered as part of the management feature, will convert the information from the JMX mbeans into an HTML page. For a start, it can just do some plain HTML in code. At the next stage, we can think about produceing nicer pages and adding some polling JavaScript code, etc.
&lt;br&gt;&lt;br&gt;Any comments ? I think it would be a very nice feature which would make the CXF management feature very visible to users. If someone could take upon this task then it would be appreciated a lot. Perhaps I might also look into it later on.
&lt;br&gt;&lt;br&gt;cheers, Sergey
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Proposal-%3A-HTTP-view-for-managed-endpoints-tp26744378p26744378.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26735355</id>
	<title>Issues in generated Java code using apache CXF</title>
	<published>2009-12-10T14:04:13Z</published>
	<updated>2009-12-10T14:04:13Z</updated>
	<author>
		<name>rakeshrai</name>
	</author>
	<content type="html">I was trying to find out how to fix this issue which is caused after the generated Apache CXF code. This never happened in Axis generated Java code.
&lt;br&gt;&lt;br&gt;Its complaining about some annotation which I don’t understand how to fix the same.
&lt;br&gt;&lt;br&gt;&lt;br&gt;In LnItm.java, I see the variables defined as shown below.
&lt;br&gt;&amp;nbsp; &amp;nbsp; protected int dropShipInd;
&lt;br&gt;&amp;nbsp; &amp;nbsp; @XmlElementRef(name = &amp;quot;lOA&amp;quot;, namespace = &amp;quot;&lt;a href=&quot;http://ws.taxwareenterprise.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ws.taxwareenterprise.com&lt;/a&gt;&amp;quot;, type = JAXBElement.class)
&lt;br&gt;&lt;br&gt;Its hard to find out what exactly needs to be done to fix the error as shown below.
&lt;br&gt;&lt;br&gt;Caused by: java.security.PrivilegedActionException: com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException: 6 counts of IllegalAnnotationExceptions java.lang.StackTraceElement does not have a no-arg default constructor.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; this problem is related to the following location:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.StackTraceElement
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.Throwable
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at public java.lang.Throwable java.rmi.RemoteException.detail
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.rmi.RemoteException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.axis.AxisFault
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.TweFault
&lt;br&gt;&lt;br&gt;There's no ObjectFactory with an @XmlElementDecl for the element {&lt;a href=&quot;http://ws.taxwareenterprise.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ws.taxwareenterprise.com&lt;/a&gt;}lOA.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; this problem is related to the following location:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected javax.xml.bind.JAXBElement com.taxwareenterprise.ws.cxf.LnItm.loa
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.LnItm
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForcLnItm
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected java.util.List com.taxwareenterprise.ws.cxf.ForcLnItms.forcLnItm
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForcLnItms
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected com.taxwareenterprise.ws.cxf.ForcLnItms com.taxwareenterprise.ws.cxf.ForcDoc.forcLnItms
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForcDoc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at protected com.taxwareenterprise.ws.cxf.ForcDoc com.taxwareenterprise.ws.cxf.ForceCalculationRequest.forcDoc
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.taxwareenterprise.ws.cxf.ForceCalculationRequest
&lt;br&gt;&lt;br&gt;&lt;br&gt;at com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:66)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:422)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl.&amp;lt;init&amp;gt;(JAXBContextImpl.java:270)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.internal.bind.v2.ContextFactory.createContext(ContextFactory.java:103)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.internal.bind.api.JAXBRIContext.newInstance(JAXBRIContext.java:89)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.internal.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:126)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; at com.sun.xml.internal.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:124)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ... 11 more
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Issues-in-generated-Java-code-using-apache-CXF-tp26735355p26735355.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26712864</id>
	<title>Re: Validation for incoming request, not for response</title>
	<published>2009-12-09T08:10:09Z</published>
	<updated>2009-12-09T08:10:09Z</updated>
	<author>
		<name>dkulp</name>
	</author>
	<content type="html">On Wed December 9 2009 4:35:38 am Heemskerk, Marcel (M.) wrote:
&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is there a way to enable XSD validation for the incoming request, whilst
&lt;br&gt;&amp;gt; not validating the outgoing response?
&lt;br&gt;&lt;br&gt;You can write an interceptor that lives early in the out &amp;nbsp;chain that just 
&lt;br&gt;does:
&lt;br&gt;&lt;br&gt;message.put(&amp;quot;schema-validation-enabled&amp;quot;, Boolean.FALSE) 
&lt;br&gt;to turn it off on that chain.
&lt;br&gt;&lt;br&gt;You can TRY doing this in the WebServiceContext in your impl as well. &amp;nbsp; I'm 
&lt;br&gt;not sure if the outgoing chain would pick it up. &amp;nbsp; I think it would, but I'm 
&lt;br&gt;not 100% sure.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Daniel Kulp
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26712864&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Status-of-Atom-logging-stuff....-tp26685517p26712864.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26707448</id>
	<title>Validation for incoming request, not for response</title>
	<published>2009-12-09T01:35:38Z</published>
	<updated>2009-12-09T01:35:38Z</updated>
	<author>
		<name>Heemskerk, Marcel (M.)</name>
	</author>
	<content type="html">&lt;br&gt;Hello,
&lt;br&gt;&lt;br&gt;Is there a way to enable XSD validation for the incoming request, whilst
&lt;br&gt;not validating the outgoing response?
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;Marcel Heemskerk
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Status-of-Atom-logging-stuff....-tp26685517p26707448.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26691654</id>
	<title>Re: org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushTest stack traces and stuff</title>
	<published>2009-12-08T02:22:54Z</published>
	<updated>2009-12-08T02:22:54Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">There were a couple of System.out.println() statements printing nice feeds :-), they've been removed now.
&lt;br&gt;Note the AtomPushEngine might do System.err.println() occasionally, but I believe it is the only way AtomPushEngine can log itself, 
&lt;br&gt;at least at the moment. I'm not sure how feasible it is for it to avoid handling its own logging events...
&lt;br&gt;&lt;br&gt;Sergey
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushTest is spitting all
&lt;br&gt;&amp;gt; kinds of stuff out to stdout/stderr. &amp;nbsp; Can that be fixed?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Daniel Kulp
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26691654&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushTest-stack-traces-and-stuff-tp26685136p26691654.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26691174</id>
	<title>Re: Status of Atom logging stuff....</title>
	<published>2009-12-08T01:47:35Z</published>
	<updated>2009-12-08T01:47:35Z</updated>
	<author>
		<name>Sergey Beryozkin-2</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Quick question about the Atom logging stuff...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Is this intended for 2.2.6 or just for 2.3? &amp;nbsp; &amp;nbsp; Just wondering if I need to 
&lt;br&gt;&amp;gt; merge it back or not.
&lt;br&gt;&lt;br&gt;I was planning to backmerge the Andy's commits, just haven't had a chance yet. I'll unblock the relevant revisions if needed
&lt;br&gt;&lt;br&gt;cheers, Sergey
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Daniel Kulp
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26691174&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Status-of-Atom-logging-stuff....-tp26685517p26691174.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26686430</id>
	<title>Re: [RESULT] [VOTE] Cyrille Le Clerc for committer....</title>
	<published>2009-12-07T15:48:58Z</published>
	<updated>2009-12-07T15:48:58Z</updated>
	<author>
		<name>Cyrille Le Clerc-5</name>
	</author>
	<content type="html">&amp;nbsp; &amp;nbsp;Dear community,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;It's a great honor for me to be welcomed in the Apache CXF community.
&lt;br&gt;It's a great honor to contribute to a foundation that changed the face of
&lt;br&gt;Open Source and I am specially touched to join a team that provides one of
&lt;br&gt;the most widely used web services technologies.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;I will do my best to deserve your confidence, I must admit that I am very
&lt;br&gt;impressed :-) .
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;Cyrille.
&lt;br&gt;&lt;br&gt;On Mon, Dec 7, 2009 at 8:08 PM, Daniel Kulp &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26686430&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; With 13 +1 votes and no other votes, this vote passes.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Welcome aboard Cyrille!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu December 3 2009 10:48:29 am Daniel Kulp wrote:
&lt;br&gt;&amp;gt; &amp;gt; Cyrille has submitted several patches to various management and logging
&lt;br&gt;&amp;gt; &amp;gt; related things for CXF starting way back in February. &amp;nbsp; I think he's up
&lt;br&gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;7 or 8 submitted patches. &amp;nbsp; &amp;nbsp;He's also been hanging around the user list
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;for almost a year answering some questions. &amp;nbsp; &amp;nbsp;Thus, I think he's a bit
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;over due to become a committer.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Here is my +1.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Vote will be open for at least 72 hours.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Daniel Kulp
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26686430&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dkulp@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dankulp.com/blog&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dankulp.com/blog&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-VOTE--Cyrille-Le-Clerc-for-committer....-tp26628203p26686430.html" />
</entry>

</feed>
