I\'ve looked around at some of the solutions to this problem but they don\'t seem to be the same as what I\'m experiencing.
Method that I\'m trying to call:
placeBets(betList, stakeAmt) is an instance method not a static method. You need to create an instance of CBetfairAPI first:
placeBets(betList, stakeAmt)
CBetfairAPI
MyBetfair api = new MyBetfair(); ArrayList bets = api.placeBets(betList, stakeAmt);