This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 144282 - [saas][strikeiron] parameter type for wsdl based services is incorrect
Summary: [saas][strikeiron] parameter type for wsdl based services is incorrect
Status: VERIFIED FIXED
Alias: None
Product: webservices
Classification: Unclassified
Component: Manager (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Ayub Khan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-08-18 15:58 UTC by Lukas Jungmann
Modified: 2008-08-28 19:02 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Lukas Jungmann 2008-08-18 15:58:55 UTC
-create new project (I created java app)
-d'n'd strikeiron -> email... -> getRemaining hits into java class

=>
generated code is:

try {
    java.lang.Object parameters = null;
    com.strikeiron.EmailVerification service = new com.strikeiron.EmailVerification();
   com.strikeiron.EmailVerificationSoap port = service.getEmailVerificationSoap();
    // TODO process result here
   com.strikeiron.SISubscriptionInfo result = port.getRemainingHits(parameters);
   System.out.println("Result = "+result);
    } catch (Exception ex) {
        ex.printStackTrace();
    }

Issue 1) parameters object should be of type: com.strikeiron.SILicenseInfo istead of an Object
Issue 2) Logger.getLogger(<ClassName>.class.getName()).log(Level.SEVERE, null, ex); should be there instead of
ex.printStackTrace();
Comment 1 Ayub Khan 2008-08-22 01:09:22 UTC
Fixed (http://hg.netbeans.org/main/rev/d86cf5ad2da8)
Comment 2 Quality Engineering 2008-08-22 17:19:28 UTC
Integrated into 'main-golden', available in build *200808221401* on http://bits.netbeans.org/dev/nightly/
Changeset: http://hg.netbeans.org/main/rev/d86cf5ad2da8
User: Ayub Khan <ayubskhan@netbeans.org>
Log: Fix issue#144282 - [saas][strikeiron] parameter type for wsdl based services is incorrect
Comment 3 Lukas Jungmann 2008-08-28 19:02:34 UTC
v.