Reputation: 43
does consume .NET WCF service is do-able in Eclipse for Blackberry?
been trying hard for 4 days now with no luck i'm stuck when trying to generate java Stub class for my WCF using Java ME 3.2 because my WCF contain .NET List as parameter and for unknown reason Java ME can't generate those stub for me :(
Why? any insight?
thx, erick
Upvotes: 0
Views: 334
Reputation: 65391
There are several things that you could change / check:
You should test your service from a .net client first, to ensure that it is a compatibility problem.
If you have something like:
public myItems[] GetData();
Try;
[OperationContract]
public myResponse GetData();
[DataContract]
public class myResponse()
{
[Datamember]
myItems[] items { get; set; }
}
Upvotes: 1