Welcome to my blog on all things SharePoint. I have a range of articles that will interest you if you've made it as far as visiting my blog. I was awarded as an SharePoint MVP by Microsoft in July 2010. I currently live in New York and am an Enterprise Architect at AvePoint Inc.. I co founded www.NothingButSharePoint.com with Mark Miller in 2010.

MVP AwardJeremy Thake Profile Photo

Whitepapers

NBSP

Check out my articles on NothingButSharePoint.com

Solution Development in SharePoint 2007

This series was inspired by the chatter amongst SharePoint blogs on the best ways to approach customisations in SharePoint using Solutions.

Part 1 - Part 2 - Part 3 - Part 4 - Part 5 - Part 6 - Part 7 - Part 8

Leveraging the SharePoint Platform

This series was inspired by a discussion had with Andrew Coates at a Perth SharePoint User Group meeting. This then turned into a 6 part series on Arno Nell's SharePointMagazine.net web site.

Initial post - Part 1 - Part 2 - Part 3 - Part 4 - Part 5 - Part 6

Webcasts

I have recorded various web casts that I present at User Groups or just on a specific topic by request:
How ASP.NET Developers can leverage SharePoint webcast
SPSource Webcast: Reverse engineer Lists to ListTemplates and much more
SharePoint Development with Unit Testing webcast
Perth SharePoint UG Web Cast on approaches to deploying artefacts (SPSource)
More...


Podcasts

I have been interviewed about Leveraging the SharePoint Platform by the SharePoint Pod Show: listen here .

RSS Feed Feed your read!

Archives

January 2012 (5)
September 2011 (2)
August 2011 (1)
July 2011 (3)
June 2011 (7)
May 2011 (3)
April 2011 (3)
March 2011 (3)
February 2011 (2)
January 2011 (1)
December 2010 (4)
September 2010 (4)
July 2010 (5)
June 2010 (4)
May 2010 (6)
April 2010 (7)
March 2010 (5)
February 2010 (7)
January 2010 (3)
December 2009 (1)
November 2009 (6)
October 2009 (9)
September 2009 (7)
August 2009 (6)
July 2009 (13)
June 2009 (4)
May 2009 (12)
April 2009 (4)
March 2009 (4)
February 2009 (13)
January 2009 (4)
December 2008 (4)
November 2008 (11)
October 2008 (16)
September 2008 (4)
August 2008 (5)
July 2008 (4)
June 2008 (8)
May 2008 (5)
April 2008 (9)
March 2008 (5)
February 2008 (6)
January 2008 (1)
November 2007 (11)
October 2007 (8)
September 2007 (24)
August 2007 (5)
July 2007 (2)
May 2007 (1)
April 2007 (1)
March 2007 (1)
February 2007 (3)
January 2007 (4)
November 2006 (7)
October 2006 (7)
September 2006 (18)
August 2006 (14)
June 2006 (3)
May 2006 (8)
April 2006 (4)
March 2006 (38)
February 2006 (30)
January 2006 (2)
December 2005 (3)
November 2005 (28)
May 2005 (1)
April 2005 (5)
March 2005 (1)
November 2004 (1)
August 2004 (11)
July 2004 (1)
Failed to render control: An error occurred during a call to extension function 'createMonthUrl'. See InnerException for a complete description of the error.

Links

Tag Cloud

Ajax, Apple, DotNetNuke, Enterprise Content Management, Error Resolution, Gadgets, General, Governance, Microsoft .Net Development, Mobile, SharePoint, Sharepoint Business Forms, Sharepoint Business Intelligence, Sharepoint Collaboration, SharePoint Development, Sharepoint Enterprise Content Management, Sharepoint Enterprise Search, Sharepoint Portal, US Migration, Web 2.0, Workflow

Error: Changing a workflow and getting a state on a persisted Workflow Instance   

Tags: Workflow
Technorati Tags:

I was experimenting with Persistance and created some workflow instances and unloaded them. these appeared in my database with appropriate Guid's. I then closed the application and reopened it and returned the State of the workflow fine using:

    StateMachineWorkflowInstance stateMachineWorkflowInstance = new StateMachineWorkflowInstance(workflowRuntime, instanceId);
    state = stateMachineWorkflowInstance.CurrentState.Name;


I closed the application again and then modified the workflow in the designer adding a new state and putting it between the two existing states using SetState activities.
When I compiled and ran the application again and tried to return the State I got the following error:

Index was outside the bounds of the array.
System.Runtime.Serialization.SerializationException was unhandled
  Message="The object with ID 28 implements the IObjectReference interface for which all dependencies cannot be resolved. The likely cause is two instances of IObjectReference that have a mutual dependency on each other."
  Source="mscorlib"
  StackTrace:
       at System.Runtime.Serialization.ObjectManager.GetCompletionInfo(FixupHolder fixup, ObjectHolder& holder, Object& member, Boolean bThrowIfMissing)
       at System.Runtime.Serialization.ObjectManager.CompleteObject(ObjectHolder holder, Boolean bObjectFullyComplete)
       at System.Runtime.Serialization.ObjectManager.DoFixups()
       at System.Runtime.Serialization.Formatters.Binary.ObjectReader.Deserialize(HeaderHandler handler, __BinaryParser serParser, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)
       at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(Stream serializationStream, HeaderHandler handler, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)
       at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(Stream serializationStream)
       at System.Workflow.ComponentModel.Activity.Load(Stream stream, Activity outerActivity, IFormatter formatter)
       at System.Workflow.ComponentModel.Activity.Load(Stream stream, Activity outerActivity)
       at System.Workflow.Runtime.Hosting.WorkflowPersistenceService.RestoreFromDefaultSerializedForm(Byte[] activityBytes, Activity outerActivity)
       at System.Workflow.Runtime.Hosting.SqlWorkflowPersistenceService.LoadWorkflowInstanceState(Guid id)
       at System.Workflow.Runtime.WorkflowRuntime.InitializeExecutor(Guid instanceId, CreationContext context, WorkflowExecutor executor, WorkflowInstance workflowInstance)
       at System.Workflow.Runtime.WorkflowRuntime.Load(Guid key, CreationContext context, WorkflowInstance workflowInstance)
       at System.Workflow.Runtime.WorkflowRuntime.GetWorkflow(Guid instanceId)
       at System.Workflow.Activities.StateMachineWorkflowInstance..ctor(WorkflowRuntime runtime, Guid instanceId)
       at TestApp.WorkFlowEngine.GetState(WorkflowRuntime workflowRuntime, Guid instanceId, String& state) in C:\temp\Technologies\Tracking\SimpleTrackingSample\CS\TestApp\WorkFlowEngine.cs:line 42
       at TestApp.Form1.GetState() in C:\temp\Technologies\Tracking\SimpleTrackingSample\CS\TestApp\Form1.cs:line 122
       at TestApp.Form1.btnLoadWorkflow_Click(Object sender, EventArgs e) in C:\temp\Technologies\Tracking\SimpleTrackingSample\CS\TestApp\Form1.cs:line 81
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
       at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
       at System.Windows.Forms.Application.Run(Form mainForm)
       at TestApp.Program.Main() in C:\temp\Technologies\Tracking\SimpleTrackingSample\CS\TestApp\Program.cs:line 18
       at System.AppDomain.nExecuteAssembly(Assembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()


Inspecting the database and looking at the Workflow table showed that there was only one row in there with the WorkflowDefinition column being:

<ns0:Workflow1 InitialStateName="Workflow1InitialState" x:Name="Workflow1" DynamicUpdateCondition="{x:Null}" CompletedStateName="{x:Null}" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:ns0="clr-namespace:Microsoft.Samples.Workflow.SimpleTrackingSample;Assembly=SimpleTrackingSample, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null" />


Obviously it isn't seeing the change made as a different version and existing instances must just reference this Workflow.

What is the procedure for changing a workflow and allowing existing instances to still be loaded from persisted state?

Also, is there a way that the existing instances could take on the changes to the workflow. Obviously this gets extremely compilcated in the fact that if you remove a state from a diagram and the instance is in that state decisions will have to be made on what state it should be in.

I've posted this on the MSDN forums and hopefully someone will point me in the right direction. 

UPDATE 

"If you change the definition of a workflow and recompile it you need to change the assembly version.  The existing instances (unloaded or in memory) need the original version of the type/assembly in order to be deserialized correctly.  If you need to change the definition of an "in-flight" running instance you'll need to use the dynamic update functionality.

Thanks,
Joel West
MSFTE - SDE in WF runtime and hosting"

 Guess I'll need to look into dynamically updating the workflow on the fly and seeing how it handles this.

A few forum posts here: 1 2  

 

 
Posted by  Jeremy Thake  on  10/6/2006
46  Comments  |  Trackback Url  | 1  Links to this post | Bookmark this post with:        
 

Links to this post

Comments


Lyn England  commented on  Tuesday, June 17, 2008  3:22 PM 
planful noninjurious arbitrament reimpatriate erosion outdraft peakedness hygroscopy
<a href= http://www.davedreblow.com/ >Dave Dreblow - Better Homes Realty</a>
http://www.hellynewport.com


nick  commented on  Monday, July 28, 2008  8:58 PM 
3DBZda hi! hice site!


sylvia  commented on  Thursday, July 31, 2008  6:18 PM 
bookmark you thx <a href=" http://us.cyworld.com/umberto ">adipex pills </a> ledjzc


kris  commented on  Friday, August 01, 2008  6:51 AM 
i say one thing <a href=" http://us.cyworld.com/raimond ">phentermine online</a> 01584


mona  commented on  Friday, August 01, 2008  9:20 PM 
hay <a href=" http://us.cyworld.com/slavok ">buy vicodin</a> odvxp <a href=" http://us.cyworld.com/timaty ">tramadol cod </a> 130850


adult  commented on  Saturday, August 02, 2008  12:11 AM 
i say one thing <a href=" http://us.cyworld.com/slavok ">vicodin no prescription </a> 973


james  commented on  Saturday, August 02, 2008  5:33 AM 
hi nice site thx <a href=" http://us.cyworld.com/dulittl ">hydrocodone pills </a> 68608


kris  commented on  Saturday, August 16, 2008  7:34 PM 
interesting site man


adult  commented on  Wednesday, August 20, 2008  2:04 AM 
hello everybody! <a href=" http://www.mixx.com/users/acotas ">canada in louis replica sold vuitton </a> 879 <a href=" http://www.mixx.com/users/adahy ">cerises louis vuitton replica</a> 1509


sylvia  commented on  Saturday, September 06, 2008  1:29 PM 
good work man <a href=" http://ativannx.u.yuku.com/ ">ativan addiction </a> 8-P <a href=" http://xanaxnx.u.yuku.com/ ">buy xanax online</a> 0111 <a href=" http://chenoa.u.yuku.com/ ">music ringtone</a> 403117 <a href=" http://vicodinnx.u.yuku.com/ ">buy vicodin </a> xuv <a href=" http://clonazepamnx.u.yuku.com/ ">cheap clonazepam</a> 734


bob  commented on  Saturday, September 06, 2008  4:27 PM 
good site dude


xFVQAWJRSXqpBdDD  commented on  Saturday, September 06, 2008  8:54 PM 
oJCjDV spam_15.txt;5;10


bob  commented on  Monday, September 22, 2008  3:55 PM 
nice site dude <a href=" http://my.mashable.com/benas "></a> vmxkon <a href=" http://my.mashable.com/ayasha ">clonazepam pills</a> uftel


lola  commented on  Tuesday, September 23, 2008  4:28 AM 
please look at this <a href=" http://my.mashable.com/behitha ">buy ephedrine </a> :-)


lola  commented on  Tuesday, September 23, 2008  4:28 AM 
please look at this <a href=" http://my.mashable.com/behitha ">buy ephedrine </a> :-)


arni  commented on  Tuesday, September 23, 2008  4:58 AM 
cool site man <a href=" http://my.mashable.com/bidaban ">levitra no prescription</a> vjmfvc <a href=" http://my.mashable.com/awendea ">order adipex </a> >:))


james  commented on  Monday, September 29, 2008  3:26 PM 
it's nice site <a href=" http://my.mashable.com/chanlyeya ">cheapest phentermine</a> cxbb <a href=" http://my.mashable.com/chantesuta ">cheap soma </a> %-OOO


james  commented on  Wednesday, October 01, 2008  5:12 PM 
please look at this <a href=" http://my.mashable.com/chayton ">valium pills</a> :-]]]


lola  commented on  Thursday, October 02, 2008  5:05 AM 
bookmark you thx <a href=" http://my.mashable.com/chanteyukan ">online tramadol</a> 529094 <a href=" http://my.mashable.com/chenoa ">vicodin online</a> >:OO <a href=" http://my.mashable.com/chelan ">order viagra</a> :OOO


bred  commented on  Tuesday, October 07, 2008  10:25 PM 
hello everybody! <a href=" http://my.mashable.com/esadowa ">purchase levitra</a> >:O


john  commented on  Wednesday, October 08, 2008  12:11 PM 
please look at this <a href=" http://my.mashable.com/elsu ">cheapest hydrocodone</a> ausfd <a href=" http://my.mashable.com/cusick ">adipex diet pills </a> tpi


lola  commented on  Friday, October 10, 2008  5:43 AM 
cool site man <a href=" http://my.mashable.com/xcialis ">order cialis</a> 3379


bob  commented on  Friday, October 10, 2008  8:01 AM 
i say one thing <a href=" http://my.mashable.com/xlevitra ">levitra addiction </a> =)


james  commented on  Saturday, October 11, 2008  12:55 PM 
it's nice site <a href=" http://my.mashable.com/xephedrine ">buy ephedrine</a> %-OOO <a href=" http://my.mashable.com/udiazepam ">diazepam no prescription </a> qtkfq


joseph  commented on  Monday, October 13, 2008  5:58 AM 
please look at this <a href=" http://yandex.ru/redir?url=n-pharmacy.com/phentermine/ ">buy phentermine </a> axqds <a href=" http://yandex.ru/redir?url=n-pharmacy.com/cialis/ ">cialis sample free </a> hexsol <a href=" http://yandex.ru/redir?url=n-pharmacy.com/ultram/ ">ultram online </a> htde <a href=" http://yandex.ru/redir?url=n-pharmacy.com/ephedrine/ ">order ephedrine </a> 436506 <a href=" http://yandex.ru/redir?url=n-pharmacy.com/lipitor/ ">order lipitor </a> =OO <a href=" http://yandex.ru/redir?url=n-pharmacy.com/levitra/ ">cheap levitra </a> aindrm


kate  commented on  Saturday, October 18, 2008  10:56 AM 
interesting post thx <a href=" http://my.mashable.com/viagraxr ">purchase viagra </a> sezp <a href=" http://my.mashable.com/cialiser ">cheap cialis</a> 8-((( <a href=" http://my.mashable.com/phenterminer ">cheap phentermine</a> 791710 <a href=" http://my.mashable.com/tramadoler ">tramadol</a> =-OO <a href=" http://my.mashable.com/adipexer ">order adipex</a> 587 <a href=" http://us.cyworld.com/xthyroid ">cheap thyroid</a> =DD <a href=" http://us.cyworld.com/xlorazepam ">lorazepam addiction </a> 60023 <a href=" http://us.cyworld.com/xprozac ">cheap prozac</a> %O <a href=" http://my.mashable.com/propeciarx ">propecia addiction </a> >:(((


mona  commented on  Sunday, October 19, 2008  8:18 AM 
nice site dude <a href=" http://my.mashable.com/clonazepamer ">clonazepam no prescription</a> igmcbg <a href=" http://my.mashable.com/tramadoler ">generic tramadol</a> 011559 <a href=" http://my.mashable.com/ephedriner ">ephedrine diet pills</a> 08154


lola  commented on  Wednesday, October 22, 2008  10:56 AM 
fSI0ys see this thanks <a href=" http://my.mashable.com/binexium ">nexium addiction </a> 61171 <a href=" http://my.mashable.com/bifioricet ">buy fioricet online </a> :OOO <a href=" http://my.mashable.com/bicelebrex ">cheap celebrex</a> 70438 <a href=" http://my.mashable.com/bicodeine ">codeine no prescription</a> svh


arni  commented on  Saturday, November 01, 2008  2:35 AM 
cool site man <a href=" http://realringtone.vidiLife.com ">bollywood ringtones</a> 892549 <a href=" http://cellularringtone.vidiLife.com ">office ringtone </a> pkuao <a href=" http://radioringtones.vidiLife.com ">ringtones to download </a> 14661


kate  commented on  Tuesday, November 04, 2008  9:31 PM 
it's nice site!!! <a href=" http://my.mashable.com/zoloftpills ">cheapest zoloft </a> 429706 <a href=" http://my.mashable.com/carisoprodolpills ">carisoprodol</a> =]] <a href=" http://my.mashable.com/nexiumpills ">nexium no prescription</a> 4413 <a href=" http://my.mashable.com/ultrampills ">ultram</a> cikb


bred  commented on  Wednesday, November 05, 2008  8:40 PM 
good work man <a href=" http://my.mashable.com/ambienpills ">order ambien</a> 8PPP <a href=" http://my.mashable.com/ativanpills ">purchase ativan </a> 0801 <a href=" http://my.mashable.com/fioricetpills ">fioricet online</a> pohp <a href=" http://my.mashable.com/diazepampills ">generic diazepam</a> :-]]


lola  commented on  Wednesday, November 05, 2008  11:30 PM 
sweet site thx <a href=" http://my.mashable.com/levitrapills ">cheapest levitra </a> uxoqrb <a href=" http://my.mashable.com/lipitorpills ">buy lipitor</a> 8223 <a href=" http://my.mashable.com/ephedrinepills ">cheap ephedrine</a> 37209 <a href=" http://my.mashable.com/clonazepampills ">order clonazepam</a> :-DD


ben  commented on  Thursday, November 06, 2008  10:30 AM 
it's nice site!!! <a href=" http://my.mashable.com/lipitorpills ">lipitor pills</a> xpuyv <a href=" http://my.mashable.com/phenterminepills ">buy phentermine</a> 2913 <a href=" http://my.mashable.com/clonazepampills ">generic clonazepam</a> 8-(


adult  commented on  Monday, November 10, 2008  4:14 PM 
great work man thx <a href=" http://my.mashable.com/adipexpi ">what are the side effects of adipex</a> 89789 <a href=" http://my.mashable.com/adipexps ">herbal adipex</a> 650574 <a href=" http://my.mashable.com/adipexpp ">order adipex deliver cod</a> 40381 <a href=" http://my.mashable.com/adipexpa ">adipex online from overseas</a> 66239


adult  commented on  Monday, November 10, 2008  4:15 PM 
great work man thx <a href=" http://my.mashable.com/adipexpi ">what are the side effects of adipex</a> 89789 <a href=" http://my.mashable.com/adipexps ">herbal adipex</a> 650574 <a href=" http://my.mashable.com/adipexpp ">order adipex deliver cod</a> 40381 <a href=" http://my.mashable.com/adipexpa ">adipex online from overseas</a> 66239


liza  commented on  Monday, November 10, 2008  7:03 PM 
sweet site thx <a href=" http://my.mashable.com/adipexpi ">adipex_drug_test</a> eqafgq <a href=" http://my.mashable.com/adipexpo ">money order prescription adipex </a> %] <a href=" http://my.mashable.com/adipexpq ">buy cheap adipex</a> :OOO <a href=" http://www.soundclick.com/members/default.cfm?member=fibromyalgiatramadol ">tramadol cod saturday delivery</a> 287323


bred  commented on  Tuesday, November 11, 2008  12:20 AM 
it's nice site <a href=" http://tramadolonline.newgrounds.com ">oxycodone with tramadol</a> =-OOO <a href=" http://tramadolovernight.vidiLife.com ">tramadol no prescription</a> 32492 <a href=" http://tramadoloffnline.vidiLife.com ">tramadol generic ultram</a> 8PPP <a href=" http://my.mashable.com/adipexpr ">adipex clinics</a> 8[[[


james  commented on  Tuesday, November 11, 2008  9:47 AM 
it's nice site <a href=" http://tramadolhcl.newgrounds.com/news/post/217958 ">tramadol</a> 62870 <a href=" http://my.mashable.com/adipexpq ">adipex p </a> kfmg <a href=" http://tramadolovernight.vidiLife.com ">tramadol overnight</a> 215 <a href=" http://my.mashable.com/adipexpa ">adipex order online without prescription</a> :)))


james  commented on  Tuesday, November 11, 2008  9:47 AM 
it's nice site <a href=" http://tramadolhcl.newgrounds.com/news/post/217958 ">tramadol</a> 62870 <a href=" http://my.mashable.com/adipexpq ">adipex p </a> kfmg <a href=" http://tramadolovernight.vidiLife.com ">tramadol overnight</a> 215 <a href=" http://my.mashable.com/adipexpa ">adipex order online without prescription</a> :)))


bob  commented on  Tuesday, November 11, 2008  1:41 PM 
see this thanks <a href=" http://my.mashable.com/adipexpo ">adipex alternatives</a> ucq <a href=" http://www.soundclick.com/members/default.cfm?member=caninetramadol ">tramadol dosage </a> qsifmt <a href=" http://tramadolovernight.newgrounds.com ">cheap tramadol without prescription</a> zbcwh <a href=" http://www.soundclick.com/members/default.cfm?member=fibromyalgiatramadol ">fibromyalgia tramadol</a> mbr


liza  commented on  Tuesday, November 11, 2008  7:15 PM 
sweet site thx <a href=" http://my.mashable.com/adipexpy ">adipex and 50 us states </a> pitnwh <a href=" http://my.mashable.com/adipexpi ">adipex fedex overnight</a> woxqym <a href=" http://my.mashable.com/adipexps ">ordering adipex</a> %]]] <a href=" http://my.mashable.com/adipexpu ">adipex diet pills compare best prices</a> :OO


liza  commented on  Tuesday, November 11, 2008  10:08 PM 
good post man thx <a href=" http://my.mashable.com/adipexpo ">adipex diet pill prescription strongest 20</a> =-DD <a href=" http://my.mashable.com/adipexpy ">adipex buy inurl</a> %[[ <a href=" http://www.soundclick.com/members/default.cfm?member=tramadolonline ">ultram tramadol hcl</a> 79274 <a href=" http://caninetramadol.vidiLife.com ">what is tramadol</a> 8]]]


liza  commented on  Wednesday, November 12, 2008  6:59 AM 
i say one thing <a href=" http://www.soundclick.com/members/default.cfm?member=fibromyalgia ">tramadol hydrochloride</a> 66106 <a href=" http://my.mashable.com/adipexpp ">adipex no prescription to dc </a> fox <a href=" http://my.mashable.com/adipexpr ">cheapest adipex</a> >:D <a href=" http://my.mashable.com/adipexpw ">humana health care adipex diet pill </a> avm


arni  commented on  Wednesday, November 12, 2008  10:12 AM 
it's nice site <a href=" http://tramadolhcl1.vidiLife.com ">order tramadol</a> %-[[[ <a href=" http://www.soundclick.com/members/default.cfm?member=tramadolovernight ">tramadoll </a> :OOO <a href=" http://my.mashable.com/adipexpt ">ordering adipex online</a> =-(( <a href=" http://my.mashable.com/adipexpr ">adipex hurt me</a> 771979


james  commented on  Wednesday, November 12, 2008  11:01 PM 
good post man thx <a href=" http://my.mashable.com/adipexpo ">cheapest online adipex </a> 8) <a href=" http://tramadolonline.newgrounds.com ">tramadol water soluble</a> 735075 <a href=" http://my.mashable.com/adipexpq ">buy adipex online without prescription</a> 8778 <a href=" http://my.mashable.com/adipexpr ">adipex effects on adhd</a> rtcrvl


megawasya  commented on  Sunday, May 29, 2011  3:18 AM 
Каждому SHOK!screenshots:[url]http://hostimage.ru/photo/12052011efa74c0b06.jpg[/url] dounload now [url]http://gigapeta.com/dl/1559428abe4bc9[/url]free shok porno.

blog comments powered by Disqus