VarianAPIs / Varian-Code-Samples

Code samples for ESAPI and other Varian APIs and web services.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FractionalMUNV|Link Does Not Support Fractional MU's

kudoxi opened this issue · comments

Hi,
I used an API named GetPatientPlanTxFieldsRequest following the ARIA Access V1.4 Reference Guide to try to get the patients' plan field info from Eclipse.My params were:

{
	'__type': 'GetPatientPlanTxFieldsRequest:http://services.varian.com/AriaWebConnect/Link',
	'Attributes': [],
	'CourseId': {
		'Value': 'C1'
	},
	'PatientId': {
		'Value': '000xxxxxx17'
	},
	'PlanSetupId': {
		'Value': 'Plan1'
	},
	'PlanId': {
		'Value': 'Plan1'
	}
} 

Which was totally right with Eclipse original test patient.
But when it come to a real patient, it returned something wrong.
I got a Response like:

{
	'__type': 'ApplicationError:http://services.varian.com/Foundation/SF/Gateway',
	'Attributes': [{
		'__type': 'MessageAttribute:http://services.varian.com/Foundation/SF/Gateway',
		'Name': 'username',
		'Value': 'ZZRADONC\\zhuting'
	}],
	'Message': "FractionalMUNV|Link Does Not Support Fractional MU's. Pl Contact Varian Medical Systems.",
	'StackTrace': None,
	'Code': 'AWC/ApplicationError',
	'Details': []
}

Is my params wrong? Or is this API not compatible with this version of our Eclipse? Or is there any specific config on our Varian Medical Systems need to be set?