08-03-2018 12:51 PM
When attempting to send the simple API call to the XML web service https://apidemoeu.Webex.com/WBXService/XMLService I get a response of "validation: unable to find FieldDescriptor for 'WebexID' in ClassDescriptor of securityContextType"
Please see example below-
Post: https://apidemoeu.Webex.com/WBXService/XMLService
Body: Raw
Body Content:
<?xml version="1.0" encoding="UTF-8"?>
<serv:message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<header>
<securityContext>
<WebexID>XXXX</WebexID>
<password>XXXX</password>
<siteName>apidemoeu</siteName>
</securityContext>
</header>
<body>
<bodyContent xsi:type="java:com.Webex.service.binding.meeting.CreateMeeting">
<metaData>
<confName>Sample Meeting</confName>
</metaData>
<schedule>
<startDate/>
</schedule>
</bodyContent>
</body>
</serv:message>
Response I receive:
Status 200
<?xml version="1.0" encoding="UTF-8"?>
<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service" xmlns:com="http://www.webex.com/schemas/2002/06/common">
<serv:header>
<serv:response>
<serv:result>FAILURE</serv:result>
<serv:reason>validation: unable to find FieldDescriptor for 'WebexID' in ClassDescriptor of securityContextType</serv:reason>
<serv:gsbStatus>PRIMARY</serv:gsbStatus>
<serv:exceptionID>999999</serv:exceptionID>
</serv:response>
</serv:header>
<serv:body>
<serv:bodyContent/>
</serv:body>
</serv:message>
Any assistance is welcome!
Solved! Go to Solution.
08-03-2018 12:54 PM
Its case sensitive the "e" should be a capitol letter, "W" should be lower "webExID", or you can remove it completely and change to < email >
08-03-2018 01:48 PM
You have a capital "W" in the XSI type. it should be <bodyContent xsi:type="java:com.webex.service.binding.meeting.CreateMeeting">
08-03-2018 12:54 PM
Its case sensitive the "e" should be a capitol letter, "W" should be lower "webExID", or you can remove it completely and change to < email >
08-03-2018 01:45 PM
08-03-2018 01:48 PM
You have a capital "W" in the XSI type. it should be <bodyContent xsi:type="java:com.webex.service.binding.meeting.CreateMeeting">
08-03-2018 01:52 PM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide