I would need a bit more info to understand this. Are you trying to change
the "self" URI of the item to your website? Or are you just adding an
additional URI ? If so, shouldn't you be using the "alternate" URI for this?
On 10/25/06, mult...@gmail.com <mult...@gmail.com> wrote:
Hi,
We are trying to bulk upload using the C# API in VB.NET.
We are sending block of 20 items so it doesnt have a timeout.
But our problem is that we have to insert, and after, do an update so
the
our URL is the base URL of the item.
Steps:
We insert, fetch the entry and the change the link at position 0 with:
entry.Links(0).HRef = New AtomUri("...")
so that when users click in the entry it jumps to our web site. Is
there anyway to avoid this update and add the link in the insert?
We've tryed
entry.Links.Add
entry.GBaseAttributes.AddUrlAttribute
but it doesnt work.
How can we solve this without doing the update?
Thanks in advance.