Hi Folks,

I have a DataObject, like this 

public class DataObject implements java.io.Serializable
{
        pivate Integer commandKey;
        private File outputFile;
        
        public DataObject(){}
        
        public void setCommandKey(Integer aKey)
        {
           commandKey = aKey;
        }
        
        public Integer getCommandKey()
        {
                return commandKey;
        }
                
        public void setOutputFile(File aFile)
        {
                outputFile = aFile;
        }
        
        public File getOutputFile() 
        {
                return outputFile;
        }
        
}


I use wscompile to generate WSDL file, but it can not show File element in 
WSDL? HOw can I do that. 

For commandKey element. I don't want to show this element in WSDL. How to do 
it? Thank you very much.

Chwang  

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904243#3904243

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904243


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to