Re: dissappearing exception types from method signature

2003-08-15 Thread Stuart Barlow
, August 15, 2003 5:02 AM To: [EMAIL PROTECTED] Subject: dissappearing exception types from method signature I have a java interface with the following method... public String logon(String libraryName, String userName, String domain, String password) throws DmSystemException, DmInvalidLogonException

RE: dissappearing exception types from method signature

2003-08-15 Thread Mike Perham
This was discussed about a week ago. Check the archives. -Original Message- From: Stuart Barlow [mailto:[EMAIL PROTECTED] Sent: Friday, August 15, 2003 5:02 AM To: [EMAIL PROTECTED] Subject: dissappearing exception types from method signature I have a java interface with the following

dissappearing exception types from method signature

2003-08-15 Thread Stuart Barlow
I have a java interface with the following method... public String logon(String libraryName, String userName, String domain, String password) throws DmSystemException, DmInvalidLogonException; After I run Java2WSDL and WSDL2Java the method has changed to... public java.lang.String logon(java.la