I've successfully connected most of my application to ruote-kit
(retrieving & initing processeses) but am having a hard time advancing
work items.

When I attempt to post:
Sinatra::RespondTo::UnhandledFormat:
Sinatra::RespondTo::UnhandledFormat
results

Here's the python code I'm using to connect

    data = {}
    data["_proceed"] = "on"
    #data["format"] = "json"
    data["method"] = "put"
    print( request.POST )
    data['fields'] = simplejson.dumps( request.POST if
hasattr(request, "POST") else {} )
    print( data )
    data = urllib.urlencode( data )
    print( "http://localhost:9292/_ruote/workitems/"; + taskid )

    req = urllib2.Request("http://localhost:9292/_ruote/workitems/"; +
taskid + ".json",  data, {'accept    ': 'application/json'} )


-- 
you received this message because you are subscribed to the "ruote users" group.
to post : send email to [email protected]
to unsubscribe : send email to [email protected]
more options : http://groups.google.com/group/openwferu-users?hl=en

Reply via email to