Hmm. OK a Session Facade will have multiple methods for a client to call, and will basically act as a pass through to a Plain Old
Java Object to do the actual work. The Command Pattern is an Object that has a "execute" method that is passed to some object, that will call the execute method on that object.
If you have a Command Object that you pass to a Session Bean, the Session Bean might only have one method in it that accepts a Command Object. This Session bean could be a facade if you wanted it to be.
They are really two different concepts. You can use the Command pattern without any EJBs. But a Session Facade, based on the name, can only be a Session
EJB. If it is anything else, then it is just a Facade.
Hope that helps.
Mark