FYI:
wallet_asset_create <symbol> <asset_name> <issuer_name> [description] [data] [maximum_share_supply]   Creates a new user issued asset
Creates a new user issued asset
Parameters:
  symbol (asset_symbol, required): the ticker symbol for the new asset
  asset_name (std::string, required): the name of the asset
  issuer_name (std::string, required): the name of the issuer of the asset
  description (std::string, optional, defaults to ""): a description of the asset
  data (json_variant, optional, defaults to null): arbitrary data attached to the asset
  maximum_share_supply (int64_t, optional, defaults to 1000000000000000): the maximum number of shares of the asset
Returns:
  signed_transaction
default (unlocked) >>> blockchain_list_registered_assets
[{
    "id": 1,
    "symbol": "LOVE",
    "name": "LOVE",
    "description": "Buy and Send some LOVE!",
    "public_data": null,
    "issuer_account_id": 359,
    "current_share_supply": 9000,
    "maximum_share_supply": 1000000000000000,
    "collected_fees": 0,
    "registration_date": "20140606T114130"
  },{
Issuing love to my self was successful. Issuing for an other user was not :-(
wallet_asset_issue 1000 LOVE alt  "Some Love for you!"
 Afterwards:
 44   2643.0    2014-06-06T11:43:00 voting              xeroc1              First Kiss!                        1,000 LOVE               0 XTS           N/A  5ec68072abae1a6a4d61e53b90aa9e8143424fee
 45   2644.2    2014-06-06T11:45:00 unknown             unknown                                                     0 XTS               0 XTS           N/A  835545b2be4567bb0284e7189015e5e816e8c50d
 46   2644.3    2014-06-06T11:45:00 unknown             unknown                                                     0 XTS               0 XTS           N/A  986873fc702bb450cd560aa76acab99d9a503bb4
 47   2644.0    2014-06-06T11:45:00 unknown             unknown                                                     0 XTS               0 XTS           N/A  06fc83c424ea153da67922c9a4c0026515f20fae
 48   2644.4    2014-06-06T11:45:00 unknown             unknown                                                     0 XTS               0 XTS           N/A  d6675ff9b0fdb025bad40a912cccd699c439e664
 49   2646.1    2014-06-06T11:46:00 unknown             unknown                                                     0 XTS               0 XTS           N/A  abd38a74bfd73dd07d57bf6b47e953869fcf9b75
 50   2646.0    2014-06-06T11:46:00 unknown             unknown                                                     0 XTS               0 XTS           N/A  223a25576a86d675511183f11e27782396ad025b
 51   2647.1    2014-06-06T11:46:30 unknown             unknown                                                     0 XTS               0 XTS           N/A  eabfb9d6de6073fa956cda6d9bc928ce2e08e953
 52   2647.0    2014-06-06T11:46:30 unknown             unknown                                                     0 XTS               0 XTS           N/A  05926f9a89a34b6ef3d99682058e12b4dc92f3e6
Also wallet_transfer seems to not work with that asset:
default (unlocked) >>> wallet_transfer 100000 LOV xeroc1 alt "Sent you some LOVE"
assert
asset_id == o.asset_id: 
    {}
    th_a  asset.cpp:51 operator-=
    {"amount_to_transfer":100000,"amount_to_transfer_symbol":"LOV","from_account_name":"xeroc1","to_account_name":"alt","memo_message":"Sent you some LOVE"}
    th_a  wallet.cpp:1091 transfer
    {}
    th_a  common_api_client.cpp:332 wallet_transfer
    {"command":"wallet_transfer"}
    th_a  cli.cpp:570 execute_command