users@jax-rpc.java.net

auto generating enums in the wsdl generator???

From: Rune Science <runescience_at_yahoo.com>
Date: Tue, 13 Sep 2005 08:17:17 -0700 (PDT)

Im still new at the webservice thing.

Something has come up. 2 of the parameters in one of
my interface functions have specific values that can
be used in these functions.

So i tried putting an enum in the interface

I want theses options to show up in the wsdl that the
user of the webservices

it doesnt show in the WSDL though...

public interface FastQuery extends java.rmi.Remote {
    
    public static final int EXACTPHRASE = 6;
    public static final int BEGINSWITH = 15;
    public static final int CONTAINS = 45;
    
    public String getFullDBInfo(
        int operationEnum,
        String searchstring,
        String whereColumnName,
        String columnFiltering)

How do i get the enums to show up in the wsdl as
something generated by the wsdl maker???