Roberto,

I just saw that the command you issued was wrong. As you described in the JIRA, you have specified java2wsdl -cn ch.montefiore.Stock -cp

However, the -cp (classpath) option does not have any value. It should include the correct class path. For example, if your class is located at Axis2_home/bin, java2wsdl command should be given as follows.

*java2wsdl -cn ch.montefiore.Stock -cp .* (Note that the . at the end-- It says that the class is located at the current directory where java2wsdl is issued)

Try again with the above and let me know.

regards
Charitha

Roberto wrote:


hmm.. I'm not sure about this error. You can try with a different class (A class just echo something or class which adds two integers) and do the same and check whether it is working properly. It will be helpful if you can submit a JIRA issue attaching your class so that someone can have a look in to it. (Axis2 JIRA:- http://issues.apache.org/jira/browse/AXIS2)

regards
Charitha

Actually was a simple class that return a String here  the code

package ch.montefiore;

public class Stock{

  public String getNome(){
String nome = "Roberto";
    String frase = "Il mio nome";

    return frase + "  " + nome;

  }
}

As you can see is just a test class, anyway I submitted to Axis2 JIRA, thanx anyway

Cheers
Roberto

--
IT Manager

MONTEFIORE
----------
Centralino: +41916104455
Diretto   : +41916104464
Mobile    : +41797000139

www.montefiore.ch




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to