1

I create a BDC entry for a web service that exposes a catalog of publications. Each publication has a collection of authors. When I display the data in Bussiness Data List the column "Authors" displays "BDC.Authors[]".

Ho do I get Sharepoint 2007 to display the last names, seperated by a ","?

Norbert B.
  • 5,650
  • 3
  • 25
  • 30

1 Answers1

0

I was getting a similar error message once and found out the reason was something regarding the fact that the data I was returning to the BDC was unserializable. I had to fix my web service to return some serializable data (I think String[] is what I used), and it was fine.

Not exactly the same, but maybe it can get you on the right path.

theG
  • 585
  • 3
  • 9
  • Your correct just got the sdame answer from a collegae. I fixed it by letting the service return concatination of the Authors column value. Thanks anyway. Thought I was the only one with the problem – Norbert B. Apr 20 '09 at 14:56