Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have an employee whose last name is Null. He kills our employee lookup application when his last name is used as the search term (which happens to be quite often now). The error received (thanks Fiddler!) is

  <soapenv:Fault>
   <faultcode>soapenv:Server.userException</faultcode>
   <faultstring>coldfusion.xml.rpc.CFCInvocationException: [coldfusion.runtime.MissingArgumentException : The SEARCHSTRING parameter to the getFacultyNames function is required but was not passed in.]</faultstring>

Cute, huh?

The parameter's type is string.

I am using:

  • WSDL (SOAP).
  • Flex 3.5
  • ActionScript 3
  • ColdFusion 8

Note that the error DOES NOT occur when calling the webservice as an object from a ColdFusion page.

share|improve this question
239  
(If you are serious, this sounds like an xkcd.com comic ...) – Leigh Dec 16 '10 at 1:31
32  
Just make sure you're passing a string "Null" and not the reserved keyword null and I would expect it to work w/o issues. – Reboog711 Dec 16 '10 at 1:53
143  
The xkcd comic in question: xkcd.com/327 – Ken Redler Dec 16 '10 at 3:50
60  
I can't wait for someone to suggest firing him/her! Also, does someone with the last name root or Administrator get extra privileges? – dsimms Apr 27 '12 at 18:12
108  
Oh yes, little Bobby Tables, we call him. – Nico Apr 27 '12 at 18:16
show 24 more comments

8 Answers

The problem could be in Flex' SOAP encoder. Try extending the SOAP encoder in your Flex application and debug the program to see how the null value is handled. My guess is, it's passed as NaN (Not a Number). This will mess up SOAP message unmarshalling process sometime (most notably in JBoss 5 server...). I remember extending the SOAP encoder and performing an explicit check on how NaN is handled.

(On a side note, are you expected to do something useful if employee id is Null, is this not an validation issue? I could be wrong, since I hardly know the requirement...)

share|improve this answer
14  
to resolve this I created a structure and passed the parms as part of that object. sorry i went awol... was out on medical leave. – bill Jan 16 '11 at 14:51
7  
I think the problem might be even deeper. It might be the case that the type system interpolates the string Null into a null value... – Daniel Ruoso Apr 27 '12 at 21:08
2  
This answer is on the right track; the problem is actually in the way that Flex encodes the XML before sending the SOAP Packet. An XMLEncoder does a "!- null" check and neglects to add the argument to the outgoing packet. – Reboog711 May 3 '12 at 16:05

On the xkcd note, the bobby-tables website has good advice for avoiding the improper interpretation of user data (in this case, the string "Null") in SQL queries in various languages, including ColdFusion.

It is not clear from the question that this is the source of the problem, and given the solution noted in a comment to the first answer (embedding the parameters in a structure) it seems likely that it was something else. In any case, I wonder why joeframbach saw fit to put a bounty on such a specific (and ancient) question - with the lack of details it seems unlikely that any good answer could possibly be generated.

share|improve this answer
43  
Mostly for the lulz – Joe Frambach Apr 27 '12 at 20:21
1  
Seems a rather pointless waste of a bounty if there is no answer at the end of it. TEHO. – Leigh Apr 28 '12 at 2:13
21  
Some men are not driven by reputation or logic. Some men just want to watch the bounty burn. – Sudhir Jonathan Apr 28 '12 at 6:50
5  
It's on the front page of reddit. That'll be what generated the attention – Phil Apr 28 '12 at 15:48
2  
-1; because this doesn't actually answer the question. The bobby tables web site explains how to do validation of this stuff in ColdFusion code using cfqueryparam; but this error is occurring before any user written CF code is executed. – Reboog711 May 3 '12 at 16:07
show 6 more comments

As a hack could you consider having a special handling on the client side, converting 'Null' string to something that will never occur e.g. XXNULLXX and converting back on the server?

Not pretty but may solve the issue for such a boundary case.

share|improve this answer
never is such a strong word... I bet when they decided that the string Null could be safely interpolated to the value Null, they thought, there can never be someone named Null. – bluesmoon Apr 28 '12 at 18:06
4  
Indeed - or what happens when someone's last name actually is the null string? kalzumeus.com/2010/06/17/… – Chris Stratton Apr 28 '12 at 18:24
1  
then they suffer from peoplearestupiditis. – stu Apr 29 '12 at 2:39
Maybe empty-space padding? " Null " Server-side is often already trimmed, but it's easier to have wholesale trimmer on server side than do "if pattern, then remove chars" logic. – ddotsenko Apr 29 '12 at 21:12
Then you'll have to check for those special characters on the other side, strip them off, validate, etc.... bad idea. Adds more problems than it solves. – MonkeyWrench May 17 '12 at 18:08

@doc_180 had the right concept, except he is focused on numbers, whereas the original poster had issues with strings.

The solution is to change the mx.rpc.xml.XMLEncoder file. This is line 121

    if (content != null)
        result += content;

[I looked at Flex 4.5.1 SDK; line numbers may differ in other versions]

Basically, the validation fails because 'content is null' and therefore your argument is not added to the outgoing SOAP Packet; thus causing the missing parameter error.

You have to extend this class to remove the validation. Then there is a big snowball up the chain, modifying SOAPEncoder to use your modified XMLEncoder, and then modifying Operation to use your modified SOAPEncoder, and then moidfying WebService to use your alternate Operation class.

I spent a few hours on it, but need to move on. It'll probably take a day or two.

You may be able to just fix the XMLEncoder line and do some monkey patching to use your own class.

I'll also add that if you switch to using RemoteObject/AMF with ColdFusion, the null is passed without problems.

share|improve this answer

On the AS3 three side add the following code:

if(lastname == 'null') lastname = 'Little Bobby Tables';

Then in ColdFusion, the following:

if(lastname =='Little Bobby Tables') lastname = 'null';

All fixed.

share|improve this answer
1  
It would work though, and whoever inherits the code will get a good laugh. (Edited for the ColdFusion side) – Dave Long May 4 '12 at 18:25
3  
How do you ensure there no a person have a lastname of "Little Bobby Tables" – Dennis Cheung May 7 '12 at 15:56
6  
If you have someone with the last name "Little Bobby Tables" and have to worry about the last name "null" then I want to know who you are working with. – Dave Long May 7 '12 at 18:34

Translate all characters into their hex-entity equivalents. In this case, Null would be converted into &#4E;&#75;&#6C;&#6C;

share|improve this answer
+1; creative idea which I suspect would work. – Reboog711 May 3 '12 at 16:11
Don't know about the AS side, but inside CF it's rather trivial to instance the ESAPI library that ships with CF. It already has a ton of functions to do just that (and CF10 will have wrappers for some of those). – mz_01 May 5 '12 at 11:54
@mz_01 what are you talking about? – doogle May 5 '12 at 19:12
1  
CF has used the ESAPI library internally for years, but most people didn't use it. petefreitag.com/item/788.cfm shows how you can easily instantiate it. I usually have an instance of it in the Application scope as a more versatile replacement for HTMLEditFormat() and the like. – mz_01 May 19 '12 at 12:46

If memory serves me correctly, stringifying a null value in actionscript will give the string "NULL". My suspicion is that someone has decided that it is, therefore, a good idea to decode the string "NULL" as null, causing the breakage you see here -- probably because they were passing in null objects and getting strings in the database, when they didn't want that (so be sure to check for that kind of bug, too).

share|improve this answer

It's a kludge, but assuming there's a minimum length for SEARCHSTRING, for example 2 characters, substring the SEARCHSTRING parameter at the second character and pass it as two parameters instead: SEARCHSTRING1 ("Nu") and SEARCHSTRING2 ("ll"). Concatenate them back together when executing the query to the database.

share|improve this answer

protected by Konrad Rudolph Apr 27 '12 at 17:40

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.