Page 1 of 2

Marketplace bug

PostPosted: Fri Dec 09, 2011 2:21 am
by VikentiyR
I can not sell the resources.
I select resoure. Sets the quantity, price, click OK and nothing happens.
Mylisted is empty. No error or success messages. It's redirected to my resouces list (sell tab).
Persons have enough to sell.
Trying sell 100 times with difrent price and quantity.

With the sale of treasures all right.
Purchase of resources also works.

Phone Htc Mozart Windows Phone 7 Mango with the latest updates.

Re: Marketplace bug

PostPosted: Fri Dec 09, 2011 7:46 am
by support9
VikentiyR wrote:I can not sell the resources.
I select resoure. Sets the quantity, price, click OK and nothing happens.
Mylisted is empty. No error or success messages. It's redirected to my resouces list (sell tab).
Persons have enough to sell.
Trying sell 100 times with difrent price and quantity.

With the sale of treasures all right.
Purchase of resources also works.

Phone Htc Mozart Windows Phone 7 Mango with the latest updates.


please tell me what language version you are using?

Re: Marketplace bug

PostPosted: Fri Dec 09, 2011 12:15 pm
by VikentiyR
I used Russian and English version (switched in settings).
Windows phone is Russian.

Re: Marketplace bug

PostPosted: Thu Jan 05, 2012 3:11 pm
by labluegirl
Hi, same problem with French(fr) version.

Re: Marketplace bug

PostPosted: Sat Jan 07, 2012 1:17 am
by fluegelix
I can't sell resources too. I'm using HTC hd7. The bug started about half a year ago...

Re: Marketplace bug

PostPosted: Tue Jan 10, 2012 8:14 pm
by wasgehtn
with me the same. i use ger 3.05.i can't sell and i can't buy too.
would be nice if you guys can fix this...

Re: Marketplace bug

PostPosted: Wed Jan 11, 2012 7:23 pm
by PsychoPif
Me neither, Focus, Mango

Re: Marketplace bug

PostPosted: Sun Jan 15, 2012 6:46 pm
by bm1500
I also have this problem please fix this thx

Re: Marketplace bug

PostPosted: Fri Feb 03, 2012 8:18 pm
by Digor
Have the same bug! What's about fixing???

Re: Marketplace bug

PostPosted: Sat Feb 04, 2012 1:59 pm
by wertzui01
@support:
In the class Market,
inside the method requestSellGoods
changing the line
unit_price
to
unit_price.ToString(CultureInfo.InvariantCulture)
should do the trick.

I think, the error occurs, because 0.01 is written as 0,01 in german.
So just using ToString() (Which is done implicit by string.Concat) is converting it to the string "0,01" which you are trying to parse on your server.
By telling it to use the invariant culture, it is parsed as "0.01" no matter which culture format is selected on the phone.
The other possibility would be that you change your parsing method on the server to look for "." and ",".

Hope this helps.