Re: CORS

2011-11-13 Thread Sergey Beryozkin
Very good, thanks, On 11/11/11 19:46, sergkorney wrote: Thank you very much for the hint. I have added initial draft to support handling authenticated CORS requests for GET methods. And it works just fine (with cxf 2.5.0). Here is jaxrs input filter : public class JaxrsCorsInputFilter

Re: CORS

2011-11-13 Thread Sergey Beryozkin
Hi, On 12/11/11 07:35, K Fung wrote: Hello, Are there any plans to expand this code so that covers both 5.1 and 5.2 of the CORS specification (http://www.w3.org/TR/cors?) In particular, - Not blocking the request of it's an OPTIONS request but doesn't contain the Origin header agreed, a

Re: CORS

2011-11-11 Thread Sergey Beryozkin
On 11/11/11 01:30, sergkorney wrote: Let start from adding JAX-RS CORS filter. I think mostly CORS support is really needed for RESTful services. I'm new to CXF but have some experience with using CORS filter mentioned here http://software.dzhuvinov.com/cors-filter.html

Re: How to contribue a CXF JAX-RS OSGi Sample?

2011-11-11 Thread Sergey Beryozkin
Hi, how is your demo going, hope I haven't discouraged with my comments :-) Sergey On 19/10/11 10:28, Sergey Beryozkin wrote: By the way, at the next stage we can also probably create the Activator part in the jaxrs fronentend/osgi - this can be optionally enabled and what it will do

Re: [VOTE] Release Apache CXF 2.4.4-3rd try

2011-11-07 Thread Sergey Beryozkin
+1 Sergey On 04/11/11 13:58, Freeman Fang wrote: Hi All, We've resolved over 35 issues since 2.4.3 and thus is time for a release. List of issues: 2.4.4: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310511version=12318347 The Maven staging areas are at: 2.4.4:

Re: CORS

2011-11-07 Thread Sergey Beryozkin
Hi Benson On 07/11/11 04:04, Benson Margulies wrote: Has anyone considered adding CORS (http://www.w3.org/TR/cors/) to CXF REST services? Obviously, it could be coded one service at a time, but it looks handy. Can you look at

Re: CORS

2011-11-07 Thread Sergey Beryozkin
On 07/11/11 14:39, Benson Margulies wrote: Why a filter? I guess, the advantage would be that it would work for SOAP and REST both. On the other hand, it's kind of 'over there'. Does JAX-RS have any other way to share out adding a handler for OPTIONS (and access control checking on Origin) that

Re: [VOTE] Release Apache CXF 2.5.0

2011-10-31 Thread Sergey Beryozkin
+1 Thanks, Sergey On 2011-10-29, at 上午7:32, Daniel Kulp wrote: It's been over 6 month since 2.4.0 was released. Since then, we've added quite a bit of new functionality, new features, enhancements, etc... Thus, time for a release! The maven staging area:

Re: How to contribue a CXF JAX-RS OSGi Sample?

2011-10-18 Thread Sergey Beryozkin
Hi Thanks for this patch, I think it's a nice interesting example, shows the bare Activator and ServiceTracker in action... Please see comments inline On 18/10/11 05:28, K Fung wrote: Hi all, I've uploaded the initial code sample to https://issues.apache.org/jira/browse/CXF-3859 to garner

Re: rest matching patterns

2011-10-14 Thread Sergey Beryozkin
np, having an extra test won't be a problem :-) Cheers, Sergey On 13/10/11 22:40, Romain Manni-Bucau wrote: yep in 2.4.3 it works (i think the snapshot was not deployed last time) sorry the my last useless mail and thank you very much for your time - Romain 2011/10/13 Sergey

Re: rest matching patterns

2011-10-13 Thread Sergey Beryozkin
Hi On 12/10/11 21:34, Romain Manni-Bucau wrote: Hi, thanks for this reply, i use cxf through OpenEJB and the version is the 2.4.1, do you know if it was already included? There was only one relevant fix after 2.4.1: https://issues.apache.org/jira/browse/CXF-3608 If you have in 2.4.1 class

Re: rest matching patterns

2011-10-13 Thread Sergey Beryozkin
It does not work with 2.4.2 ? Can you also send me the signature of the 2 methods ? cheers, Sergey On 13/10/11 16:46, Romain Manni-Bucau wrote: it doesn't seem to work, maybe because the type is not matching: /foo/123 /foo/{id} here id and 123 are long so it works but /foo/{id} /foo/bar

Re: rest matching patterns

2011-10-13 Thread Sergey Beryozkin
Give me the complete info please: @PathParam, HTTP verb present on both methods or not, @Consumes/@Produces, I'm assuming it is @Path(/foo/bar) for foo() and @Path(/foo/{id}) for foo(Lomg l) On 13/10/11 17:01, Romain Manni-Bucau wrote: I tried 2.4.3. Signature 1 foo() Signature 2 foo(Long l)

Re: rest matching patterns

2011-10-13 Thread Sergey Beryozkin
Hi Have a look at these revisions: trunk: http://svn.apache.org/viewvc?rev=1183107view=rev 2.4.4-SNAPSHOT: http://svn.apache.org/viewvc?rev=1183113view=rev It just works. So I'm wondering, if it the fact that the invocation is going through OpenEJB integration layer that makes a difference ?

Re: rest matching patterns

2011-10-12 Thread Sergey Beryozkin
Hi That must work, which CXF version do you use ? I've added a test locally and it just works, see the diff below as this has to be already tested on the trunk, so I'm not merging it at the moment. Try please 2.3.7/2.4.3 thanks, Sergey Index:

Re: Trailing Slash added in POST

2011-10-11 Thread Sergey Beryozkin
Hi Mark On 10/10/11 14:40, KramKroc wrote: Hi Sergey, thanks for the pointer. I recently had to look at this again as the code I added was not too robust :) Could you point me at the ticket that was raised originally for this issue or else where abouts in the code (class?) that the fix was

Re: JSON ignore namespace behavior in IgnoreContentJettisonWriter

2011-10-10 Thread Sergey Beryozkin
Hi On 10/10/11 17:44, K Fung wrote: Hi Sergey, I should have checked trunk before writing that e-mail :( no problems :-) It is indeed fixed in trunk (and thus I assume the latest 2.3.x and 2.4.x). Yes. Cheers, Sergey Thanks for the timely reply! Regards, kl On Mon, Oct 10, 2011 at

Re: How to contribue a CXF JAX-RS OSGi Sample?

2011-10-07 Thread Sergey Beryozkin
Hi I think I like all the options you suggested :-) Please see comments inline On 07/10/11 19:51, K Fung wrote: Hi everyone, (long time lurker here ... thought it was about them we started to contribute something back) As everyone who's played with CXF JAX-RS and OSGI knows, it's not too

Re: [VOTE] Release Apache CXF 2.3.7 and 2.4.3.

2011-10-04 Thread Sergey Beryozkin
+1 On 04/10/11 19:24, Jeff Genender wrote: +1 Jeff On Oct 4, 2011, at 11:09 AM, Daniel Kulp wrote: We've resolved over 94 issues since 2.4.2 and thus is time for a release and over 40 issues ported back for 2.3.7. List of issues: 2.4.3:

Re: [DISCUSS] Move some modules around

2011-09-28 Thread Sergey Beryozkin
+1. I'm also thinking of splitting rt/frontend/jaxrs a bit later on, to have the core module, the existing client API which I'd like to maintain after moving to jaxrs 2.0, and a module containing various extensions Cheers, Sergey On 27/09/11 20:45, Daniel Kulp wrote: I'd like to move some

Removing two more modules ?

2011-09-20 Thread Sergey Beryozkin
Hi What do you think of dropping a couple of modules for 2.5: - both rt-bindings-local and rt-bindings-object seem to do the same thing, I recall there were some interesting discussions around these two modules awhile back :-), but today I guess it's more important which module we actually

OAuth 1.0 contribution on the trunk

2011-09-19 Thread Sergey Beryozkin
Hi I've been working during the last week exclusively on migrating a GSOC 2010 contribution from Lukasz Moren to the trunk. It proved to be a high quality contribution - many thanks to Lukasz. I've spent most time last week on trying to make things as simple/trivial as possible, as far as

Re: [DISCUSS] - STS framework implementation contribution

2011-09-15 Thread Sergey Beryozkin
Hi On Thursday, September 15, 2011 3:27:06 PM Colm O hEigeartaigh wrote: In my opinion, this implementation will greatly enhance CXF's security story and will help to drive new users to the product. I would like to ask the CXF community for their opinion on this contribution (+1/-1?).

Re: POST request : ListObject input through JSON not being recognized

2011-09-10 Thread Sergey Beryozkin
Hi redirecting to the users list... What exception is thrown ? May be it should be {Users:, note capital 'U' cheers, Sergey On 09/09/11 17:34, ZenEighth wrote: Hi, Using CXF 2.4.2, developing a JAX-RS and JAX-WS combined webservice, which use the same method. Am trying to invoke a POST

Re: Proxies as abstract classes?

2011-08-16 Thread Sergey Beryozkin
when writing tests :-) Cheers, Sergey -- Daniel Kulp dk...@apache.org http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: Proxies as abstract classes?

2011-08-15 Thread Sergey Beryozkin
the utility or practicality of generating a concrete subclass of an abstract class as a proxy? All the standards we conform to are relentless about interfaces, aren't they? -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: [VOTE] Release Apache CXF 2.3.6 and 2.4.2. - take 2

2011-08-11 Thread Sergey Beryozkin
://svn.apache.org/repos/asf/cxf/tags/cxf-2.3.6 This vote will be open for at least 72 hours. -- Daniel Kulp dk...@apache.org http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: rt/rs/security module

2011-08-08 Thread Sergey Beryozkin
Sergey On Thu, Jul 7, 2011 at 5:05 PM, Sergey Beryozkin sberyoz...@gmail.com wrote: Hi, I'm starting experimenting with XML and SAML security, it's the early days, but I'm thinking of introducing a rt/rs/security top-level module, which will have 1. rt/rs/security/xml - just 'basic' XMlSig/Encr

Re: [VOTE] CXF buildutils and xjc utils 2.4.0

2011-08-05 Thread Sergey Beryozkin
/content/repositories/orgapachecxf-007/ This vote will stay open for at least 72 hours. Here is my +1 -- Daniel Kulp dk...@apache.org http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: XSLTJaxbProvider and json

2011-07-31 Thread Sergey Beryozkin
Hi Well, this might be getting a bit involved for this forum, but if anyone has any thoughts I would very much so appreciate hearing them. I am close to getting the XsltJsonProvider working. I actually have it working for writing, but I've run into a conceptual roadblock getting it to work for

Re: why path_info is contextPath + req.getPathInfo()

2011-07-25 Thread Sergey Beryozkin
Hi hi,every body when i extends CXFServlet to dispacth request by http header Content-Type,i found that in AbstractHTTPDestination#setupMessage inMessage.put(Message.REQUEST_URI, req.getRequestURI()); inMessage.put(Message.PATH_INFO, contextPath + req.getPathInfo()); the two statements above

Re: XSLTJaxbProvider and json

2011-07-25 Thread Sergey Beryozkin
/transformationfeature.html Cheers, Sergey Any suggestions/revelations would be greatly appreciated. -- View this message in context: http://cxf.547215.n5.nabble.com/XSLTJaxbProvider-and-json-tp4632954p4632954.html Sent from the cxf-dev mailing list archive at Nabble.com. -- Sergey Beryozkin http

Re: svn commit: r1148432 - in /cxf/branches/2.4.x-fixes: ./ rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/ext/codegen/SourceGenerator.java

2011-07-20 Thread Sergey Beryozkin
Hi Glen @@ -583,7 +583,7 @@ public class SourceGenerator { for (int i = 0; i responseEls.size(); i++) { String statusValue = responseEls.get(0).getAttribute(status); try { -int status = statusValue.isEmpty()

Re: New developer

2011-07-20 Thread Sergey Beryozkin
. Thanks for the response. Amish. On Tue, Jul 19, 2011 at 2:44 PM, Sergey Beryozkin sberyoz...@gmail.comwrote: Hi On Sun, Jul 17, 2011 at 9:06 PM, smly G yfil...@gmail.com wrote: Hi Everyone, I just joined this group and hoping to help out with some development. I have setup the project

Re: Build failed in Jenkins: CXF-Trunk-JDK15 #2226

2011-07-19 Thread Sergey Beryozkin
thanks Aki hi, I replaced the usage of this jdk1.6 string method with the classical version to avoid this build error. regards, aki 2011/7/19 Apache Jenkins Server jenk...@builds.apache.org: See https://builds.apache.org/job/CXF-Trunk-JDK15/2226/changes Changes: [sergeyb] [CXF-3662]

Re: New developer

2011-07-19 Thread Sergey Beryozkin
? Perhaps start with a couple of demos which show say Hibernate and JPA. Or are you referring to a more involved project around transactions, perhaps to do with business activities ? Sergey Amish. -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: Stateless EJB's and JAX-WS (no comment necessary)

2011-07-17 Thread Sergey Beryozkin
? Ryan -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: Stateless EJB's and JAX-WS (no comment necessary)

2011-07-17 Thread Sergey Beryozkin
of a stateless session bean may be a web service client. Only a *stateless *session bean may provide a web service client view. === (page 40) ejb-3_0-fr-spec-ejbcore.pdf EJB Final Release Spec -- Sergey Beryozkin http://sberyozkin.blogspot.com

Re: Trailing Slash added in POST

2011-07-16 Thread Sergey Beryozkin
Hi Hi folks, I'm using the JAXRSClientFactoryBean in a client to submit a POST to a remote server. I've noticed that enough though the URI I supply does not have a trailing slash and I don't supply any path parameters, the URI that is invoked has a trailing slash inserted and the remote server

Re: Welcome Colm to the CXF PMC

2011-07-14 Thread Sergey Beryozkin
and Santuario) and addressing all kinds of security related questions and concerns.    He's definitely a welcome addition to the PMC. Colm, welcome aboard! -- Daniel Kulp dk...@apache.org http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin http

Re: EJBInvoker, progress, observations, questions about EJB creation organization, other various questions.

2011-07-12 Thread Sergey Beryozkin
? Will it be necessary? I just wanted to update you on my progress. The class-scanner in the RP might be moved out of the RP into whatever class creates an EJB IDeployable and packages it into a bean, returing a factory instance. Thanks, Ryan -- Sergey Beryozkin http://sberyozkin.blogspot.com

Re: EJBInvoker, progress, observations, questions about EJB creation organization, other various questions.

2011-07-12 Thread Sergey Beryozkin
described here. Thanks again, Ryan -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: EJBInvoker, progress, observations, questions about EJB creation organization, other various questions.

2011-07-12 Thread Sergey Beryozkin
-progress-observations-questions-about-EJB-creation-organization-other-various-questions-tp4555258p4563210.html Sent from the cxf-dev mailing list archive at Nabble.com. -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: EJBInvoker, progress, observations, questions about EJB creation organization, other various questions.

2011-07-08 Thread Sergey Beryozkin
this message in context: http://cxf.547215.n5.nabble.com/EJBInvoker-progress-observations-questions-about-EJB-creation-organization-other-various-questions-tp4555258p4563226.html Sent from the cxf-dev mailing list archive at Nabble.com. -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend

rt/rs/security module

2011-07-07 Thread Sergey Beryozkin
support as discussed earlier on, etc Just some early thoughts, comments are welcome Thanks, Sergey -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: EJBInvoker, progress, observations, questions about EJB creation organization, other various questions.

2011-07-06 Thread Sergey Beryozkin
the same process... thanks, Sergey Thanks, Ryan -- Sergey Beryozkin http://sberyozkin.blogspot.com Talend - http://www.talend.com

Re: Bean Invoker, Proxy, EasyBeans EJB Remote Home proxy for remote calls

2011-07-01 Thread Sergey Beryozkin
. Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Bean Invoker, Proxy, EasyBeans EJB Remote Home proxy for remote calls

2011-06-29 Thread Sergey Beryozkin
. It definitely does not apply to me though and thus I can't give you any useful advice on how to proceed... Thanks, Sergey Thanks, Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: svn commit: r1141036 - /cxf/dosgi/trunk/pom.xml

2011-06-29 Thread Sergey Beryozkin
     prerequisites -        maven2.0.9/maven +        maven2.2.1/maven      /prerequisites      distributionManagement -- Daniel Kulp dk...@apache.org http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin Application Integration Division of Talend http

Re: Bean Invoker, Proxy, EasyBeans EJB Remote Home proxy for remote calls

2011-06-28 Thread Sergey Beryozkin
Hi Ryan On Tue, Jun 28, 2011 at 3:23 AM, Ryan Zoerner ryanzoer...@gmail.com wrote: When I was debugging the jax-rs example, I placed an @EJB annotation in my Customer class and it showed up in the annotations in cri. Hence, any lifecycle-defining annotations would show up also? Yes, we

Re: Bean Invoker, Proxy, EasyBeans EJB Remote Home proxy for remote calls

2011-06-27 Thread Sergey Beryozkin
Hi Ryan On Mon, Jun 27, 2011 at 5:58 PM, Ryan Zoerner ryanzoer...@gmail.com wrote: Sergey, I have seen the Bean Invoker in cxf. I have just come across the class EJBHomeCallFactory in EasyBeans. I am wondering if it might suit our needs to use this, BeanInvoker, and make BeanInvoker extend

Re: JAXRS EJBInvoker

2011-06-19 Thread Sergey Beryozkin
to a different container. It is now 11:13 which is sort of late for me, so I just listed what I think I know; I did not publish a formal paper here. However, I would like to know whether it sounds like I'm on the right track. Thanks, Ryan -- Sergey Beryozkin Application Integration Division

Re: Expose MBeans in CXF

2011-06-13 Thread Sergey Beryozkin
, Sergey On Thu, Jun 9, 2011 at 1:17 PM, Sergey Beryozkin sberyoz...@gmail.com wrote: Hi Shenglin One thing which you are doing well is introducing subresources, given that both MBean and MBeanCotellection have become the ones. Understanding how subresources work is good in itself. I can see you

Re: [VOTE] Release Apache CXF 2.4.1 - take 2

2011-06-10 Thread Sergey Beryozkin
+1 On Fri, Jun 10, 2011 at 3:38 AM, Daniel Kulp dk...@apache.org wrote: We've resolved over 100 issues since 2.4.1 and thus is time for a release. This is take #2 fixing the attachment issue I found while testing with Camel. List of issues:

Re: Expose MBeans in CXF

2011-06-09 Thread Sergey Beryozkin
! Regards: Shenglin Qiu -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com -- Sergey Beryozkin Application

Re: [VOTE] Release Apache CXF 2.4.1

2011-06-09 Thread Sergey Beryozkin
This vote will be open for at least 72 hours. -- Daniel Kulp dk...@apache.org http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: [VOTE] Release Apache CXF 2.3.5

2011-06-09 Thread Sergey Beryozkin
This vote will be open for at least 72 hours. -- Daniel Kulp dk...@apache.org http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Expose MBeans in CXF

2011-06-08 Thread Sergey Beryozkin
-- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Build failed in Jenkins: CXF-Trunk-JDK15 #2140

2011-06-08 Thread Sergey Beryozkin
Hi, [INFO] - [ERROR] COMPILATION ERROR : [INFO] - [ERROR]

Re: Build failed in Jenkins: CXF-Trunk-JDK15 #2140

2011-06-08 Thread Sergey Beryozkin
in time. Hopefully you can hide those refs somehow :-) thanks, Sergey regards, aki 2011/6/8 Sergey Beryozkin sberyoz...@gmail.com: Hi, [INFO] - [ERROR] COMPILATION ERROR : [INFO

Re: Custom Reuqest Param Name for Bean Request Object

2011-06-08 Thread Sergey Beryozkin
it satisfy your requirement? Biju B On Sun, Jun 5, 2011 at 12:28 PM, Biju Nair biju74tec...@gmail.com wrote: Updated JIRA with path and modified files for the new implementation... On Fri, Jun 3, 2011 at 1:52 AM, Sergey Beryozkin sberyoz...@gmail.comwrote: Your patch contains empty

Re: 2.4.1likely in a day or 3

2011-06-06 Thread Sergey Beryozkin
http://dankulp.com/blog Talend - http://www.talend.com -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Custom Reuqest Param Name for Bean Request Object

2011-06-03 Thread Sergey Beryozkin
am confused on what you mean by empty branches, can you just elaborate? Do you mean we need to have only MapString,ListPrimitive and not MapString,Primitive? On Thu, Jun 2, 2011 at 1:46 PM, Sergey Beryozkin sberyoz...@gmail.comwrote: Please check a previous message, we need a better Map check

Re: Expose MBeans in CXF

2011-06-01 Thread Sergey Beryozkin
! Regards: Shenglin Qiu -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Expose MBeans in CXF

2011-05-31 Thread Sergey Beryozkin
Hi Shenglin Good progress, some comments below Function 1: (0 - 5 is continuous, no gap) Jmx Server: sub-resource locator http://localhost:8080/services/jmx/mbean/0 http://localhost:8080/services/jmx/mbean/1 The id allocation (0, 1, etc) has to be thread safe Function 2: Note: search

Re: Expose MBeans in CXF

2011-05-31 Thread Sergey Beryozkin
:) BTW, it is more easy to try and test implementation codes with help of git. On 5/31/11 9:14 PM, Sergey Beryozkin wrote: Hi Shenglin submitted ICLA for him be able to start working in the sandbox, he probably didn't get it approved yet Cheers, Sergey On Tue, May 31, 2011 at 2:00 PM, Willem

Re: Expose MBeans in CXF

2011-05-27 Thread Sergey Beryozkin
Regards: Shenglin Qiu -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-25 Thread Sergey Beryozkin
handleBean(...) - Added another if clause } else if (InjectionUtils.isSupportedMap(type)) { Methods Added isSupportedMap mergeMap convertMultimapToMap injectIntoMap --   On Tue, May 24, 2011 at 4:36 AM, Sergey Beryozkin sberyoz...@gmail.comwrote: Actually, I can see

Re: some thoughts that I wanted to post, in regards to RP, CRI, Exceptions, and a class scanner

2011-05-24 Thread Sergey Beryozkin
. Thanks, Sergey Thank you. Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-24 Thread Sergey Beryozkin
the actual changes are. I'm going to attach svn properties file from my local snapshot to JIRA, can you please give me a favor and try again with those properties applied ? thanks, Sergey On Fri, May 20, 2011 at 2:26 AM, Sergey Beryozkin sberyoz...@gmail.comwrote: Hi - did you see the comments

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-24 Thread Sergey Beryozkin
ParameterHandler to capture Form, query or path values or XmlJavaTypeAdapter to capture say XML payload). Please, simplify the patch a bit so that only a 'FormParam(), QueryParam(), or PathParam() Map' case can be supported thanks, Sergey On Tue, May 24, 2011 at 12:04 PM, Sergey Beryozkin sberyoz...@gmail.com

Re: jenkins build problem with jaxrs tests CXF-Trunk- JDK15 #2084

2011-05-23 Thread Sergey Beryozkin
) and then with the current code Cheers, Sergey Regards, aki -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: jenkins build problem with jaxrs tests CXF-Trunk- JDK15 #2084

2011-05-23 Thread Sergey Beryozkin
I can also check a bit later on what could've affected the tests. thanks, Sergey regards, aki 2011/5/23 Sergey Beryozkin sberyoz...@gmail.com: Hi Aki On Mon, May 23, 2011 at 10:23 AM, Aki Yoshida elak...@googlemail.com wrote: Hi, My change in DestinationRegistrationImpl to fix CXF 3510

Re: Expose MBeans in CXF

2011-05-21 Thread Sergey Beryozkin
the concatenation ? We can get hundreds of CXF MBeans in the production environment, so IMHO it would be simpler to have /mbean/199 identifying a particular MBean, Cheers, Sergey Regards: Shenglin Qiu -- Sergey Beryozkin Application

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-20 Thread Sergey Beryozkin
={IND=INR, USA=DOLLAR}] map={y=9, x=11} thanks, Sergey Please verify and let me know is this is good. Biju B --  Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Expose MBeans in CXF

2011-05-20 Thread Sergey Beryozkin
: Shenglin Qiu -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Expose MBeans in CXF

2011-05-19 Thread Sergey Beryozkin
HI Shenglin String href = builder.path(mbean).path(someUniqueKey).build().toString() Here is my progress, I use  UriBuilder uriBuilder = uriInfo.getAbsolutePathBuilder().path(this.getClass(), list); and     String uniqueKey = Integer.toString(index++);     String href =

Re: Expose MBeans in CXF

2011-05-19 Thread Sergey Beryozkin
, as you required, I format the output. Sorry, I may've confused you, please don't format, thanks, Sergey Regards: Shenglin Qiu -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Expose MBeans in CXF

2011-05-19 Thread Sergey Beryozkin
HI Shenglin On Thu, May 19, 2011 at 2:54 PM, Shenglin Qiu dabaip...@hotmail.com wrote: Yes Sergey, will have these following pattern: http://localhost:8080/services/jmx/mbean/0  - CXF Bus http://localhost:8080/services/jmx/mbean/01   - UserService

Re: Expose MBeans in CXF

2011-05-19 Thread Sergey Beryozkin
MBean, Cheers, Sergey Regards: Shenglin Qiu -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Expose MBeans in CXF

2011-05-18 Thread Sergey Beryozkin
Hi Shenglin Well done, you are progressing well. Note that you don't have to start formatting the updates to the dev list, it's just the work as usual, keep it simple please :-). And don't CC to the secretary :-) Some comments below. I am fully upgrade it to 2.4.0, I have some testing phase

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-17 Thread Sergey Beryozkin
verify and let me know is this is good. Biju B -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

8 tests are failing on Windows

2011-05-16 Thread Sergey Beryozkin
Hi It seems there have been some regressions introduced recently [1] which show up on Windows, it could be to do with the fact the build path contains spaces, or may be it is some resource recycling issue. JAXRSSimpleSecurityTest passed for me yesterday, when I run all the jaxrs system tests,

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-16 Thread Sergey Beryozkin
to change in http://svn.apache.org/repos/asf/cxf/trunk - is that ok? If not can you sen me the SVN link? On Fri, May 13, 2011 at 1:48 AM, Sergey Beryozkin sberyoz...@gmail.comwrote: 2.4.1-SNAPSHOT is the trunk version - so please check it out if you decide to work on a pacth, I'll

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-13 Thread Sergey Beryozkin
. On Thu, May 12, 2011 at 1:08 PM, Sergey Beryozkin sberyoz...@gmail.comwrote: Hi On Thu, May 12, 2011 at 8:21 PM, Biju Nair biju74tec...@gmail.com wrote: Just to clarify, the user bean will be something like, class User{   MapString, String params; } Request Data

Re: Questions regarding the implementation of a 2-endpoint Customer and CustomerService CXF JAX-RS web application

2011-05-13 Thread Sergey Beryozkin
declarations if you prefer Thanks, Sergey Thanks, Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Expose MBeans in CXF

2011-05-13 Thread Sergey Beryozkin
Hi On Fri, May 13, 2011 at 1:19 AM, Shenglin Qiu dabaip...@hotmail.com wrote: Hi Sergey: Here is the todo list which you have assigned: 1. Have one JAX-WS and JAX-RS endpoints 2. Have your JMXServer as a separate endpoint 3. Injecting a bus reference and registering a listener Your

Re: Questions regarding the implementation of a 2-endpoint Customer and CustomerService CXF JAX-RS web application

2011-05-13 Thread Sergey Beryozkin
methods, etc. It's not about writing a quality CustomerService - it's about you moving to the next stage with the full confidence Thanks, Sergey Thank you, Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Questions regarding the implementation of a 2-endpoint Customer and CustomerService CXF JAX-RS web application

2011-05-13 Thread Sergey Beryozkin
://pages.cs.wisc.edu/~zoerner/downloads/dev/samples/customerservice/Customer.java -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Server output as a result of the CustomInvoker and Client output after parameterization refactoring of Client, CustomerService, and Order

2011-05-13 Thread Sergey Beryozkin
on Mon/Tue. have a good weekend Sergey Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Server output as a result of the CustomInvoker and Client output after parameterization refactoring of Client, CustomerService, and Order

2011-05-13 Thread Sergey Beryozkin
/~zoerner/downloads/dev/samples/jaxrs_basic_http_demo/400_header_url_response_to_browser.png Have a great weekend also. Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: demo.jaxrs.server.CustomInvoker

2011-05-12 Thread Sergey Beryozkin
to the list in a subsequent email. Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Basic Http Demo and the refactoring that I did, in the course of figuring out how it worked.

2011-05-12 Thread Sergey Beryozkin
, if necessary. That is good, thanks Sergey Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Server output as a result of the CustomInvoker and Client output after parameterization refactoring of Client, CustomerService, and Order

2011-05-12 Thread Sergey Beryozkin
to, what else, a url. Ryan -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-12 Thread Sergey Beryozkin
solution if you find some drawbacks. Maps are not supported for example. Thanks, Sergey Cheers, Sergey Please confirm. Biju B On Wed, May 11, 2011 at 1:45 AM, Sergey Beryozkin sberyoz...@gmail.comwrote: Hi On Tue, May 10, 2011 at 10:07 PM, Biju Nair biju74tec...@gmail.com wrote

Re: Basic Http Demo and the refactoring that I did, in the course of figuring out how it worked.

2011-05-12 Thread Sergey Beryozkin
Hi Ryan On Thu, May 12, 2011 at 10:42 AM, Ryan Zoerner ryanzoer...@gmail.com wrote: In the paragraph, with the hyperlink to the jaxrs demo, I said this: --- The client opens a printStream that is

Re: Expose MBeans in CXF

2011-05-12 Thread Sergey Beryozkin
and start planning what to do next Thanks, Sergey Thank you. Regards Shenglin Qiu -- Sergey Beryozkin Application Integration Division of Talend http://sberyozkin.blogspot.com

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-12 Thread Sergey Beryozkin
at 2:43 AM, Sergey Beryozkin sberyoz...@gmail.comwrote: Hi On Wed, May 11, 2011 at 5:34 PM, Biju Nair biju74tec...@gmail.com wrote: Thanks for the reply. Just for clarification, If I have a Employee bean as follows, class Employee{    String name;    Address homeAddress

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-12 Thread Sergey Beryozkin
books with id greater than 1 but we can't express the same query if Book happens to have a nested ID bean, etc: /books?_s=id=gt=id.1 Cheers, Sergey Biju B On Thu, May 12, 2011 at 10:52 AM, Sergey Beryozkin sberyoz...@gmail.comwrote: Hi On Thu, May 12, 2011 at 5:55 PM, Biju Nair biju74tec

Re: Custom Reuqest Param Name for Bean Request Object

2011-05-11 Thread Sergey Beryozkin
:22 PM, Sergey Beryozkin sberyoz...@gmail.comwrote: Hi Please see comments inline On Tue, May 10, 2011 at 8:29 PM, Biju Nair biju74tec...@gmail.com wrote: Hi Team, Currently I was helping a team in building rest based services using CXF. I noticed that for bean based service arguments

<    3   4   5   6   7   8   9   10   11   12   >