Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 314312

Summary: Codegeneration: ClientInvoker class contains wrong getter/setter
Product: z_Archived Reporter: Andrei Shakirin <andrei.shakirin>
Component: SwordfishAssignee: 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:
Description Flags
WSDL to reproduce the problem none

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.