Re: Client-side logging in CXF?

2007-09-02 Thread Willem2

Hi Glen,

CXF is using the J2SE logging.
If you use the ant to run the sample , you could change the
logging.properties file in ${CXF_HOME}/etc/ directory. 

Willem.


Glen Mazza-2 wrote:
 
 Hello,
 
 What is the logging system used in Apache CXF -- Log4j or J2SE logging?
 
 Also, when I'm running a web service client using a CXF-generated SEI
 using an Ant target similar to the below, I am only getting INFO level
 output on the command line.  How do I get DEBUG-level output?  The
 current documentation on logging[1] just describes server-side logging,
 not client-side.
 
path id=cxf.classpath
   pathelement location=${build.classes.dir}/
   fileset dir=${env.CXF_HOME}/lib
  include name=*.jar/
   /fileset
/path
 
   target name=run
   java classname=client.WSClient fork=true  
  classpath
 path refid=cxf.classpath/
  /classpath
   /java
/target
 
 Thanks,
 Glen
 
 [1] http://cwiki.apache.org/CXF20DOC/debugging.html
 
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Client-side-logging-in-CXF--tf4365109.html#a12449810
Sent from the cxf-user mailing list archive at Nabble.com.



Transferring files using CXF

2007-09-02 Thread tog
Hi

I would like to evaluate file transfer performances using web services (and
especially cxf) using different file size and would like to compare this to
ftp, ...

What are the different ways of doing this using CXF ?

Has anyone done similar test and could report results ?

Is anyone willing to share some code ?

Thanks
-- 

Best Regards
Guillaume


Re: Simple front end and JAB customization

2007-09-02 Thread James Mao

Jacob,

Yes, It's through JAXB annotation.

First, you can find a wsdl which has the xsd:date type, then use the  
instructions in the doc to generate java artifacts from the wsdl

Then, just copy the Adapter, Annotations from those artifacts

I haven't tried this approach, but should work.

James



James,

I am using the code first (Simple front end) approach. In this case how
would I do the jaxb customization? Is it via annotations or is there a way
to do this in the cxf.xml file? Between, I looked at the documentation in
detail and they seem to be related to wsdltojava tool.

Thanks in advance,
Jacob

On 8/30/07, James Mao [EMAIL PROTECTED]  wrote:
  

Yes, through jaxb customization

http://cwiki.apache.org/confluence/display/CXF20DOC/Tools


James


Jacob Marcus wrote:


Hi,

Is there any way to customize JAXB type mapping when using the simple
  

front


end? I would like to have the java.util.Date for the xsd:dateTime.

Thanks,
Jacob