| Summary: | Codegeneration: ClientInvoker class contains wrong getter/setter | ||||||
|---|---|---|---|---|---|---|---|
| Product: | z_Archived | Reporter: | Andrei Shakirin <andrei.shakirin> | ||||
| Component: | Swordfish | Assignee: | Swordfish Core Inbox <swordfish.core-inbox> | ||||
| Status: | NEW --- | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | ||||||
| Version: | unspecified | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Created attachment 169860 [details] WSDL to reproduce the problem Hi, Test case: WSDL first codegeneration. WSDL portType has name TSTFlight. Problem: XXXClientInvoker declares service interface and following getter & setter: private TSTFlight tSTFlight; public TSTFlight getTSTFlight() { return tSTFlight; } public void setTSTFlight(TSTFlight tSTFlight) { this.tSTFlight = tSTFlight; } Correct getter & setter for tSTFlight are: gettSTFlight and settSTFlight. Result: spring cannot find tSTFlight property in XXXClientInvoker class. WSDL to reproduce the problem is attached. Regards, Andrei.