By default routers don't forward multicast traffic I believe unless they are told to subscribe via IGMP . What type of edge routers are you running on both sides of the connection? You should consider running Wireshark on the side of the connection listening for data to see if you receive anything. Why are you trying to send multicast data to a remote network anyway? You should also take a look at the wikipedia article for ip multicast to get you pointed in the right direction.
One time in my life I was going to be adventurous and set up a unicast/multicast network that traversed a router but I quickly gave up and redesigned the comms. It was a PITA.
Protocols and applications Since multicast is a different transmission mode from unicast, only protocols designed for multicast can be sensibly used with multicast.
Most of the existing application protocols that use multicast run on top of the User Datagram Protocol, UDP. In many applications, the Real-time Transport Protocol, RTP, is used for framing of multimedia content over multicast; the RSVP protocol may be used for bandwidth reservation in a multicast distribution.
On the local network, multicast delivery is controlled by IGMP (on IPv4 network) and MLD (on IPv6 network); inside a routing domain, PIM or MOSPF are used; between routing domains, one uses inter-domain multicast routing protocols, such as MBGP.
A number of errors can happen if packets intended for unicast are accidentally sent to a multicast address; in particular, sending ICMP packets to a multicast address has been used in the context of DoS attacks as a way of achieving packet amplification.
I am a little rusty with OSPF but that article is indicating MOSPF is an extension of OSPF but I fail to see how they relate. It is wikipedia so read it with a grain of salt,
Good luck!