Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 314312 - Codegeneration: ClientInvoker class contains wrong getter/setter
Summary: Codegeneration: ClientInvoker class contains wrong getter/setter
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: Swordfish (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Swordfish Core Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-05-25 13:17 EDT by Andrei Shakirin CLA
Modified: 2014-01-09 16:41 EST (History)
0 users

See Also:


Attachments
WSDL to reproduce the problem (2.58 KB, application/octet-stream)
2010-05-25 13:17 EDT, Andrei Shakirin CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Andrei Shakirin CLA 2010-05-25 13:17:57 EDT
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.