Status/Resolution/Reason: Closed/Fixed/
Reporter/Name(from Bugbase): Ron Gruner / Ron Gruner (Ron Gruner)
Created: 01/11/2015
Components: Web Services
Versions: 10.0
Failure Type: Non Functioning
Found In Build/Fixed In Build: Final / 300550 300665 300675
Priority/Frequency: Critical / All users will encounter
Locale/System: English / Win 2008 Server
Vote Count: 0
Problem Description: XML webservices work fine in XML 9 but fails in CF 10
Works fine at: http://216.197.120.131/test.cfm (CF9)
Fails at: http://phenom.aero/test.cfm
Steps to Reproduce: Run test.cfm on both my CF9 and CF10 servers
Actual Result: see http://phenom.aero/test.cfm (CF10) for failure message
Expected Result: see http://216.197.120.131/test.cfm (CF9) for correct result
Any Workarounds:No
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 3919057
External Customer Info:
External Company:
External Customer Name: RonGruner
External Customer Email:
External Test Config: My Hardware and Environment details: Here's the code...
<cfscript>
stAuth = structNew();
stAuth.username = "gr...er";
stAuth.password = "3a96...a72a";
ws = createObject("webservice", "http://flightxml.flightaware.com/soap/FlightXML2/wsdl", stAuth);
</cfscript>
<cfloop index="type" list="E50P,E55P,C510,C525,EA50,PRM1,B739">
<cfscript>
application[type] = structNew();
stSearch = structNew();
stSearch.howMany = 10;
stSearch.offset = 0;
stSearch.query = "-inAir 1 -type #type# -aboveAltitude 179";
aSearchStruct = ws.search(stSearch);
application[type].searchFlights = aSearchStruct.getSearchResult().getAircraft();
</cfscript>
<cfoutput>
<cfif IsDefined("application.#type#.searchFlights")>
#type# | #ArrayLen(application[type].searchFlights)# Flights Active<br>
<cfelse>
#type# | No Aircraft in Flight Levels<br>
</cfif>
</cfoutput>
<br>
</cfloop>
Attachments:
- January 21, 2015 00:00:00: 1_test.cfm
Comments: