Hi,

I have a largish MG e-commerce site, and its been running for a number
of years well.

I've had 2 cases now, where I'm setting the item model to view in a
controller, and rendering in view, where the item model doesn't match
the view. When I try it from another session it works.

It seems like somehow 2 sessions have mixed, out of the thousands of
sessions the server deals with, only aware of this happening twice..

Anyone got an idea on how to approach the troubleshoot?

<cfcomponent output="false"
extends="ModelGlue.gesture.controller.Controller">
<cffunction name="view" access="public">
        <cfargument name="event" />

        <cfparam name="url.uuid" default=""/>


        <cfset item = CreateObject("component", "model.item")>

        <cfinvoke component="#item#"
                method = "get"
                returnvariable = "status"
                uuid = "#url.uuid#"
                >
        <cfset arguments.event.setValue("item", item) />
</cffunction>
</cfcomponent>

-- 
Model-Glue Sites:
Home Page: http://www.model-glue.com
Documentation: http://docs.model-glue.com
Bug Tracker: http://bugs.model-glue.com
Blog: http://www.model-glue.com/blog

You received this message because you are subscribed to the Google
Groups "model-glue" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/model-glue?hl=en

Reply via email to