Welcome to MSDN Blogs Sign in | Join | Help
Adding New List Items Using the Lists.asmx Web Service
    

You can lead a CAML to water, but...

 

The current MSDN documentation contains what I might call *adequate* coverage of the use of Web Services with Windows Sharepoint Services 2.0  In the case of simple operations, such as retrieving list items, the samples are more or less useful and can be adapted for use in a local environment with few challenges.  Other operations, however, are not particularly well-documented -- especially those that involve the use of CAML (Collaborative Application Markup Language) XML Batches.  Anyone who has attempted to delve into the wacky world of CAML has certainly discovered that working in CAML is somewhat convoluted.

 

Additionally, the current documentation contains no sample for adding NEW list items to Windows SharePoint Services 2.0 lists using the Lists.asmx Web Service.  The docs do contain update samples for existing items, but the CAML/XML syntax required to add a new item is somewhat different, and not well outlined in the SPPTSDK. 

 

So, in response to a recent customer request along these lines, I put together a sample that creates a very simple item in an Events list.  This has the added bonus of covering the proper type required to add date/time values for an event.  This Web Service can be used, for example, to add items to a shared WSS events list linked to Outlook Calendars (through the UI). 

 

An example implementation might be an application used by employees to indicate when they will be out of the office.  A shared calendar could be setup in WSS, which end users could then link to Outlook 2003 clients (by using the Link to Outlook button in WSS).  A separate application could be created which would take employee out of office requests, compare them to the existing events to either grant or deny the request, and add the request to the shared calendar if granted.

 

The sample below happens to be in VB.NET, which is a rarity for me and for the SDK docs in general (both of which tend to prefer C#), and in this case was part of a Windows Application designed to demonstrate the task.  The sample assumes the inclusion of a Web Reference to the Lists.asmx Web Service, as well as a Windows Form with five (5) text boxes (four of which are single-line text boxes, and the fifth being a multi-line text box used for writing out operation results.  Text boxes 1-4 are used for user input, and cover (respectively), the URL of the WSS site, the name of the Events List, the Title of the new Item, and the Start Date of the new Event Item.  Obviously, the sample could be expanded/adapted to include more or less information.  I'm NOT getting into recurring Events in this sample, but wish you ALL the luck in the world if you want to go ahead and attempt to implement that functionality yourself.  :)

 

=====

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

 

Me.Cursor = System.Windows.Forms.Cursors.WaitCursor

Me.TextBox5.Clear()

 

Dim sURL As String = Me.TextBox1.Text

Dim sList As String = Me.TextBox2.Text

Dim sTitle As String = Me.TextBox3.Text

Dim sDate As String = Me.TextBox4.Text

 

Dim sDisplay As String = Me.TextBox5.Text

 

Dim sBatch As String = ""

 

Dim oListWS As New AddEventItemWSVB.localhost.Lists

 

oListWS.Credentials = System.Net.CredentialCache.DefaultCredentials

 

If (oListWS.Url.EndsWith("/")) Then

     oListWS.Url = sURL.Concat(sURL, "_vti_bin/lists.asmx")

Else

     oListWS.Url = sURL.Concat(sURL, "/_vti_bin/lists.asmx")

End If

 

sBatch = "<Method ID=""1"" Cmd=""New"">"

sBatch += "<Field Name=""ID"">New</Field>"

sBatch += "<Field Name=""Title"">" + sTitle + "</Field>"

sBatch += "<Field Name=""EventDate"">" + sDate + "</Field>"

sBatch += "</Method>"

 

Dim xDoc As New System.Xml.XmlDocument

Dim xBatch As System.Xml.XmlElement = xDoc.CreateElement("Batch")

 

xBatch.SetAttribute("OnError", "Return")

xBatch.InnerXml = sBatch

 

Me.TextBox5.Text += "Submitting batch: " + vbCrLf + xBatch.OuterXml

 

Try

 

     Dim xReturn As System.Xml.XmlNode = oListWS.UpdateListItems(sList, xBatch)

     Me.TextBox5.Text += vbCrLf + "Return: " + vbCrLf + xReturn.OuterXml

 

Catch ex As Exception

 

     Me.TextBox5.Text += vbCrLf + "Exception: " + vbCrLf + ex.Message

 

End Try

 

Me.Cursor = System.Windows.Forms.Cursors.Default

 

End Sub

 

=====

 

Note that the Date field requires a UTC date/time following the format: yyyy-mm-ddThh:mm:ssZ.  For example, 3 PM on October 23, 2004 would be represented as: 2004-10-23T15:00:00Z.

 

A typical successful response from this operation (e.g., the text written out to the multi-line text box #5) is below, with some names/IDs removed to protect the guilty:

 

=====

 

Submitting batch:

<Batch OnError="Return"><Method ID="1" Cmd="New"><Field Name="ID">New</Field><Field Name="Title">My New Event</Field><Field Name="EventDate">2004-10-08T12:00:00Z</Field></Method></Batch>

Return:

<Results xmlns="http://schemas.microsoft.com/sharepoint/soap/"><Result ID="1,New"><ErrorCode>0x00000000</ErrorCode><ID /><z:row ows_ID="15" ows_Title="My New Event" ows_Modified="2004-10-08 13:31:58" ows_Created="2004-10-08 13:31:58" ows_Author="1;#<DOMAIN\username>" ows_Editor="1;#<DOMAIN\username>" ows_owshiddenversion="1" ows_Attachments="0" ows__ModerationStatus="0" ows_LinkTitleNoMenu="My New Event" ows_LinkTitle="My New Event" ows_SelectTitle="15" ows_Order="1500.00000000000" ows_GUID="{F9158A44-3F57-44C1-BD87-269673F987C6}" ows_EventDate="2004-10-08 12:00:00" ows_fRecurrence="0" ows_EventType="0" xmlns:z="#RowsetSchema" /></Result></Results>

 

=====

 

Happy Eventing! 

 

-R

Posted: Friday, October 08, 2004 1:36 PM by ryanrogers
Filed under: ,

Comments

Patrick Tisseghem's Blog said:

# October 9, 2004 3:16 AM

Arno Nel on Sharepoint Portal Server (SPS) and Inf said:

# October 11, 2004 1:41 AM

Bil Simser said:

This is why I created my SharePoint wrappers. So I could pass native .NET datatypes to SharePoint and have them do what they need to (like UTC date formatting) and treat things like lists as real objects over the wire. Of course I still need to publish them but they help people access the web services without having to deal with CAML and ugly stuff like that.
# October 16, 2004 9:24 AM

Clemens said:

this works ... <br> <br>But now I’m trying to create a new list. With the webservice [list.asmx] it is not going to work because there isn't an option to attach an template to it, so you have to do it manually (that’s not going to work in or daily build process ;-) an other option is to use rpc calls I’ve tried the newlist command in url cmd=newlist etc and in c# code with the use of calm... still no result. <br>Can you post an example of that? What works ;-) just like the sample above? <br> <br>Thx Clemens <br>
# November 3, 2004 6:49 AM

Wes Shaddix said:

# January 15, 2005 5:12 PM

Wes Shaddix said:

# January 15, 2005 5:14 PM

MikeWo's Musings said:

# March 8, 2005 3:46 PM

Ben Reichelt's Weblog said:

I recently wanted to use Sharepoint’s web services to manipulate a list on one of our WSS sites.&amp;nbsp;...
# March 25, 2006 2:50 PM

Prashanthspark said:

I want to Add a new items in Lists using Webservice

rNode = list.UpdateListItems(listName, elBatch);

Using this code for email lookup :
XmlElement field6 = doc.CreateElement("Field");
field6.SetAttribute("Name", "email");
try
{
//field6.InnerText = "myemail@ea.com";
field6.Value = "myemail@ea.com";
// Probleme is here to select from lookup field
}
catch
{
field6.InnerText = "";
}

What is the error here?
# May 20, 2006 3:40 AM

Gogi said:

Emphysema is a chronic respiratory disease where there is over-inflation

# October 25, 2006 4:02 PM

Gogi said:

pulmicort. All about of pulmicort.

# October 27, 2006 2:14 PM

ddppqq said:

# November 24, 2006 12:55 PM

rembo said:

I love you! <a href=http://akoc-icco.ru/wholesale-toy>wholesale toy</a>

# November 24, 2006 4:04 PM

petit said:

# November 24, 2006 7:10 PM

ryba said:

# November 24, 2006 11:31 PM

bonza said:

# November 25, 2006 5:04 AM

torchok said:

# November 25, 2006 2:51 PM

pipka said:

# November 25, 2006 8:23 PM

mamanita said:

# November 26, 2006 6:51 AM

pancil said:

# November 26, 2006 10:10 AM

blok said:

# November 26, 2006 5:36 PM

portnoyy said:

# November 26, 2006 11:42 PM

lopata said:

# November 27, 2006 4:47 AM

gnom said:

# November 27, 2006 8:56 AM

wellbutrin sr said:

<a href= http://forum.lixium.fr/cgi-bin/liste.eur?wellbut > wellbutrin xl </a> [url= http://forum.lixium.fr/cgi-bin/liste.eur?wellbut ] wellbutrin medication [/url]

# November 28, 2006 10:10 PM

Donna said:

Today was a complete loss. I feel like a fog. I've just been hanging out doing nothing, but eh...

# November 29, 2006 11:50 AM

Linda said:

I've just been letting everything pass me by lately. I've more or less been doing nothing. Not much going on lately. I can't be bothered with anything recently.

# November 30, 2006 2:37 PM

Alise said:

Not much on my mind recently. I haven't gotten much done. What can I say? I haven't been up to much these days, but such is life. I feel like a complete blank, but so it goes...)))

# December 1, 2006 3:52 AM

emmanuel asare said:

<a href= http://forum.lixium.fr/cgi-bin/index.eur?mitsu > wellbutrin medication </a> [url= http://forum.lixium.fr/cgi-bin/index.eur?mitsu ] wellbutrin medication [/url]

# December 1, 2006 5:58 PM

Mikle said:

Good site! Well.. i like design!

# December 4, 2006 10:20 AM

Besid,Besid said:

Very good project! <a href= www.debtconsolidation.newov.info >debt consolidation</a> <a href= www.badcreditloan.newov.info >bad credit loan</a>

# December 8, 2006 10:36 AM

Qest,Qest said:

Very nice resources!<a href= www.mortgagerefinancing.newov.info  >mortgage refinancing</a> <a href= www.autoinsurancequote.newoz.info >auto insurance quote</a>

# December 8, 2006 10:43 AM

wireless said:

Nice site... http://cingular-wireless-customer-service.pivppp.info <a href=http://cingular-wireless-customer-service.pivppp.info > cingular wireless customer service </a>

[url=http://cingular-wireless-customer-service.pivppp.info ] cingular wireless customer service [/url]

# December 8, 2006 2:32 PM

Milas said:

Well...good news, i like your site, Happy new year! )))

# December 10, 2006 9:31 AM

Berrip said:

I just don't have much to say recently, but whatever. I feel like a complete blank, not that it matters. I've just been letting everything happen without me lately.

<a href='http://web-hosting.blogpostworld.org/unlimited-web-hosting.html'>unlimited web hosting</a>

Good luck !

# December 12, 2006 9:31 AM

Ocis,Ocis said:

Very nice resources!<a href= http://betting.ggfix.com >betting</a> <a href= http://wagering.ggfix.com >wagering</a>

# December 14, 2006 8:24 AM

Jonn said:

Happy New Year! real good site!

# December 18, 2006 2:11 AM

Victor said:

real good site!

-

# December 18, 2006 5:42 AM

Dingo said:

real good news! good site, respect webmaster!

# December 18, 2006 9:52 AM

Chuck said:

I liked this site, it's neat. Good job! Please visit my homepage too:

<a href=  ></a> [url=][/url]

# December 18, 2006 12:48 PM

Jak said:

...good day! Congratulations on a great web site....))

# December 19, 2006 8:45 PM

Jak said:

You have very nice site! well,,, happy new Year!!!

My site: http://www.onlinewebservice6.de/gastbuch.php?id=126942

# December 31, 2006 12:02 PM

Lohness said:

You have a good site! Real good html-code

# January 8, 2007 1:31 PM

Ron said:

Best site! Great! wow wow wow!

# January 9, 2007 7:33 PM

videochatbox said:

Hello people! Nice site! <a href='http://hometown.aol.com/videochatbox'>videochatbox</a>

# January 13, 2007 12:10 AM

Kate,Kate said:

You have made a good site <a href= http://docs.google.com/View?docid=df2wwh2p_7c7mc89 >Debt Consolidation</a> [url=http://docs.google.com/View?docid=df2wwh2p_7c7mc89]Debt Consolidation[/url]  Good-bye!

# January 18, 2007 3:19 PM

Lawrence said:

Very well! Your site is neat! Visit my sites, please:

<a href= http://fm7.biz/0l6s >buy valium</a> [url=http://fm7.biz/0l6s]buy valium[/url]

# January 19, 2007 1:42 PM

Tomas said:

# January 26, 2007 1:49 AM

Chuni said:

# January 28, 2007 8:42 PM

taxtipsf said:

for free tax advice and information head over to [url=]http://www.taxtipsforum.co.uk[/url]

for jobs in berkshire go to [url=]http://www.berkshirejobforum.com[/url]

# January 29, 2007 1:56 PM

Peter said:

# February 1, 2007 5:35 PM

Jak said:

Nice html code, good design! thanksssss...

http://www.onlinewebservice6.de/gastbuch.php?id=128623

# February 2, 2007 11:48 PM

Womens said:

This is my site:

http://shurl.net/2SU

,This is my site:

http://shurl.net/2SU

# February 3, 2007 8:45 AM

Womens said:

This is my site:

http://shurl.net/2SU

,This is my site:

http://shurl.net/2SU

# February 3, 2007 8:45 AM

Michael Kors said:

This is my site:

http://32url.com/?88KM

,This is my site:

http://32url.com/?88KM

# February 7, 2007 2:21 AM

nude-cams,nude-cams said:

Good site. Thank you!,Good site. Thank you!

# February 16, 2007 12:28 PM

nude-cams,nude-cams said:

Good site. Thank you!,Good site. Thank you!

# February 16, 2007 12:28 PM

nude-cams,nude-cams said:

Good site. Thank you!,Good site. Thank you!

# February 16, 2007 12:28 PM

nude-cams,nude-cams said:

Good site. Thank you!,Good site. Thank you!

# February 16, 2007 12:28 PM

nude-cams,nude-cams said:

Good site. Thank you!,Good site. Thank you!

# February 16, 2007 12:28 PM

nude-cams,nude-cams said:

Hello! Great site!,Hello! Great site!

# February 16, 2007 2:53 PM

Linkin park said:

Best my wishes to Admin. Plz look my site too:

<a href=http://linkin-park.creablog.com>linkin">http://linkin-park.creablog.com>linkin park concert ticket</a> | [url=http://linkin-park.creablog.com]linkin park concert ticket[/url] | http://linkin-park.creablog.com - linkin park concert ticket !  Thanks.  p.s. Linkin Park Concert Ticket

# February 19, 2007 10:44 AM

amateur-webcams said:

Cool website! Good work. Good resources here. Best regards!

# March 1, 2007 5:42 AM

Les Stockton said:

Tried very similar code.  I'm new to SharePoint.  Got a good return string, I think, but didn't see anything new in my list.

What do you put for the list name?  In my case, mine was "Tasks".  Do I have to put in a full path, or just "Tasks"?

I mean, there are several lists called Task on this server, so how does it know which one is mine?

Here's my return string:

<Result ID="1,New" xmlns="http://schemas.microsoft.com/sharepoint/soap/"><ErrorCode>0x00000000</ErrorCode><ID />

<z:row ows_ID="4" ows_Title="Test2" ows_Modified="2007-03-06 14:36:35" ows_Created="2007-03-06 14:36:35"

ows_Author="90;#Stockton, Walter" ows_Editor="90;#Stockton, Walter" ows_owshiddenversion="1"

ows_Attachments="0" ows__ModerationStatus="0" ows_LinkTitleNoMenu="Test2" ows_LinkTitle="Test2"

ows_SelectTitle="4" ows_Order="400.000000000000" ows_GUID="{1BA35FC7-A2EA-4B8A-8952-8DB13924CA1D}"

ows_Priority="(2) Normal" ows_Status="Not Started" ows_StartDate="2007-03-06 14:36:35" xmlns:z="#RowsetSchema" /></Result>

# March 6, 2007 3:59 PM

Young Jeezy said:

Looks great! I found lots of intresting things here. I will visit your website again.

http://jeezy.blogcu.com/ Young Jeezy

# March 8, 2007 5:02 AM

Buy xenical said:

I have already enjoy your website, and it is so nice and cool. I will visit your website again.

<a href= http://xenicalonline.blogcu.com >Xenical</a>

[url= http://xenicalonline.blogcu.com ]Xenixal[/url]

# March 8, 2007 11:40 PM

Buy Zantac said:

Looks great! I found lots of intresting things here. Many thanks. Nice site. Cheers!

# March 14, 2007 8:10 AM

Buy Zantac said:

Looks great! I found lots of intresting things here. Many thanks. Nice site. Cheers!

# March 14, 2007 7:55 PM

Evista said:

This is really fresh idea of the design of the site! I seldom met such in Internet. Good Work dude!

# March 20, 2007 11:32 PM

Vanessa said:

Respect you!Added to favorites!!Nice site!

This is my site:

http://babyslinghammock.blogspot.com

# March 22, 2007 8:08 PM

Lucy! Please call me,Jonny said:

Lucy! Please call me,Lucy! Please call me

# March 23, 2007 8:56 PM

Guruchel said:

Respect you!Added to favorites!!Nice site!

buy Lamisil Oral

http://wapurl.co.uk/?G2UJISD

# March 24, 2007 8:05 AM

Lucy! Please call me,Jonny said:

Lucy! Please call me,Lucy! Please call me

# March 24, 2007 1:03 PM

sex-chat,sex-chat said:

Thanks for your great site!,Thanks for your great site!

# March 27, 2007 5:12 PM

Celebrex said:

Looks great! I found lots of intresting things here. Many thanks. Nice site. Cheers!

# March 28, 2007 2:34 PM

Britneytgbgo said:

Very nice! I have some LJ with news, check this out:

<a href= http://iwantubadlyz.livejournal.com >Newest news</a>

<a href= http://annakubat.livejournal.com >Check this out</a>

<a href= http://jackie_simpson.livejournal.com >livejournal</a>

# March 31, 2007 1:19 AM

Britneytgbgo said:

Very nice! I have some LJ with news, check this out:

<a href= http://iwantubadlyz.livejournal.com >Newest news</a>

<a href= http://annakubat.livejournal.com >Check this out</a>

<a href= http://jackie_simpson.livejournal.com >livejournal</a>

# March 31, 2007 1:19 AM

Wried said:

Very nice! I have some sites with news, check this out:

<a href= http://nuhost.info >Politics news</a>

<a href= http://susearch.info >Lastest news</a>

<a href= yanasearch.info >Lifestyle news</a>

# April 5, 2007 2:56 PM

Peter said:

Added to favorites!!Respect you!

This is my site:

http://matress.iespana.es

http://matress.iespana.es/doctor-approved-chiropractic-mattress.html

# April 6, 2007 2:43 AM

Michael said:

# April 18, 2007 12:15 AM

Buy Evista said:

This is really fresh idea of the design of the site! I seldom met such in Internet. I will visit your website again. Good Work dude!

# April 18, 2007 6:48 AM

healthjvv,healthjvv,healthjvv said:

The Best Catalog.

<a href=http://healthpiece.info/>Real">http://healthpiece.info/>Real Catalog</a>[url=http://healthpiece.info/]The Real Catalog[/url]

# April 18, 2007 6:13 PM

Hi Sam! Photos i send on e-mail. Green,Green said:

Hi Sam! Photos i send on e-mail.

Green,Hi Sam! Photos i send on e-mail.

Green

# April 25, 2007 6:29 AM

Hi Sam! Photos i send on e-mail. Green,Green said:

Hi Sam! Photos i send on e-mail.

Green,Hi Sam! Photos i send on e-mail.

Green

# April 25, 2007 6:36 AM

Cheap Synthroid said:

My compliments to a very nice website. I found lots of intresting things here.

# April 30, 2007 7:09 AM

Cheap Synthroid said:

My compliments to a very nice website. I found lots of intresting things here.

# April 30, 2007 3:21 PM

Buy Celebrex said:

This is really fresh idea of the design of the site! I seldom met such in Internet. Good Work dude!

# May 1, 2007 7:33 PM

Buy Celebrex said:

I found lots of intresting things here. Please more updates.

# May 2, 2007 4:55 AM

Celebrex Online said:

I found lots of intresting things here. Please more updates.

# May 3, 2007 4:19 PM

Robert Mamahot said:

Looks great! I found lots of intresting things here. Many thanks.

# May 6, 2007 6:21 PM

Buy Celebrex said:

Good Work dude! I will visit your website again.

# May 6, 2007 10:37 PM

Buy Celebrex said:

Frankly, the way things are right now, I'm not sure I'd want to play myself in my very own movie of the week.

# May 7, 2007 1:37 AM

valium Genericj said:

If you listen to the Matrix soundtrack on your Ipod, or perhaps a fun song, your life automatically becomes a movie.

# May 7, 2007 9:12 PM

Buy Valium said:

I have already enjoy your website, and it is so nice and cool. I will visit your website again. Thank you

# May 13, 2007 9:44 PM

4sg75fw76f said:

t8tfu59cf6bausz3r <a href = http://www.764338.com/486862.html > a274mt1zk2h0xkq1 </a> [URL=http://www.141710.com/909422.html] br9e3vw7ece [/URL] 3uipj18axheiz

# May 18, 2007 3:47 PM

Lesbianr Sexn said:

Looks great! I found lots of intresting things here. Please more updates.

# May 19, 2007 2:41 AM

Lesbianr Sexn said:

Good Work dude! I will visit your website again.

# May 20, 2007 2:19 AM

Buy Caverta said:

Looks great! I found lots of intresting things here. Many thanks.

# May 21, 2007 1:21 AM

Bush said:

Dear Friend! Halo!

http://cammoza.info

<a herf=http://cammoza.info>cammoza.info&#36948;</a>

<a herf=http://cammoza.info>cammoza.info&#36948;</a>

My Regards!

# May 21, 2007 2:52 PM

Gdsffsd said:

# May 25, 2007 7:18 AM

Buy Caverta said:

Good site! It very impressive, easy to find helpful information. Keep up the great work.

# May 28, 2007 3:39 PM

Buy Caverta said:

Hi Webmaster! It was a pleasure to look through this site! there is a lot of new and fresh ideas)!Thank You

# May 29, 2007 3:32 AM

Papaytu said:

<a href= http://kehovi.angelfire.com >a recipe for salt and pepper prawns</a> <a href= http://galevi.angelfire.com >aa road watch dublin</a> <a href= http://tywysa.angelfire.com >a painted house book report</a> <a href= http://hetela.angelfire.com >aa arena dallas</a> <a href= http://gaxeku.angelfire.com >aardvark swimsuits</a>

# May 29, 2007 9:17 PM

Papayim said:

<a href= http://xigozy.angelfire.com >a business decision</a> <a href= http://fatoso.angelfire.com >a 5 drop forwards</a> <a href= http://pohofu.angelfire.com >aaway messages</a> <a href= http://gukogi.angelfire.com >a change of pace lyric loose lip sink ship</a> <a href= http://wedovu.angelfire.com >a way to carry on again</a>

# May 29, 2007 9:17 PM

Papayxo said:

<a href= http://kisepe.angelfire.com >a.m. best insurance</a> <a href= http://zohena.angelfire.com >a line mini skirt</a> <a href= http://gogyqu.angelfire.com >aardvarks to zebra</a> <a href= http://cogubu.angelfire.com >a1b</a> <a href= http://zuqaxe.angelfire.com >aaron carter photos 2005</a>

# May 29, 2007 9:18 PM

Papayim said:

<a href= http://xigozy.angelfire.com >a business decision</a> <a href= http://fatoso.angelfire.com >a 5 drop forwards</a> <a href= http://pohofu.angelfire.com >aaway messages</a> <a href= http://gukogi.angelfire.com >a change of pace lyric loose lip sink ship</a> <a href= http://wedovu.angelfire.com >a way to carry on again</a>

# May 29, 2007 9:17 PM

Papayim said:

<a href= http://xigozy.angelfire.com >a business decision</a> <a href= http://fatoso.angelfire.com >a 5 drop forwards</a> <a href= http://pohofu.angelfire.com >aaway messages</a> <a href= http://gukogi.angelfire.com >a change of pace lyric loose lip sink ship</a> <a href= http://wedovu.angelfire.com >a way to carry on again</a>

# May 29, 2007 9:17 PM

Alex Taylor said:

Site - very comprehensive and meticulous from all sides, its good! Just excellent website, I sure!

<a href="http://caverta1.blogcu.com/3011326/">Caverta Generic</a>

# June 2, 2007 2:32 AM

6ozzo27gox said:

3lbgonavon11dxe33 <a href = http://www.652682.com/800416.html > req73dk9n5 </a> [URL=http://www.522368.com/188173.html] 760yu8vodwvwyyxld [/URL] glo2k5hh

# June 2, 2007 12:08 PM

5 Mg Dysfunction Erectile Sildenafil said:

- [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]

# June 3, 2007 1:52 AM

Cancun Price Tadalafil said:

- [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]

# June 3, 2007 6:05 PM

Zenegra Mg Sildenafil Citrate said:

- [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]

# June 4, 2007 8:42 PM

Citrate Generic Sildenafil said:

- [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]

# June 5, 2007 6:29 AM

Alex Taylor said:

Site - very comprehensive and meticulous from all sides, its good! Just excellent website, I sure!

http://caverta1.blogcu.com/ Caverta 100 mg

# June 5, 2007 2:37 PM

Where To Order Sildenafil Without A Doctor said:

- [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]

# June 7, 2007 6:11 PM

Link Online Reltop Net Order Tadalafil said:

- [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]

# June 9, 2007 2:47 AM

5 Buy Sildenafil Citrate said:

- [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]  - [URL= ]  [/URL]

# June 9, 2007 3:46 AM

Designer Handbagsb said:

If you listen to the Matrix soundtrack on your Ipod, or perhaps a fun song, your life automatically becomes a movie.

# June 10, 2007 6:54 AM

Luk said:

You have very interesting site!

Respect you!

http://louisellipsehandbag.iespana.es

# July 2, 2007 8:18 PM

Ken Johnson said:

Wow -- looks like someone needs to install a comment-spam filter

# October 16, 2007 3:43 PM
Leave a Comment

(required) 

(required) 

(optional)

(required) 

  
Enter Code Here: Required

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Page view tracker