Re: Deprecate aegis databinding ?

2024-06-12 Thread Vassilis Virvilis
n Tue, Jun 4, 2024 at 3:54 PM Vassilis Virvilis wrote: Hi Jim, Here are some bugs / discussions with some test cases that have been fixed (or workaround-ed) over the years. 1. SOAP: Aegis databinding Collection of derived classes: https://lists.apache.org/thread/rp73ym9f64vpvng057d55mtj3wn

Re: Deprecate aegis databinding ?

2024-06-04 Thread Vassilis Virvilis
some code snippet to have a look ? Thanks, Jim On Mon, Apr 29, 2024 at 5:46 PM Vassilis Virvilis wrote: I am using it. Although I plan to move to JAX-RS. However, I can't be sure about the scheduling... Aegis is the simplest and most versatile databinding for java first development in m

Re: Deprecate aegis databinding ?

2024-04-29 Thread Vassilis Virvilis
hanks, Jim -- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. Stay tuned www: http://www.biovista.com LinkedIn: https://www.linkedin.com/company/biovista Twitter: https://twitter.com/BiovistaInc/ Vizit https://twitter.com/BiovistaVizit/ Facebook: https://www.facebook.com/biovistain

Re: Advice porting CXF JAX-RS services to run in servlet container

2022-02-11 Thread Vassilis Virvilis
s/blob/master/openmeetings-web/src/main/webapp/WEB-INF/classes/cxf-servlet.xml [2] https://github.com/apache/openmeetings/blob/master/openmeetings-web/src/main/webapp/WEB-INF/web.xml Thank you for these resources I will study them and try and implementation over the weekend. I'll write back here with

Re: Advice porting CXF JAX-RS services to run in servlet container

2022-02-11 Thread Vassilis Virvilis
Not sure if that helps because there have been years passed when I was fiddling with these things. So I think I have managed to setup a jax-rs service without spring configuration back in the day, The configuration happens in war/web.xml The trick is to use the CXFNonSpringJaxrsServlet More

SOAP: Aegis databinding Collection of derived classes

2021-02-09 Thread Vassilis Virvilis
-- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. Stay tuned www: http://www.biovista.com LinkedIn: https://www.linkedin.com/company/biovista Twitter: https://twitter.com/BiovistaInc/ Vizit https://twitter.com/BiovistaVizit/ Facebook: https

Re: Use CXF in JDK 11

2019-06-06 Thread Vassilis Virvilis
ggestions? Nicola -- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc.

Re: cxf jaxrs Manually configure of ServiceClass

2018-11-21 Thread Vassilis Virvilis
for what you're trying to do. On Wed, Nov 21, 2018 at 8:39 AM Vassilis Virvilis wrote: Hi, I am not using Spring I am interested in manually configuring individual serviceClasses (i.e. for adding Providers per serviceClass). This is possible with spring but looks impossible without s

cxf jaxrs Manually configure of ServiceClass

2018-11-21 Thread Vassilis Virvilis
Hi, I am not using Spring I am interested in manually configuring individual serviceClasses (i.e. for adding Providers per serviceClass). This is possible with spring but looks impossible without spring. Is there a way to do it? I tried to access the Endpoints/ServiceClasses after they have

configuring the path per class

2018-08-28 Thread Vassilis Virvilis
Hi again, I am using CXFNonSpringJaxrsServlet and I would like to configure the path per class I am assuming here that the equivalent of spring config ... is the following fragment in web.xml jaxrs.serviceClasses

cxf and oauth2 configuration

2018-08-28 Thread Vassilis Virvilis
Hi, I am taking the tutorial here http://cxf.apache.org/docs/jax-rs-oauth2.html and I can't find a way to configure the dataProvider in the AccessTokenService class without Spring. I am using the CXFNonSpringJaxrsServlet I am currently using public class MyAccessTokenService extends

cxf and oauth2 configuration

2018-08-28 Thread Vassilis Virvilis
Hi, I am taking the tutorial here http://cxf.apache.org/docs/jax-rs-oauth2.html and I can't find a way to configure the dataProvider in the AccessTokenService class without Spring. I am using the CXFNonSpringJaxrsServlet I am currently using public class MyAccessTokenService extends

Re: 10 years of CXF - Happy Birthday!

2018-04-17 Thread Vassilis Virvilis
I also wanted to say *** Congratulations *** to everybody involved and __thanks__ for a great project. Vassilis On 04/16/2018 09:15 PM, Dennis Kieselhorst wrote: Hi, it's time to celebrate: 10 years ago, on April 16th in the year 2008, CXF graduated from the Apache incubator as a merge o

Re: 10 years of CXF - Happy Birthday!

2018-04-17 Thread Vassilis Virvilis
I also wanted to say *** Congratulations *** to eveybody involved and __thanks__ for a great project. Vassilis On 04/16/2018 09:15 PM, Dennis Kieselhorst wrote: Hi, it's time to celebrate: 10 years ago, on April 16th in the year 2008, CXF graduated from the Apache incubator as a merge of

Re: CXF, OAuth2 and social login

2018-02-12 Thread Vassilis Virvilis
access this web application needs to authenticated first against Google/etc ? CXF offers quite a decent support for it, I'd recommend to experiment with jaxrs_big_query and also jaxrs/basic_oidc, and also check http://cxf.apache.org/docs/jax-rs-oidc.html HTH, Sergey On 12/02/18 10:11, Vassilis Virvil

CXF, OAuth2 and social login

2018-02-12 Thread Vassilis Virvilis
Hi, I am looking in CXF support for OAuth2 support in general and social logins in particular. See http://cxf.apache.org/docs/jax-rs-oauth2.html From the docs it is not immediately evident if the OAuth2 support has been written with the "social login" workflow in mind. There is of course http

Re: Need help in developing RESTFul web service using JAX-RS with Jersey.

2017-09-22 Thread Vassilis Virvilis
ust copying the java file with the name jws. It automatically compiled and ready to use. I like to do the same thing for the RESTful web-service. Thanks, Sushil Kumar On Fri, Sep 22, 2017 at 1:10 PM, Vassilis Virvilis wrote: On 09/22/2017 10:32 AM, sushil kumar wrote: Hello Vassilis, I th

Re: Need help in developing RESTFul web service using JAX-RS with Jersey.

2017-09-22 Thread Vassilis Virvilis
On 09/22/2017 10:32 AM, sushil kumar wrote: Hello Vassilis, I think you are not able to understand the problem. I will try :-) Problem is after modification i have only java file on machine ( do not have compiled file (class file)) .  it  is possible to some how modified java file can be co

Re: Need help in developing RESTFul web service using JAX-RS with Jersey.

2017-09-21 Thread Vassilis Virvilis
On 09/21/2017 03:09 PM, sushil kumar wrote: Hello All, I new in JAVA. with the help of some blogs i am able to develop my First RESTful web service and i am able to deploy it on tomcat. But i am stuck further. Requirement is i have to modify the Webservice on run time without Tomcat restart. Ma

Re: BingPreview: No message body writer has been found

2017-08-11 Thread Vassilis Virvilis
a Pre-Match container request filter which changes content type to application/json if it is a wildcard. Cheers, Sergey On 10/08/17 15:42, Vassilis Virvilis wrote: Hi everybody, I am using cxf-3.1.7 with jax-rs and JacksonJsonProvider My application works normally but when BingPreview tries to

BingPreview: No message body writer has been found

2017-08-10 Thread Vassilis Virvilis
Hi everybody, I am using cxf-3.1.7 with jax-rs and JacksonJsonProvider My application works normally but when BingPreview tries to crawl my page I get ERROR 2017-08-10 12:32:51,561 ajp-nio-8009-exec-4: org.apache.cxf.jaxrs.utils.JAXRSUtils.logMessageHandlerProblem(JAXRSUtils.java:1811): No me

Re: CXF3 - Annotations in the interface are not parsed

2016-08-18 Thread Vassilis Virvilis
plementing API class. This is especially annoying if wadl2java is used to generate the API interfaces automatically. To make it work, one has to manually add the JAXRS-annotations to each implementing class. It would be nice if CXF would read the annotations in the interface in the future as

Re: jaxrs logging interceptor: get method name and parameter values

2014-10-22 Thread Vassilis Virvilis
Vassilis On 2014-10-17 12:43, Sergey Beryozkin wrote: Hi Why do you have to customize these interceptors ? Have a look at org.apache.cxf.jaxrs.validation.JAXRSBeanValidationInInterceptor it shows how all this info can be obtained... Cheers, Sergey On 17/10/14 15:35, Vassilis Virvilis wrote

jaxrs logging interceptor: get method name and parameter values

2014-10-17 Thread Vassilis Virvilis
eturn method.getName(); } return "unknown"; } Vassilis Virvilis -- ______ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.971.1141 F: +1.434.971.1144 European Offices 34 Rodop

Re: CFX issue with GWT

2014-10-16 Thread Vassilis Virvilis
Gran Capità 2-4 (Nexus I building) 2nd Floor, office 203; 08034 Barcelona +34 93 553 26 33 2014-10-16 12:05 GMT+02:00 Vassilis Virvilis : Hi David, I am not 100% sure but looks like that you try to use cxf jax-rs client in GWT client side. I am afraid this is not possible. GWT is a java to javascri

Re: CFX issue with GWT

2014-10-16 Thread Vassilis Virvilis
Thanks a lot. Regards *David Roldán* *UITU: Ubiquitous Internet Technologies Unit * http://fi2.cat/uitudesc *i2CAT FOUNDATION* Gran Capità 2-4 (Nexus I building) 2nd Floor, office 203; 08034 Barcelona +34 93 553 26 33 -- ______ Vassilis Virvilis Ph.D. Head of IT

Re: Collection jax-rs saga: List>

2014-08-26 Thread Vassilis Virvilis
:38 AM, Sergey Beryozkin wrote: Hi, On 26/08/14 09:08, Vassilis Virvilis wrote: Hi, I just checked https://java.net/projects/jax-rs-spec/lists/jsr339-experts/archive/2014-08/message/33 and the thread. As you said it is not supported officially from jax-rs spec (but looks like a meaningful extens

Re: Collection jax-rs saga: List>

2014-08-26 Thread Vassilis Virvilis
s archives. Note, I've updated the code to pass the generic type parameter to param converters but it won;t help per se in your case Thanks, Sergey On 25/08/14 17:56, Sergey Beryozkin wrote: Hi On 25/08/14 15:19, Vassilis Virvilis wrote: Hi, MultivaluedMap worked. I can use this as a workaround

Re: Collection jax-rs saga: List>

2014-08-25 Thread Vassilis Virvilis
kin wrote: Hi On 25/08/14 11:00, Vassilis Virvilis wrote: Hi, ok that makes sense for MessageBodyReader. However I can't remove @FormParam because I have multiple parameter to pass. But if I run out of all other options I may manually parse the document and all the parameters. So this is

Re: Collection jax-rs saga: List>

2014-08-25 Thread Vassilis Virvilis
nteer to test patches/jars/nightly builds of course. Vassilis On 08/25/2014 01:44 PM, Sergey Beryozkin wrote: Hi On 25/08/14 11:00, Vassilis Virvilis wrote: Hi, ok that makes sense for MessageBodyReader. However I can't remove @FormParam because I have multiple parameter to pass. But i

Re: Collection jax-rs saga: List>

2014-08-25 Thread Vassilis Virvilis
notation, give it a try please Cheers, Sergey On 25/08/14 09:33, Vassilis Virvilis wrote: Hi Sergey, everybody I managed to do some work on Resty-GWT https://github.com/resty-gwt/resty-gwt/issues/195 https://github.com/resty-gwt/resty-gwt/pull/196 With the patches (not yet applied) I can tran

Collection jax-rs saga: List>

2014-08-25 Thread Vassilis Virvilis
g? Vassilis -- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.971.1141 F: +1.434.971.1144 European Offices 34 Rodopoleos Street Ellinikon, Athens 16777 GREECE T: +30.210.9629848 F: +30.210.9647606 www.biovista.com Biovista is

Re: registering ParamConverterProviders with cxf

2014-08-14 Thread Vassilis Virvilis
://github.com/resty-gwt/resty-gwt/issues/195) and eventually submit a fix. Thanks On 08/14/2014 03:35 PM, Vassilis Virvilis wrote: On 08/14/2014 11:37 AM, Sergey Beryozkin wrote: No problems at all, thanks for the clarifications. It's a bit of a grey area, and I actually sent a message t

Re: registering ParamConverterProviders with cxf

2014-08-14 Thread Vassilis Virvilis
the first time... Vassilis -- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.971.1141 F: +1.434.971.1144 European Offices 34 Rodopoleos Street Ellinikon, Athens 16777 GREECE T: +30.210.9629848 F:

Re: registering ParamConverterProviders with cxf

2014-08-14 Thread Vassilis Virvilis
Hi, On 08/14/2014 11:49 AM, Sergey Beryozkin wrote: Hi On 14/08/14 08:42, Vassilis Virvilis wrote: On 08/14/2014 09:34 AM, Vassilis Virvilis wrote: Hi, Hope this clears it up. I will take now a read on the spec and I will follow up if I spot anything. I opened up an issue with Resty-GWT

Re: registering ParamConverterProviders with cxf

2014-08-14 Thread Vassilis Virvilis
On 08/14/2014 09:34 AM, Vassilis Virvilis wrote: Hi, Hope this clears it up. I will take now a read on the spec and I will follow up if I spot anything. I opened up an issue with Resty-GWT at https://github.com/resty-gwt/resty-gwt/issues/195 I am not an expert but looks like that CXF is

Re: registering ParamConverterProviders with cxf

2014-08-13 Thread Vassilis Virvilis
Hi, On 08/13/2014 06:43 PM, Sergey Beryozkin wrote: On 13/08/14 15:43, Vassilis Virvilis wrote: This however transmits the entities as one jsonified array with [{x:"a", y:"b"}, {x:"c", y:"d"}] if you know what I mean. CXF in the other doesn't parse

Re: registering ParamConverterProviders with cxf

2014-08-13 Thread Vassilis Virvilis
d the converter to convert a String to List then what would the runtime pass to the converter, "a=1-2-3&a=4-5-6" and expect it to parse it manually ? Not sure it makes sense. And given that ParamConverterProvider is expected to be reusable, what would we do with and a sequence li

Re: registering ParamConverterProviders with cxf

2014-08-12 Thread Vassilis Virvilis
2014 06:22 PM, Sergey Beryozkin wrote: Hi AFAIK ParamConverterProvider is expected to be called once per every entity in the list. Thanks, Sergey On 12/08/14 16:12, Vassilis Virvilis wrote: Hi, Some time before I have started a thread with jackson and form parameters in cxf http://mail-archiv

registering ParamConverterProviders with cxf

2014-08-12 Thread Vassilis Virvilis
different input types? Or is that List is handled specially? By jackson or CXF? In jackson I just need to do final List entities = mapper.readValue(entities_json, new TypeReference>() { }); but I don't know how to do this from inside CXF. I am using CXF 3.0

Re: jax-rs (jackson) cannot deserialize form parameter

2014-06-27 Thread Vassilis Virvilis
Hi Sergey, Thanks for all the info. I will try to digest and try some of your advices in the following weeks and I will report back my findings. Vassilis Virvilis On 06/26/2014 03:07 PM, Sergey Beryozkin wrote: On 26/06/14 12:10, Vassilis Virvilis wrote: Hi again thanks. Your post

Re: jax-rs (jackson) cannot deserialize form parameter

2014-06-26 Thread Vassilis Virvilis
ion. Thanks for clearing that up. Really really thanks for the leads and the insightful information. Vassilis In case you wonder - I am trying to use RestyGWT with CXF. On 06/26/2014 01:27 PM, Sergey Beryozkin wrote: Hi On 26/06/14 10:15, Vassilis Virvilis wrote: Hi Sergey, First of

Re: jax-rs (jackson) cannot deserialize form parameter

2014-06-26 Thread Vassilis Virvilis
cts? 4) What is missing and CXF cannot do it automagically like it does it with aegis and SOAP given that the outgoing Entity (return value ) through JAX-RS is working all right. Any links for further reading on this you may have are much appreciated. Again thanks for your help. Vassilis Virvi

jax-rs (jackson) cannot deserialize form parameter

2014-06-25 Thread Vassilis Virvilis
ils.java:358 Object result = createFromParameterHandler(value, pClass, paramAnns, message); if (result != null) { return pClass.cast(result); } but I don't know enough to debug this. Vassilis -- __ Vassilis Virvilis Ph.D. Head of IT

Re: 2 possible validators/interceptors

2013-11-05 Thread Vassilis Virvilis
5.nabble.com/2-possible-validators-interceptors-tp5731252p5731284.html Sent from the cxf-user mailing list archive at Nabble.com. -- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.971.11

Re: cxf-2.7.4: configuring woodstox limits.

2013-04-09 Thread Vassilis Virvilis
Any idea on this one? On 04/05/2013 03:28 PM, Vassilis Virvilis wrote: Daniel thanks for the quick reply. Still I cannot solve it server side. ... But how? ... I tried ... but it doesn't work. Where should I put it and where is the spring magic property I should set? Any sn

Re: cxf-2.7.4: configuring woodstox limits.

2013-04-05 Thread Vassilis Virvilis
Daniel thanks for the quick reply. Still I cannot solve it server side. On 04/05/2013 02:17 PM, Daniel Kulp wrote: On Apr 5, 2013, at 5:29 AM, Vassilis Virvilis wrote: 1) Server side: How I can configure the limits from the spring configuration. Is it possible to do it per endpoint? per

cxf-2.7.4: configuring woodstox limits.

2013-04-05 Thread Vassilis Virvilis
tox limits. Vassilis -- ______ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.971.1141 F: +1.434.971.1144 European Offices 34 Rodopoleos Street Ellinikon, Athens 16777 GREECE T: +30.210.9629848 F: +30.210.9647606 www.biovista.com

Re: Problem with the chunking (new http client?)

2012-12-21 Thread Vassilis Virvilis
ormal? Anyway I will investigate it further next year... I won't be able to check mail regularly until then. Merry Christmas to everybody Vassilis __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 2

Problem with the chunking (new http client?)

2012-12-18 Thread Vassilis Virvilis
.java:1515) at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1488) at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1307) ... 19 more -- __ Vassilis Virvilis Ph.D.

Re: How to disable nonce.cache in simple frontend?

2012-09-13 Thread Vassilis Virvilis
On 09/12/2012 09:42 PM, Daniel Kulp wrote: The simple frontend has all the same abilities to set the properties. If you are using code, the ServerFactoryBean has properties maps on it as well. Dan Eer. I meant in the docs not int logs... The xml fragment did the trick. Th

Re: How to disable nonce.cache in simple frontend?

2012-09-13 Thread Vassilis Virvilis
On 09/12/2012 09:42 PM, Daniel Kulp wrote: The simple frontend has all the same abilities to set the properties. If you are using code, the ServerFactoryBean has properties maps on it as well. Dan The xml fragment did the trick. Thanks a lot. It would be useful however to m

Re: How to disable nonce.cache in simple frontend?

2012-09-12 Thread Vassilis Virvilis
nnot get the team to rename it. It's best to work with the official JAX-WS frontend, especially where security is concerned. Glen On 09/12/2012 10:57 AM, Vassilis Virvilis wrote: Hi everybody, I am upgrading to CXF 2.6.2 but for some clients I am getting Caused by: org.apache.ws.security.WSSe

Re: cxf spring-web dependancy ivy problem

2012-09-12 Thread Vassilis Virvilis
in the WEB-INF/lib. Glen thanks again. Is there a list of these smaller bundles? I mean what are their names? Where I can find them? -- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.97

How to disable nonce.cache in simple frontend?

2012-09-12 Thread Vassilis Virvilis
ith spring configuration so I can't use following snippet ... ... Any ideas what is the correct XML configuration or it is not possible to turn this thing off with JAX_WS? Thanks in advance -- __ Vassilis Virvilis Ph.D. Head of IT Bi

Re: cxf spring-web dependancy ivy problem

2012-09-12 Thread Vassilis Virvilis
On 09/11/2012 06:07 PM, Glen Mazza wrote: On 09/11/2012 05:02 AM, Vassilis Virvilis wrote: Hi Daniel, Thanks for the quick reply. One more question: Is there any artifact that I can specify that will bring spring-web?. Sure, the spring-web dependency here at line #183: http://svn.apache.org

Re: cxf spring-web dependancy ivy problem

2012-09-11 Thread Vassilis Virvilis
Hi Daniel, Thanks for the quick reply. One more question: Is there any artifact that I can specify that will bring spring-web?. You are correct though that my application is a war deployed in tomcat. I looked again at WHICH_JARS and looks like my application type also falls in the "XML Conf

cxf spring-web dependancy ivy problem

2012-09-10 Thread Vassilis Virvilis
reproducible and here is setup needed to replicate (build.xml, ivy.xml, ivysettings.xml) Thanks in advance -- __ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.971.1141 F: +1.434.971.1144

Re: ws-security and javascript

2012-08-03 Thread Vassilis Virvilis
Hello Dan, Thanks for the quick reply. I have a note and a question. On 01/08/2012 10:13 μμ, Daniel Kulp wrote: On Wednesday, August 01, 2012 12:10:45 PM Vassilis Virvilis wrote: We looked all over the web but we didn't find a way to configure the WSS4JOutInterceptor for the javas

ws-security and javascript

2012-08-01 Thread Vassilis Virvilis
ering upgrading if that would help. Thanks in advance -- ______ Vassilis Virvilis Ph.D. Head of IT Biovista Inc. US Offices 2421 Ivy Road Charlottesville, VA 22903 USA T: +1.434.971.1141 F: +1.434.971.1144 European Offices 34 Rodopoleos Street Ellinikon, Athens

Re: cxf upgrade: 2.2.6 --> 2.3.3: wss4j message expiration problems with timestamps

2011-12-02 Thread Vassilis Virvilis
On 02/12/2011 05:10 μμ, Colm O hEigeartaigh wrote: 1) Is it possible to turn off the timestamp verification in 2.3.3 and if so how? I don't think there is a programmatic way to disable future time to live checking in 2.3.3. You could extend WSS4JInInterceptor and override the checkTimestamps me

Re: cxf upgrade: 2.2.6 --> 2.3.3: wss4j message expiration problems with timestamps

2011-12-02 Thread Vassilis Virvilis
Colm, thanks for the quick response. Couple of questions... 1) Is it possible to turn off the timestamp verification in 2.3.3 and if so how? 2) I can see that 2.3.8 is not yet out. When do you expect that it would be released? 3) Does this fix exists in 2.4.x, 2.5.x in case we want to expedite

cxf upgrade: 2.2.6 --> 2.3.3: wss4j message expiration problems with timestamps

2011-12-02 Thread Vassilis Virvilis
Hi everybody, We have upgraded to 2.3.3 and we have the an issue with the Timestamp action: when the client's clock is set to the future (even for a single second) the timestamp is invalid and the call throws an exception. The problem is also reported here https://issues.apache.org/jira/brow

Re: server timings?

2011-10-31 Thread Vassilis Virvilis
Hi Daniel, Fabio I would like to time the performance of our methods in a centralized manner (meaning not adding timing logs to every individual method). I would like to thank you for your valuable and prompt answers. Fabio, that was exactly what was asking for. Daniel I wasn't aware that cx

server timings?

2011-10-27 Thread Vassilis Virvilis
Hi, I would like to time the performance of our methods in a centralized manner (meaning not adding timing logs to every individual method). I have a LoggingInInterceptor that prints the method and the arguments. I was thinking that it may be possible to add that as a signature along with a

Re: [jira-3526] Aegis cannot handle nested map inheritance

2011-06-01 Thread Vassilis Virvilis
On Tuesday 31 May 2011, Freeman Fang wrote: > Hi, > > Yeah, jira can notify developers after a bug has been resolved, I'm > sorry I miss your last comment on that jira, will reply you on that > jira. > Thanks for taking the time to give an answer to this. Vassilis

[jira-3526] Aegis cannot handle nested map inheritance

2011-05-30 Thread Vassilis Virvilis
/jira/browse/CXF-3526 Thanks Vassilis Virvilis

Re: Aegis bug: trying to send childs of generic types

2011-05-17 Thread Vassilis Virvilis
On Monday 16 May 2011, Benson Margulies wrote: > Why not put the project that causes all the trouble onto github and > point to it from the JIRA? I think that is an overkill. We have our tests in our local subversion and we don't want to get involved with git right now. I have attached the eclip

Re: Aegis bug: trying to send childs of generic types

2011-05-16 Thread Vassilis Virvilis
On Wednesday 20 April 2011, Vassilis Virvilis wrote: > > That all said, an NPE is definitely not what should occur. A better > > exception should be generated.If you could create a small test case and > > attach to a JIRA, that would be great. > > > > Dan &

Re: Aegis bug: trying to send childs of generic types

2011-04-19 Thread Vassilis Virvilis
On Tuesday 19 April 2011, Daniel Kulp wrote: > On Tuesday 19 April 2011 8:38:31 AM Vassilis Virvilis wrote: > > Hi > > > > I am using the cxf 2.3.6 (we haven't upgraded yet to 2.4.0) and we have the > > following exception on deploy (not in runtime) > >

Aegis bug: trying to send childs of generic types

2011-04-19 Thread Vassilis Virvilis
uldn't allow this kind of use or is Map special? Thanks in advance Vassilis Virvilis

Re: Expose pojo via webservice dynamically without annotations (maybe with Spring/AOP)?

2010-01-14 Thread Vassilis Virvilis
Hi, On Thursday 14 January 2010, Barrie Treloar wrote: > On Thu, Jan 14, 2010 at 1:54 PM, Benson Margulies > wrote: > > You create another layer around it unless you like the behavior of the > > Simple front end. > > That's what I am trying to avoid since my pojo service is exactly what > I wan

Re: Even the aegis maintainer can tie himself into a prezel

2009-08-25 Thread Vassilis Virvilis
On Tuesday 25 August 2009, Benson Margulies wrote: > > I tried to follow the recipe of 'use the wsdl on the client side.' > This added up to: I have some comments but probably they don't apply. Can you please specify a link to 'use the wsdl on the client side.'? bill

Re: How to get servlet context at initialization time of a POJO

2009-06-23 Thread Vassilis Virvilis
Hi Sergey, On Tuesday 23 June 2009, Sergey Beryozkin wrote: > Hi Vassilis > > Is it possible for you to use a Spring's ability to call a user-designated > destroy method ? This will probably be called though when > the whole webapp is undeployed as at the moment we don't support any other > Sp

Re: How to get servlet context at initialization time of a POJO

2009-06-23 Thread Vassilis Virvilis
Hi Ian, On Tuesday 23 June 2009, Ian Roberts wrote: > Vassilis Virvilis wrote: > > The actual point is can a webservice (pojo) be notified on undeploy? > > If you don't mind coupling to Spring then just implement > ServletContextAware and DisposableBean. The former will c

Re: How to get servlet context at initialization time of a POJO

2009-06-23 Thread Vassilis Virvilis
Hi Sergey, Thanks for replying On Tuesday 23 June 2009, Sergey Beryozkin wrote: > Hi, > > > The only way to do it at the moment is to use a per-request resource class > with @Context ServletContext being one of the constructor > parameters I can't do that at the moment. My servlet must have

How to get servlet context at initialization time of a POJO

2009-06-22 Thread Vassilis Virvilis
Halo, The subject says it all How to get servlet context at __initialization time__ of a POJO? At initialization time @Context private javax.servlet.ServletContext servletContext; has not yet injected on the POJO. Thank for any insight. Vassilis

Re: HTTPS Client-Configuration

2009-04-28 Thread Vassilis Virvilis
On Monday 27 April 2009, Benjamin Ernst wrote: > Hi, > > I am having problems with the Client-Configuration for HTTPS. My > configuration looks like this: > > > > > file="conf/truststore.jks"/> > > > file="conf/loca

Re: wsdl documentation tags

2009-04-08 Thread Vassilis Virvilis
On Thursday 09 April 2009, Daniel Kulp wrote: > On Wed April 8 2009 8:18:58 am Vassilis Virvilis wrote: > > > > https://issues.apache.org/jira/browse/CXF-1353 > > > > What's the status on that? > > As far as I know, no one has really started on it yet. >

Re: wsdl documentation tags

2009-04-08 Thread Vassilis Virvilis
On Monday 06 April 2009, Vassilis Virvilis wrote: > Hi everybody, > > A new requirement has come up and I really need to ask more knowledgable guys. > > Is there a way to inject the in a wsdl the tag in java first > approach. > > Ideally it could pick the informat

apache cxf service and soappy client

2009-04-08 Thread Vassilis Virvilis
Hello everybody, recently I was able to debug and successfully use an apache cxf webservice from a soappy client. There were 3 distinct tricks I had to use and so I figured to document the tricks to a public place in case anybody else is interested The first observation is that for methods not

wsdl documentation tags

2009-04-06 Thread Vassilis Virvilis
Hi everybody, A new requirement has come up and I really need to ask more knowledgable guys. Is there a way to inject the in a wsdl the tag in java first approach. Ideally it could pick the information from comments in the source (class wide, and per operation) but if this is not possible I a

Re: client apache cxf-2.2 jar dependencies: jax_ws required backtrace

2009-04-06 Thread Vassilis Virvilis
Hi Dan, Sorry for the late reply. I was out of town. On Wednesday 01 April 2009, Daniel Kulp wrote: > > Thanks for the update. Glad it works now. No problem. > > BTW: On monday, I also made xml-resolver-1.2.jar optional if you aren't > using > any catalogs. Thus, you should be able to

Re: client apache cxf-2.2 jar dependencies: jax_ws required backtrace

2009-04-01 Thread Vassilis Virvilis
On Tuesday 31 March 2009, Daniel Kulp wrote: > > This one should now be fixed. It would be great if you can try tomorrows > snapshots (will deploy overnight) to double check. Thanks for catching it. > > Dan Dan, It works. I tried it with apache-cxf-2.2.1-SNAPSHOT.tar.gz Wed

Re: client apache cxf-2.2 jar dependencies: cxf-http-jetty required backtrace

2009-03-31 Thread Vassilis Virvilis
On Tuesday 31 March 2009, Vassilis Virvilis wrote: > [java] at > java.awt.EventDispatchThread.run(EventDispatchThread.java:110) > [java] Caused by: java.lang.RuntimeException: Could not find conduit > initiator for transport http://schemas.xmlsoap.org/soap/http

Re: client apache cxf-2.2 jar dependencies

2009-03-31 Thread Vassilis Virvilis
Hi Daniel, Thanks for the answers. I provided backtrace for the jar dependencies you requested in other mails On Friday 27 March 2009, Daniel Kulp wrote: > > > 2) Is Aegis based on JAXB or is this is meaningless > > question? Can I have aegis without the jaxb stuff? > > No. We use JAXB inte

Re: client apache cxf-2.2 jar dependencies: cxf-http-jetty required backtrace

2009-03-30 Thread Vassilis Virvilis
Hi, On Friday 27 March 2009, Daniel Kulp wrote: > > > 5) Is > > cxf-rt-transports-http-jetty-2.2.jar really required for a client. It was > > not required in 2.1.3 > > It shouldn't be required for 2.2 either and in my tests, it isn't. I've > been > trying to get a testcase that shows that it

Re: client apache cxf-2.2 jar dependencies: geronimo activation required backtrace

2009-03-30 Thread Vassilis Virvilis
Hi, On Friday 27 March 2009, Daniel Kulp wrote: > > 3) Is it somehow > > possible to further trim the list of the dependencies especially the maven > > modules ones since the other are documented? > > 4) For example do I need > > geronimo-javamail_1.4_spec-1.5.jar (I don't use attachments) > > Y

Re: client apache cxf-2.2 jar dependencies: jax_ws required backtrace

2009-03-30 Thread Vassilis Virvilis
On Friday 27 March 2009, Daniel Kulp wrote: > > > > 1) Why I do need geronimo-jaxws_2.1_spec-1.0.jar? It is not mentioned in > > WHICH jars? Without it I get a javax/xml/ws/Holder class not found > > exception in JRE 1.5 > > Hmmm... That's not good.Is there a stack trace or similar? Not su

Re: HTTPS: custom keystore: regression in 2.2 from 2.1.3

2009-03-30 Thread Vassilis Virvilis
On Friday 27 March 2009, Daniel Kulp wrote: > > If you CAN make a JIRA with a test case, that would be great. Would > definitely help debugging it. > > For a workaround, you could try using the URL for the name: > > > name="https://foo.com.*";> > > . > > > (the .* is a patt

HTTPS: custom keystore: regression in 2.2 from 2.1.3

2009-03-27 Thread Vassilis Virvilis
Hi everybody, I have the following regression in https usage. My previous setup in 2.1.3 was working correctly with a custom keystore in resources. My cxf.xml was like this http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:

client apache cxf-2.2 jar dependencies

2009-03-27 Thread Vassilis Virvilis
Hi, I am using a cxf frontend with the simple client frontend and the aegis databinding. I want my client to be compatible with both 1.5 and 1.6. I don't use JAX-WS Here are the required jars --- Mentioned in WHICH_JARS -- --- used instead of cxf.jar cxf-api-2.2.jar

Re: WS stops responding after a while

2009-03-26 Thread Vassilis Virvilis
On Thursday 26 March 2009, Andrew Clegg wrote: > Would debugging into the service with Eclipse (or equivalent) remote > debugging help? You could set some breakpoints in your service and see > if any of them get hit when you send a request. Or just hit Suspend > while the client's waiting for a res

WS stops responding after a while

2009-03-26 Thread Vassilis Virvilis
Hi everybody, The problem is pesistent with cxf-2.1.3 and cxf-2.2 I have a WS that stops responding after a while. After that no client can connect and read time outs are happening on the client. The issue is (I think) a little bit accelerated whe the services is accessed by multiple clients...

Re: problem using jaxws and cxf 2.1.3

2008-12-19 Thread Vassilis Virvilis
On Thursday 18 December 2008, Daniel Kulp wrote: > > Try adding more information to the @WebService annotations on BOTH the SEI > interface and the impl. In particular, make sure there are targetNamespace > attributes on both. Also, make sure the endpointInterface attribute is > specified on

Re: problem using jaxws and cxf 2.1.3

2008-12-19 Thread Vassilis Virvilis
Benson thanks for the advise On Thursday 18 December 2008, Benson Margulies wrote: > FooServiceService is as per the JAX-WS specification. Ah ok then. > > Have you looked at the XML with logging or a spy? Most likely, the > client isn't playing along with the parameter names. With the simple >

problem using jaxws and cxf 2.1.3

2008-12-18 Thread Vassilis Virvilis
Hi everybody, I have a terrible problem trying to make jaxws annotations to work. Some background: I am deploying wars in tomcat in debian stable using cxf 2.1.3 and java 1.5.x The same service works like a charm if deployed with the simple frontend. Unfortunately we now require proper argument

Re: javascript client and generic types

2008-08-21 Thread Vassilis Virvilis
Hi Benson, First of all thanks for your quick reply On Thursday 21 August 2008, Benson Margulies wrote: > Please file a Jira. I didn't think about this case when I did the > Javascript code, and this will take some work. I filed a jira. It can be found at https://issues.apache.org/jira/browse/C

javascript client and generic types

2008-08-20 Thread Vassilis Virvilis
Hi everybody, I managed to get a javascript client example working but it barfs in some cases. All my server classes are pojos and I am using the simple frontend (I think) with Aegis. I am very pleased with java2java communication since I can pass complex types with no annotations at all. The pr

Re: client generation cxf vs. axis2

2008-06-02 Thread Vassilis Virvilis
On Friday 30 May 2008, Abid Hussain wrote: > Hi again, > > > I don't want to feed a flamewar but if we are in confession mode I must > > say my experience is the direct opposite from yours... > Neither do I... just wanted to share my experience. > > > On the other hand running the wsdl2java step

  1   2   >