Sorry for not posting it all, but I was just checking if there was an issue with how I was calling the method.
I'm at work now, so I can't post the rest till I get home.
So my test variable was initialized like:
char test[3];
Will the bridge.get method break my string of integers into an array?
for example: '123' into ['1', '2', '3']?
If so, I'm guessing that is why the serial.println(test) still outputs nothing. I'm assuming I have to concatenate the array of chars again to print to serial properly?