You ruled out XOR in your question, but it actually seems like a good approach. A hash function doesn't have to generate a unique output for each possible input (it's easy to demonstrate that this is impossible in the general case); instead, it needs to generate few collisions (by having its output well-distributed across the output range).
Using XOR allows values to be added/removed from the hash in constant time as integers are added/removed from the multiset.
A simple XOR algorithm has the property that sets such as { 1, 2, 3 } and { 4, 8, 12 } would all have a hash code of 0, which is bad.
If it's likely that the input (the integers being added to the multiset) aren't well distributed, use an integer hashing function on each value first before XORing it into the multiset's hash. This will greatly reduce the probability of hash collisions (because (hash(1) ^ hash(2) ^ hash(3)) != 0).
It will still be the case that an even number of copies of the same integer (in one set) will contribute 0 to the hash code; this may or may not be a problem depending on your typical data. To work around this, consider also XORing the current size of the multiset.
For some examples, take a look at the integer hash functions at http://www.cris.com/~Ttwang/tech/inthash.htm.