Sending GPS data to mobile via bluetooth

Thanks guys,
i have just retried a basic connection from the arduino to bluetooth
with the sample code and that has not worked either so im starting to think that
the bluetooth modem i am using does not have the Tx and Rx working propper.

#include <SoftwareSerial.h>

SoftwareSerial mySerial(10, 11); // RX, TX

void setup()  
{

  // set the data rate for the SoftwareSerial port
  mySerial.begin(115200);
  mySerial.println("Hello, world?");
}

void loop() // run over and over
{
  if (mySerial.available())
    Serial.write(mySerial.read());
  if (Serial.available())
    mySerial.write(Serial.read());
}

but on the other hand, i do get a connection and it shows up green, but i just cant get it to
display anything. i have also tried using someone elses phone but still no luck :frowning:

I am really running out of options, i could do with it working befour the end of tonight so i can
get evidence for my report.