RE: How to pass options to java2wsdl in the maven codegen plugin?

2007-08-15 Thread Christopher Moesel
Hi Jason,

Looking through the code for the java2wsdl goal, it doesn't appear that
there is any way for passing in extra arguments.  If this is something
you'd like to see in CXF, I'd suggest submitting an issue to JIRA.  It
shouldn't be too hard to add.

http://issues.apache.org/jira/browse/CXF

If you're curious, here's the code for the goal (as it was released in
2.0.1):

http://svn.apache.org/viewvc/incubator/cxf/trunk/maven-plugins/codegen-p
lugin/src/main/java/org/apache/cxf/maven_plugin/Java2WSDLMojo.java?revis
ion=551785view=markup

-Chris

-Original Message-
From: Jason Rosenberg [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 15, 2007 12:30 AM
To: cxf-user@incubator.apache.org
Subject: How to pass options to java2wsdl in the maven codegen plugin?


Is there a way to pass options into the java2wsdl goal, in
cxf-codegen-plugin?

I know that for the wsdl2java goal, you can specify options using the
extraarg tag, etc...

I haven't been able to deduce a similar method for the java2wsdl
goal...Is
there a simple example for how to do this (is it possible?)

Thanks,

Jason


-- 
View this message in context:
http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-code
gen-plugin--tf4271078.html#a12156338
Sent from the cxf-user mailing list archive at Nabble.com.



RE: How to pass options to java2wsdl in the maven codegen plugin?

2007-08-15 Thread Jason Rosenberg

Filed...

https://issues.apache.org/jira/browse/CXF-910

Thanks,

Jason


Christopher Moesel wrote:
 
 Hi Jason,
 
 Looking through the code for the java2wsdl goal, it doesn't appear that
 there is any way for passing in extra arguments.  If this is something
 you'd like to see in CXF, I'd suggest submitting an issue to JIRA.  It
 shouldn't be too hard to add.
 
 http://issues.apache.org/jira/browse/CXF
 
 If you're curious, here's the code for the goal (as it was released in
 2.0.1):
 
 http://svn.apache.org/viewvc/incubator/cxf/trunk/maven-plugins/codegen-p
 lugin/src/main/java/org/apache/cxf/maven_plugin/Java2WSDLMojo.java?revis
 ion=551785view=markup
 
 -Chris
 
 -Original Message-
 From: Jason Rosenberg [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 15, 2007 12:30 AM
 To: cxf-user@incubator.apache.org
 Subject: How to pass options to java2wsdl in the maven codegen plugin?
 
 
 Is there a way to pass options into the java2wsdl goal, in
 cxf-codegen-plugin?
 
 I know that for the wsdl2java goal, you can specify options using the
 extraarg tag, etc...
 
 I haven't been able to deduce a similar method for the java2wsdl
 goal...Is
 there a simple example for how to do this (is it possible?)
 
 Thanks,
 
 Jason
 
 
 -- 
 View this message in context:
 http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-code
 gen-plugin--tf4271078.html#a12156338
 Sent from the cxf-user mailing list archive at Nabble.com.
 
 
 

-- 
View this message in context: 
http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-codegen-plugin--tf4271078.html#a12165906
Sent from the cxf-user mailing list archive at Nabble.com.



Re: How to pass options to java2wsdl in the maven codegen plugin?

2007-08-15 Thread James Mao

So, any other options you want to add in? Is it ok to close CXF-910?

Cheers,
James


Interestingly, looking at the source code there, it does appear that a lot of
the parameters are exposed as regular tags(none of which are documented
here:  http://cwiki.apache.org/CXF20DOC/maven-integration-and-plugin.html)

So, you can include these tags, apparently, which covers my needs, at least:

configuration
   className.../className
   serviceName.../serviceName
   soap12.../soap12
   targetNameSpace.../targetNameSpace
   verbose.../verbose
   quiet.../quiet
/configuration


className, of course, is required...

Jason



Jason Rosenberg wrote:
  

Filed...

https://issues.apache.org/jira/browse/CXF-910

Thanks,

Jason


Christopher Moesel wrote:


Hi Jason,

Looking through the code for the java2wsdl goal, it doesn't appear that
there is any way for passing in extra arguments.  If this is something
you'd like to see in CXF, I'd suggest submitting an issue to JIRA.  It
shouldn't be too hard to add.

http://issues.apache.org/jira/browse/CXF

If you're curious, here's the code for the goal (as it was released in
2.0.1):

http://svn.apache.org/viewvc/incubator/cxf/trunk/maven-plugins/codegen-p
lugin/src/main/java/org/apache/cxf/maven_plugin/Java2WSDLMojo.java?revis
ion=551785view=markup

-Chris

-Original Message-
From: Jason Rosenberg [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 15, 2007 12:30 AM

To: cxf-user@incubator.apache.org
Subject: How to pass options to java2wsdl in the maven codegen plugin?


Is there a way to pass options into the java2wsdl goal, in
cxf-codegen-plugin?

I know that for the wsdl2java goal, you can specify options using the
extraarg tag, etc...

I haven't been able to deduce a similar method for the java2wsdl
goal...Is
there a simple example for how to do this (is it possible?)

Thanks,

Jason


--
View this message in context:
http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-code
gen-plugin--tf4271078.html#a12156338
Sent from the cxf-user mailing list archive at Nabble.com.



  



  


Re: How to pass options to java2wsdl in the maven codegen plugin?

2007-08-15 Thread Jason Rosenberg

Well,

It should accept the full set of arguments that java2wsdl supports, I should
think...

Using the extraarg model, you don't have to worry about whatever other args
get added to java2wsdl later on

(Also I spoke to soon, there are a few other things I wanted at least to try
setting, based on the list of args here: 
http://cwiki.apache.org/CXF20DOC/java-to-wsdl.html)...

Jason



James Mao wrote:
 
 So, any other options you want to add in? Is it ok to close CXF-910?
 
 Cheers,
 James
 
 Interestingly, looking at the source code there, it does appear that a
 lot of
 the parameters are exposed as regular tags(none of which are
 documented
 here: 
 http://cwiki.apache.org/CXF20DOC/maven-integration-and-plugin.html)

 So, you can include these tags, apparently, which covers my needs, at
 least:

 configuration
className.../className
serviceName.../serviceName
soap12.../soap12
targetNameSpace.../targetNameSpace
verbose.../verbose
quiet.../quiet
 /configuration


 className, of course, is required...

 Jason



 Jason Rosenberg wrote:
   
 Filed...

 https://issues.apache.org/jira/browse/CXF-910

 Thanks,

 Jason


 Christopher Moesel wrote:
 
 Hi Jason,

 Looking through the code for the java2wsdl goal, it doesn't appear that
 there is any way for passing in extra arguments.  If this is something
 you'd like to see in CXF, I'd suggest submitting an issue to JIRA.  It
 shouldn't be too hard to add.

 http://issues.apache.org/jira/browse/CXF

 If you're curious, here's the code for the goal (as it was released in
 2.0.1):

 http://svn.apache.org/viewvc/incubator/cxf/trunk/maven-plugins/codegen-p
 lugin/src/main/java/org/apache/cxf/maven_plugin/Java2WSDLMojo.java?revis
 ion=551785view=markup

 -Chris

 -Original Message-
 From: Jason Rosenberg [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, August 15, 2007 12:30 AM
 To: cxf-user@incubator.apache.org
 Subject: How to pass options to java2wsdl in the maven codegen plugin?


 Is there a way to pass options into the java2wsdl goal, in
 cxf-codegen-plugin?

 I know that for the wsdl2java goal, you can specify options using the
 extraarg tag, etc...

 I haven't been able to deduce a similar method for the java2wsdl
 goal...Is
 there a simple example for how to do this (is it possible?)

 Thanks,

 Jason


 -- 
 View this message in context:
 http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-code
 gen-plugin--tf4271078.html#a12156338
 Sent from the cxf-user mailing list archive at Nabble.com.



   
 

   
 
 

-- 
View this message in context: 
http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-codegen-plugin--tf4271078.html#a12174473
Sent from the cxf-user mailing list archive at Nabble.com.



Re: How to pass options to java2wsdl in the maven codegen plugin?

2007-08-15 Thread James Mao

Hi Jason,

I happen to agree with you, but we are doing anther java2* tools, called 
java2ws, which will include more options, and it'll in our 2.1 release i 
guess.

So, I think we can do the same thing as wsdl2java goal here.

Cheers,
James


Well,

It should accept the full set of arguments that java2wsdl supports, I should
think...

Using the extraarg model, you don't have to worry about whatever other args
get added to java2wsdl later on

(Also I spoke to soon, there are a few other things I wanted at least to try
setting, based on the list of args here: 
http://cwiki.apache.org/CXF20DOC/java-to-wsdl.html)...


Jason



James Mao wrote:
  

So, any other options you want to add in? Is it ok to close CXF-910?

Cheers,
James



Interestingly, looking at the source code there, it does appear that a
lot of
the parameters are exposed as regular tags(none of which are
documented
here: 
http://cwiki.apache.org/CXF20DOC/maven-integration-and-plugin.html)


So, you can include these tags, apparently, which covers my needs, at
least:

configuration
   className.../className
   serviceName.../serviceName
   soap12.../soap12
   targetNameSpace.../targetNameSpace
   verbose.../verbose
   quiet.../quiet
/configuration


className, of course, is required...

Jason



Jason Rosenberg wrote:
  
  

Filed...

https://issues.apache.org/jira/browse/CXF-910

Thanks,

Jason


Christopher Moesel wrote:



Hi Jason,

Looking through the code for the java2wsdl goal, it doesn't appear that
there is any way for passing in extra arguments.  If this is something
you'd like to see in CXF, I'd suggest submitting an issue to JIRA.  It
shouldn't be too hard to add.

http://issues.apache.org/jira/browse/CXF

If you're curious, here's the code for the goal (as it was released in
2.0.1):

http://svn.apache.org/viewvc/incubator/cxf/trunk/maven-plugins/codegen-p
lugin/src/main/java/org/apache/cxf/maven_plugin/Java2WSDLMojo.java?revis
ion=551785view=markup

-Chris

-Original Message-
From: Jason Rosenberg [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 15, 2007 12:30 AM

To: cxf-user@incubator.apache.org
Subject: How to pass options to java2wsdl in the maven codegen plugin?


Is there a way to pass options into the java2wsdl goal, in
cxf-codegen-plugin?

I know that for the wsdl2java goal, you can specify options using the
extraarg tag, etc...

I haven't been able to deduce a similar method for the java2wsdl
goal...Is
there a simple example for how to do this (is it possible?)

Thanks,

Jason


--
View this message in context:
http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-code
gen-plugin--tf4271078.html#a12156338
Sent from the cxf-user mailing list archive at Nabble.com.



  
  


  
  



  


Re: How to pass options to java2wsdl in the maven codegen plugin?

2007-08-15 Thread James Mao

Jason,

Yeah, I saw the issues you report, i'll take care of it.

Currently, we don't have the documents for java2ws
but you can track the issue https://issues.apache.org/jira/browse/CXF-890
It includes couple sub tasks.

Cheers,
James


James,

Thanks for taking a look, to the extent it makes sense.Is there any
preliminary documentation for the java2ws tool?

For what it's worth, I just logged a couple more bugs against the current
java2wsdl goal for the codegen maven plugin,  CXF-911 and CXF-912

Thanks,

Jason



James Mao wrote:
  

Hi Jason,

I happen to agree with you, but we are doing anther java2* tools, called 
java2ws, which will include more options, and it'll in our 2.1 release i 
guess.

So, I think we can do the same thing as wsdl2java goal here.

Cheers,
James



Well,

It should accept the full set of arguments that java2wsdl supports, I
should
think...

Using the extraarg model, you don't have to worry about whatever other
args
get added to java2wsdl later on

(Also I spoke to soon, there are a few other things I wanted at least to
try
setting, based on the list of args here: 
http://cwiki.apache.org/CXF20DOC/java-to-wsdl.html)...


Jason



James Mao wrote:
  
  

So, any other options you want to add in? Is it ok to close CXF-910?

Cheers,
James




Interestingly, looking at the source code there, it does appear that a
lot of
the parameters are exposed as regular tags(none of which are
documented
here: 
http://cwiki.apache.org/CXF20DOC/maven-integration-and-plugin.html)


So, you can include these tags, apparently, which covers my needs, at
least:

configuration
   className.../className
   serviceName.../serviceName
   soap12.../soap12
   targetNameSpace.../targetNameSpace
   verbose.../verbose
   quiet.../quiet
/configuration


className, of course, is required...

Jason



Jason Rosenberg wrote:
  
  
  

Filed...

https://issues.apache.org/jira/browse/CXF-910

Thanks,

Jason


Christopher Moesel wrote:




Hi Jason,

Looking through the code for the java2wsdl goal, it doesn't appear
that
there is any way for passing in extra arguments.  If this is
something
you'd like to see in CXF, I'd suggest submitting an issue to JIRA. 
It

shouldn't be too hard to add.

http://issues.apache.org/jira/browse/CXF

If you're curious, here's the code for the goal (as it was released
in
2.0.1):

http://svn.apache.org/viewvc/incubator/cxf/trunk/maven-plugins/codegen-p
lugin/src/main/java/org/apache/cxf/maven_plugin/Java2WSDLMojo.java?revis
ion=551785view=markup

-Chris

-Original Message-
From: Jason Rosenberg [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 15, 2007 12:30 AM

To: cxf-user@incubator.apache.org
Subject: How to pass options to java2wsdl in the maven codegen
plugin?


Is there a way to pass options into the java2wsdl goal, in
cxf-codegen-plugin?

I know that for the wsdl2java goal, you can specify options using the
extraarg tag, etc...

I haven't been able to deduce a similar method for the java2wsdl
goal...Is
there a simple example for how to do this (is it possible?)

Thanks,

Jason


--
View this message in context:
http://www.nabble.com/How-to-pass-options-to-java2wsdl-in-the-maven-code
gen-plugin--tf4271078.html#a12156338
Sent from the cxf-user mailing list archive at Nabble.com.