Advertisement
timmaayyb

CFCouchbase-Beer-Sample-App-NoSampleData

Jan 22nd, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 68.46 KB | None | 0 0
  1. The web site you are accessing has experienced an unexpected error.
  2. Please contact the website administrator.
  3.  
  4. The following information is meant for the website developer for debugging purposes.
  5. Error Occurred While Processing Request
  6. Error building: CouchbaseClient@cfcouchbase -> Object instantiation exception. An exception occurred while instantiating a Java object. The class must not be an interface or an abstract class. Error: ''. with constructor arguments: {config={{SERVERS={http://ea1.local:8091},VIEWTIMEOUT={1000},BUCKETNAME={beer-sample}}}}
  7.  
  8. Mapping: {MIXINS={[]},DIPROPERTIES={[]},PROVIDERMETHODS={[]},DSL={},DISCOVERED={true},THREADSAFE={false},DISETTERS={[]},VALUE={},ONDICOMPLETE={[]},AUTOWIRE={true},CACHE={{KEY={},PROVIDER={},LASTACCESSTIMEOUT={},TIMEOUT={}}},DIMETHODARGS={[]},TYPE={cfc},DICONSTRUCTORARGS={[{JAVACAST={null},NAME={config},ARGNAME={},DSL={null},VALUE={{SERVERS={http://ea1.local:8091},VIEWTIMEOUT={1000},BUCKETNAME={beer-sample}}},SCOPE={variables},REQUIRED={true},REF={null},TYPE={any}}]},NAME={CouchbaseClient@cfcouchbase},SCOPE={singleton},AUTOASPECTBINDING={true},VIRTUALINHERITANCE={},PATH={cfcouchbase.CouchbaseClient},AUTOINIT={true},EAGERINIT={false},ALIAS={[CouchbaseClient@cfcouchbase]},EXTRAATTRIBUTES={{}},METADATA={{ACCESSORS={true},AUTHOR={Luis Majano, Brad Wood},NAME={cfcouchbase.CouchbaseClient},FULLNAME={cfcouchbase.CouchbaseClient},PROPERTIES={[{HINT={The version of this library},NAME={version}}, {HINT={The version of the Couchbase SDK},NAME={SDKVersion}}, {HINT={The unique ID of this SDK},NAME={libID}}, {HINT={The UUID Helper},NAME={uuidHelper}}, {HINT={The java CouchbaseClient object},NAME={couchbaseClient}}, {HINT={The couchbase configuration object},NAME={couchbaseConfig}}, {HINT={The SDK utility class},NAME={util}}, {HINT={The data marshaller to use for serializations and deserializations},NAME={dataMarshaller},TYPE={cfcouchbase.data.IDataMarshaller}}]},SERIALIZABLE={false},FUNCTIONS={[{NAME={append},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@1b57636d},HINT={Append to an existing value in the cache. If 0 is passed in as the CAS identifier (default), it will override the value on the server without performing the CAS check. This method is considered a 'binary' method since it operates on binary data such as string or integers, not JSON documents <pre class='brush: cf'> future = client.append( 'operationLog', 'This is a new log message#chr(13)##chr(10)#' );
  9. },RETURN={A Java OperationFuture object (net.spy.memcached.internal.OperationFuture<Boolean>) Note that the return will be false any time a mutation has not occurred.}}, {NAME={getMulti},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@6409721},HINT={Get multiple objects from couchbase. <pre class='brush: cf'> results = client.getMulti( ['brad', 'luis', 'bill'] );
  10. },RETURN={A struct of values. Any document IDs not found will not exist in the struct.}}, {NAME={asyncDecr},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@7a81fabb},HINT={Decrement the given counter asynchronously. This method is thread safe as it decrements and retrives the value in a single operation as opposed to getting it, and then setting it again with subsequent calls. <pre class='brush: cf'> future = client.asyncDecr( 'passesLeft', 1 );
  11. },RETURN={A future with the decremented value, or -1 if the decrement failed.}}, {NAME={asyncGet},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@6b7449d2},HINT={Get an object from couchbase asynchronously. <pre class='brush: cf'> future = client.asyncGet( 'brad' ); future.get();
  12. },RETURN={A Java Future object. (net.spy.memcached.internal.GetFuture)}}, {NAME={prepend},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@1f9ab11b},HINT={Prepend to an existing value in the cache. If 0 is passed in as the CAS identifier (default), it will override the value on the server without performing the CAS check. This method is considered a 'binary' method since they operate on binary data such as string or integers, not JSON documents <pre class='brush: cf'> future = client.prepend( 'hierachyList', parent );
  13. },RETURN={A Java OperationFuture object (net.spy.memcached.internal.OperationFuture<Boolean>) Note that the return will be false any time a mutation has not occurred.}}, {NAME={asyncGetWithCAS},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@64e173d2},HINT={Gets (with CAS support) the given key asynchronously. This method is meant to be used in conjunction with setWithCAS to be able to update a document while making sure another process hasn't modified it in the meantime. The CAS value changes every time the document is updated. <pre class='brush: cf'> future = client.asyncGetWithCAS( 'brad' );
  14. },RETURN={A Java Future. (net.spy.memcached.internal.OperationFuture) The future has methods that will return the "CAS" and "value" keys.}}, {access={public},NAME={GETDATAMARSHALLER},returntype={cfcouchbase.data.IDataMarshaller},PARAMETERS={[Ljava.lang.Object;@d7b13bc}}, {NAME={setWithCAS},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@b4ca28e},HINT={Update the value of an existing document with a CAS value. CAS is retrieved via getWithCAS(). Since the CAS value changes every time a document is modified you will be able to tell if another process has modified the document between the time you retrieved it and updated it. This method will only complete successfully if the original document value is unchanged. This method is not asyncronous and therefore does not return a future since your application code will need to check the return and handle it appropriatley. <pre class='brush: cf'> person = { name: "Brad", age: 33, hair: "red" }; result = client.setWithCAS( 'brad', person, CAS );
  15. },RETURN={A struct with a status and detail key. Status will be true if the document was succesfully updated. If status is false, that means nothing happened on the server and you need to re-issue a command to store your document. When status is false, check the detail. A value of "CAS_CHANGED" indicates that anothe rprocess has updated the document and your version is out-of-date. You will need to retrieve the document again with getWithCAS() and attempt your setWithCAS again. If status is false and details is "NOT_FOUND", that means a document with that ID was not found. You can then issue an add() or a regular set() commend to store the document.}}, {NAME={getDesignDocument},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@54441e6d},HINT={Gets a design document. This method will throw an error if the design document name doesn't exist. Names are case-sensitive. <pre class='brush: cf'> designDocument = client.getDesignDocument( 'beer' );
  16. },RETURN={A DesignDocument Java object (com.couchbase.client.protocol.views.DesignDocument).}}, {access={public},name={SETDATAMARSHALLER},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@4429b153}}, {NAME={flush},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@d38e31b},HINT={Flush all caches from all servers with a delay of application. <pre class='brush: cf'> client.flush( 5 );
  17. },RETURN={A Java future object. (net.spy.memcached.internal.OperationFuture)}}, {NAME={asyncIncr},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@11c60865},HINT={Increment the given counter asynchronously. This method is thread safe as it increments and retrives the value in a single operation as opposed to getting it, and then setting it again with subsequent calls. <pre class='brush: cf'> future = client.asyncIncr( 'numErrors', 1 );
  18. },RETURN={A future with the incremented value, or -1 if the increment failed.}}, {NAME={newJava},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@60512800},HINT={Get a java class using either the JavaLoader or createOject() based on the "useClassloader" config value. You will need to call init() if you want to run the class constructor and get an instance of it.},RETURN={The java class specified.}}, {NAME={newQuery},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@70194966},HINT={Creates a new Java query object (com.couchbase.client.protocol.views.Query) that can be used to execute raw view queries. You can pass an optional options struct with name-value pairs of simple query options.
  19. http://www.couchbase.com/autodocs/couchbase-java-client-1.2.0/com/couchbase/client/protocol/views/Query.html <pre class='brush: cf'> oQuery = client.newQuery( { offset:10, limit:20, group:true, groupLevel:2 } );
  20.  
  21. },RETURN={A Java query object (com.couchbase.client.protocol.views.Query)}}, {NAME={serializeData},RETURNTYPE={string},PARAMETERS={[Ljava.lang.Object;@c220109},HINT={Serializes incoming data according to our rules.},RETURN={A string representation, usually JSON.}}, {NAME={getSpatialView},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@c71fc18},HINT={Gets access to a spatial view contained in a design document from the cluster. You would usually use this method if you need the raw Java object to do manual queries or updates on a view. <pre class='brush: cf'> spatialView = client.getSpatialView( 'myDoc', 'mySpatialView' );
  22. },RETURN={A View Java object (com.couchbase.client.protocol.views.SpatialView).}}, {access={public},name={SETLIBID},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@f5d920a}}, {NAME={asyncGetAndTouch},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@481ed667},HINT={Obtain a value for a given ID and update the expiry time for the document at the same time. This is useful for a sort of "last access timeout" functionality where you don't want a document to timeout while it is still being accessed. <pre class='brush: cf'> future = client.asyncGetAndTouch( 'brad' );
  23. },RETURN={A Future object (net.spy.memcached.internal.OperationFuture) that retrieves a CASValue class that you can use to get the value and cas of the object.}}, {access={public},name={SETSDKVERSION},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@608e292e}}, {NAME={asyncGetMulti},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@1531bc88},HINT={Get multiple objects from couchbase asynchronously. <pre class='brush: cf'> buldFuture = client.asyncGetMulti( ['brad', 'luis', 'bill'] );
  24. },RETURN={A bulk Java Future. (net.spy.memcached.internal.BulkFuture) Any document IDs not found will not exist in the future object.}}, {NAME={getWithCAS},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@74508f96},HINT={Get an object from couchbase with its CAS value, returns null if not found. This method is meant to be used in conjunction with setWithCAS to be able to update a document while making sure another process hasn't modified it in the meantime. The CAS value changes every time the document is updated. <pre class='brush: cf'> result = client.getWithCAS( 'brad' ); writeOutput(result.cas); writeOutput(result.value);
  25. },RETURN={A struct with "CAS" and "value" keys. If the ID doesn't exist, this method will return null.}}, {access={public},name={SETCOUCHBASECONFIG},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@5502fc82}}, {NAME={incr},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@370fe668},HINT={Increment the given counter. This method is thread safe as it increments and retrives the value in a single operation as opposed to getting it, and then setting it again with subsequent calls. <pre class='brush: cf'> newValue = client.incr( 'numErrors', 1 );
  26. },RETURN={The new value, or -1 if we were unable to increment}}, {NAME={deleteDesignDocument},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@74dfd215},HINT={Deletes a design document from the server <pre class='brush: cf'> client.deleteDesignDocument( 'beer' );
  27. },RETURN={True if successsful, false if unsuccessful}}, {NAME={replace},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@12599ca5},HINT={This method will set a value only if that ID already exists in Couchbase. If the document ID doesn't exist, it will do nothing. <pre class='brush: cf'> person = { name: "Brad", age: 33, hair: "red" }; future = client.replace( 'brad', person ); future.get();
  28. },RETURN={A Java OperationFuture object (net.spy.memcached.internal.OperationFuture<Boolean>) or void (null) if a timeout exception occurs. future.get() will return true if the replace was successfull, and will return false if the ID didn't already exist to replace.}}, {access={public},NAME={GETSDKVERSION},returntype={any},PARAMETERS={[Ljava.lang.Object;@393b1e0c}}, {NAME={setMulti},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@5831c32e},HINT={Set multiple documents in the cache with a single operation. Pass in a struct of documents to set where the IDs of the struct are the document IDs. The values in the struct are the values being set. All documents share the same timout, persistTo, and replicateTo settings. <pre class='brush: cf'> data = { &nbsp;&nbsp;brad = { name: "Brad", age: 33, hair: "red" }, &nbsp;&nbsp;luis = { name: "Luis", age: 35, hair: "black" }, &nbsp;&nbsp;bill = { name: "Bill", age: 21, hair: "blond" } }; future = client.setMulti( data );
  29. },RETURN={A struct of IDs with each of the future objects from the set operations. There will be no future object if a timeout occurs.}}, {NAME={asyncSaveView},RETURNTYPE={boolean},PARAMETERS={[Ljava.lang.Object;@2b052e3e},HINT={Asynchronously Saves a View. Will save the view and or designDocument if they don't exist. Will update if they already exist. This method will return immediatley, but the view probalby won't be available to query for a few seconds. <pre class='brush: cf'> client.asyncSaveView( &nbsp;&nbsp;'manager', &nbsp;&nbsp;'listBreweries', &nbsp;&nbsp;'function (doc, meta) { &nbsp;&nbsp;if ( doc.type == ''brewery'' ) { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;emit(doc.name, null); &nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;}', &nbsp;&nbsp;'_count' );
  30. },RETURN={True if the view was saved, false if no save occurred due to the view already existing.}}, {NAME={get},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@611efe82},HINT={Get an object from couchbase by the ID. This method will deserialize object automatically and optionally inflate the data into a CFC. <pre class='brush: cf'> person = client.get( 'brad' );
  31. },RETURN={The object if found, null otherwise.}}, {access={public},NAME={GETUTIL},returntype={any},PARAMETERS={[Ljava.lang.Object;@39d73a9e}}, {NAME={newDesignDocument},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@614978bc},HINT={Initializes a new design document Java object. The design doc will have no views and will not be saved yet. <pre class='brush: cf'> designDocument = client.newDesignDocument( 'mynewDoc' );
  32. },RETURN={An instance of com.couchbase.client.protocol.views.DesignDocument.}}, {access={public},name={SETVERSION},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@1e95b08a}}, {NAME={getAvailableServers},RETURNTYPE={array},PARAMETERS={[Ljava.lang.Object;@757943b5},HINT={Get the addresses of available servers. <pre class='brush: cf'> serverArray = client.getAvailableServers();
  33. },RETURN={An array containing an item for each server in the cluster. Servers are represented as a string containing their address produced via java.net.InetSocketAddress.toString()}}, {NAME={getDocStats},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@6c4c5c53},HINT={Get stats for a specific document ID. <pre class='brush: cf'> docStats = client.getDocStats( 'brad' ); docStatArray = client.getDocStats( ['brad', 'luis', 'bill'] );
  34. },RETURN={A future or a struct of futures depending on whether a single ID or an array of IDs are passed,}}, {access={public},NAME={GETCOUCHBASECONFIG},returntype={any},PARAMETERS={[Ljava.lang.Object;@94184b1}}, {NAME={add},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@2c6e8536},HINT={This method is the same as set(), except the future that is returned will return true if the ID being set doesn't already exist. The future will return false if the item being set does already exist. It will not throw an error if the ID already exists, you must check the future. <pre class='brush: cf'> person = { name: "Brad", age: 33, hair: "red" }; future = client.add( 'brad', person );
  35. },VALUE.HINT={yes},ID.HINT={yes},RETURN={A Java OperationFuture object (net.spy.memcached.internal.OperationFuture<Boolean>) or void (null) if a timeout exception occurs.}}, {ACCESS={private},NAME={validateConfig},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@bebb304},HINT={Standardize and validate configuration object},RETURN={The CFCouchbase config CFC}}, {access={public},name={SETUTIL},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@1f35d1b9}}, {access={public},name={SETUUIDHELPER},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@65bd8b1}}, {access={public},NAME={GETCOUCHBASECLIENT},returntype={any},PARAMETERS={[Ljava.lang.Object;@77ef4fb9}}, {NAME={getUnAvailableServers},RETURNTYPE={array},PARAMETERS={[Ljava.lang.Object;@5b3833},HINT={Get the addresses of unavailable servers <pre class='brush: cf'> serverArray = client.getUnAvailableServers();
  36. },RETURN={An array containing an item for each unavilable server in the cluster. Servers are represented as a string containing their address produced via java.net.InetSocketAddress.toString()
  37. If all servers are online, the array with be empty.}}, {NAME={viewExists},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@64c69c73},HINT={Checks to see if a view exists. You can check for a view by name, but if you supply a map or reduce function, they will be checked as well. <pre class='brush: cf'> result = client.viewExists( 'beer', 'brewery_beers' );
  38. },RETURN={0 if the design document doesn't exist as well as if the design document exists, but there is no view by that name.
  39. If the view does exist, it will return the index of the view in the designDocument's view array.}}, {access={public},name={SETCOUCHBASECLIENT},returntype={cfcouchbase.CouchbaseClient},Parameters={[Ljava.lang.Object;@2b4975b5}}, {NAME={set},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@63ced446},HINT={Set a value with durability options. It is asyncronouse by default so it returns immediatley without waiting for the actual set to complete. Call future.set() if you need to confirm the document has been set. Even then, the document is only guarunteed to be in memory on a single node. To force the document to be replicated to additional nodes, pass the replicateTo argument. A value of ReplicateTo.TWO ensures the document is copied to at least two replica nodes, etc. (This assumes you have replicas enabled) To force the document to be perisited to disk, passing in PersistTo.ONE ensures it is stored on disk in a single node. PersistTo.TWO ensures 2 nodes, etc. A PersistTo.TWO durability setting implies a replication to at least one node. <pre class='brush: cf'> person = { name: "Brad", age: 33, hair: "red" }; future = client.set( 'brad', person );
  40. },RETURN={A Java OperationFuture object (net.spy.memcached.internal.OperationFuture<T>) or void (null) if a timeout exception occurs.}}, {NAME={deserializeData},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@1fd272db},HINT={Deserializes an incoming data string via JSON and according to our rules. It can also accept an optional inflateTo parameter wich can be an object we should inflate our data to.},RETURN={The deserialized data}}, {NAME={saveView},RETURNTYPE={boolean},PARAMETERS={[Ljava.lang.Object;@3172982f},HINT={Saves a View. Will save the view and or designDocument if they don't exist. Will update if they already exist. <pre class='brush: cf'> client.saveView( &nbsp;&nbsp;'manager', &nbsp;&nbsp;'listBreweries', &nbsp;&nbsp;'function (doc, meta) { &nbsp;&nbsp;if ( doc.type == ''brewery'' ) { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;emit(doc.name, null); &nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;}', &nbsp;&nbsp;'_count' &nbsp;&nbsp;20 );
  41. },RETURN={True when the view is ready. If the view is still not accessable after the number of seconds specified in the "waitFor" parameter, the method will return false.}}, {ACCESS={private},NAME={buildCouchbaseClient},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@5a654f05},HINT={Build a couchbase connection client according to config and returns the raw java connection client object},RETURN={The java CouchbaseClient class (com.couchbase.client.CouchbaseClient).}}, {NAME={delete},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@3126ffa0},HINT={Delete a value with durability options. The durability options here operate similarly to those documented in the set method. <pre class='brush: cf'> future = client.delete( 'brad' );
  42. },RETURN={A Java OperationFuture object (net.spy.memcached.internal.OperationFuture<Boolean>) or a struct of futures depending on whether a single ID or an array of IDs are passed,}}, {NAME={getAndTouch},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@77587a95},HINT={Obtain a value for a given ID and update the expiry time for the document at the same time. This is useful for a sort of "last access timeout" functionality where you don't want a document to timeout while it is still being accessed. <pre class='brush: cf'> result = client.getAndTouch( 'brad' ); writeOutput(result.cas); writeOutput(result.value);
  43. },RETURN={A struct with "CAS" and "value" keys. If the ID doesn't exist, this method will return null.}}, {NAME={getJavaLoader},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@51d80969},HINT={Get the java loader instance},RETURN={The javaLoader CFC.}}, {access={public},NAME={GETVERSION},returntype={any},PARAMETERS={[Ljava.lang.Object;@3e51f679}}, {ACCESS={private},NAME={loadSDK},RETURNTYPE={void},PARAMETERS={[Ljava.lang.Object;@770ca1e5},HINT={Load JavaLoader with the SDK}}, {NAME={getView},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@5e58fe72},HINT={Gets access to a view contained in a design document from the cluster You would usually use this method if you need the raw Java object to do manual queries or updates on a view. <pre class='brush: cf'> view = client.getView( 'beer', 'brewery_beers' );
  44. },RETURN={A View Java object (com.couchbase.client.protocol.views.View).}}, {access={public},NAME={GETLIBID},returntype={any},PARAMETERS={[Ljava.lang.Object;@24a91ec2}}, {VIEWNAME={A couchbase view object (com.couchbase.client.protocol.views.View)},NAME={rawQuery},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@5b22655b},HINT={Queries a Couchbase view. See: http://www.couchbase.com/autodocs/couchbase-java-client-1.2.0/com/couchbase/client/protocol/views/ViewResponse.html <pre class='brush: cf'> query = client.newQuery( { limit: 20, stale: 'OK' } ); view = client.getView( 'beer', 'brewery_beers' ); results = client.rawQuery( view, query );
  45. },RETURN={A raw Java View result object. The result can be accessed row-wise via an iterator class (com.couchbase.client.protocol.views.ViewResponse).}}, {NAME={getAggregateStat},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@2f2c681b},HINT={Get an aggregate of a single stat aggregated across all servers in the cluster. This method saves you the trouble of calling getStats() and manually looping over each server to add up the totals. val() is called on each value, so stats which are not numeric will simply return 0. This only works for numeric stats that are additive across the cluster such as "get_misses" or "curr_items". A stat such as "time" would not make sense even though it is numeric, since adding epoch dates serves no purpose.
  46. Information on stats available here: http://www.couchbase.com/docs/couchbase-manual-1.8/cbstats-all-bucket-info.html <pre class='brush: cf'> stats = client.getAggregateStat( 'curr_items' );
  47.  
  48. },RETURN={An integer representing the aggregation of the stat specified acrossed the cluster.}}, {NAME={newViewDesign},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@c66dccf},HINT={Creates a new instance of a viewDesign Java object (com.couchbase.client.protocol.views.ViewDesign) <pre class='brush: cf'> viewDesign = client.newViewDesign( viewName, mapFunction, reduceFunction );
  49. },RETURN={An instance of the Java class com.couchbase.client.protocol.views.ViewDesign}}, {NAME={getStats},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@352aa065},HINT={Get all of the stats from all of the servers in the cluster. Information on stats available here: http://www.couchbase.com/docs/couchbase-manual-1.8/cbstats-all-bucket-info.html <pre class='brush: cf'> clusterStats = client.getStats();
  50. },RETURN={A struct containing a key for each server in the cluster. The value for each server is a Java Map of stats.}}, {NAME={decr},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@1886228},HINT={Decrement the given counter, returning the new value. This method is thread safe as it decrements and retrives the value in a single operation as opposed to getting it, and then setting it again with subsequent calls. <pre class='brush: cf'> newValue = client.decr( 'passesLeft', 1 );
  51. },RETURN={The new value, or -1 if we were unable to decrement or add}}, {NAME={query},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@20e430e1},HINT={Queries a Couchbase view using the options supplied.
  52. Valid options are:
  53.  
  54.  
  55.  
  56.  
  57. sortOrder - Specifies the direction to sort the results based on the map function's "key" value. Valid values are ASC and DESC.
  58.  
  59. limit - Number of records to return
  60.  
  61. offset - Number of records to skip when returning
  62.  
  63. reduce - Flag to control whether the reduce portion of the view is run. If false, only the results of the map function are returned.
  64.  
  65. includeDocs - Specifies whether or not to include the entire document in the results or just the key names. Default is false.
  66.  
  67. startkey - Specify the start of a range of keys to return. This value needs to be the same data type as the key in your view's map function. If your view has a string for the key, pass in a string here. If your key is an array of values, pass in an array of values.
  68.  
  69. endkey - Specify the end of a range of keys to return. This value needs to be the same data type as the key in your view's map function. If your view has a string for the key, pass in a string here. If your key is an array of values, pass in an array of values.
  70.  
  71. inclusiveEnd - Use this when specifying an endKey parameter. Flag to control whether the endKey is inclusive or not.
  72.  
  73. startkeyDocID - If you have specified a startKey AND there is more than one record in the view results that share that key, this will specify what ID to start at when returning records. This input is ignored when not using startKey.
  74.  
  75. endKeyDocID - If you have specified an endKey AND there is more than one record in the view results that share that key, this will specify what ID to end at when returning records. This input is ignored when not using endKey.
  76.  
  77. group - Flag to control whether the results of the reduce function are grouped. If no groupLevel is specified, only one row will be returned.
  78.  
  79. groupLevel - Number representing what level of the map key to group at (Keys can be complex). If the key is simple, this parameter does nothing.
  80.  
  81. key - The key of a single record to return. For complex keys, pass the key as an array.
  82.  
  83. keys - An array of keys to return. For complex keys, pass each key as an array.
  84.  
  85. stale - Specifies if stale data can be returned with the view. Possible values are:
  86.  
  87. "OK" (default) - stale data is ok
  88. "FALSE" - force index of view
  89. "UPDATE_AFTER" - potentially returns stale data, but starts an asynch re-index.
  90.  
  91.  
  92.  
  93. debug - Java SDK will log debugging information about the query
  94.  
  95.  
  96. The options struct maps to the set of options found in the native Couchbase query object (com.couchbase.client.protocol.views.Query) See http://www.couchbase.com/autodocs/couchbase-java-client-1.2.0/com/couchbase/client/protocol/views/Query.html <pre class='brush: cf'> results = client.query( designDocumentName='beer', viewName='brewery_beers', options={ limit: 20, stale: 'OK' } );
  97.  
  98. },RETURN={If returnType is "array", will return an array of structs where each struct represents a record of output from the view.
  99. Each struct contains the following items: id, document, key, value
  100. If returnType is native, a Java ViewResponse object will be returned (com.couchbase.client.protocol.views.ViewResponse)
  101. If returnType is iterator, a Java iterator object will be returned}}, {NAME={designDocumentExists},RETURNTYPE={boolean},PARAMETERS={[Ljava.lang.Object;@654514a5},HINT={Checks to see if a design document exists. <pre class='brush: cf'> result = client.designDocumentExists( 'beer' );
  102. },RETURN={True if the design document is found and false if it is not found.}}, {NAME={shutdown},RETURNTYPE={CouchbaseClient},PARAMETERS={[Ljava.lang.Object;@1a4e9094},HINT={Shutdown the native client connection <pre class='brush: cf'> client.shutdown( 10 );
  103. },RETURN={A refernce to "this" CFC}}, {ACCESS={private},NAME={defaultPersistReplicate},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@1bf5f20a},HINT={Default persist and replicate from arguments. Will create "persistTo" with a default value of ZERO and "replicateTo" with a default value of ZERO if they don't exist. Also translates from string inputs to the Java enum value},RETURN={The argument collection with the defaulted values.}}, {access={public},NAME={GETUUIDHELPER},returntype={any},PARAMETERS={[Ljava.lang.Object;@2fe57cdd}}, {ACCESS={private},NAME={getLibJars},RETURNTYPE={array},PARAMETERS={[Ljava.lang.Object;@368a9bc},HINT={Get a list of all the jars in the lib directory},RETURN={An array of jar file names}}, {NAME={touch},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@4c5f7763},HINT={Touch the given ID to reset its expiration time. <pre class='brush: cf'> future = client.touch( 'sessionData', 30 );
  104. },RETURN={A future object (net.spy.memcached.internal.OperationFuture)}}, {ACCESS={private},NAME={defaultTimeout},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@f972bc1},HINT={Default timeout in arguments. Will create "timeout" with a default value specified in settings Also accounts for timeouts over 30 days which must be represented as epoch date.},RETURN={The argument collection with the defaulted values.}}, {NAME={init},RETURNTYPE={CouchbaseClient},PARAMETERS={[Ljava.lang.Object;@db993e6},HINT={Constructor This creates a connection to a Couchbase server using the passed in config argument, which can be a struct literal of options, a path to a config object or an instance of a cfcouchbase.config.CouchbaseConfig object. For all the possible config settings, look at the CouchbaseConfig object.},RETURN={A reference to "this" CFC}}, {HINT={Deletes a View. Will delete the view from the designDocument if it exists. <pre class='brush: cf'> client.deleteView( 'myDoc', 'myView' );
  105. },NAME={deleteView},RETURNTYPE={void},PARAMETERS={[Ljava.lang.Object;@129ce814}}, {ACCESS={private},NAME={buildDataMarshaller},RETURNTYPE={any},PARAMETERS={[Ljava.lang.Object;@7b488297},HINT={Build the data marshaller},RETURN={The data marshaller}}]},HINT={<strong>Copyright Since 2005 Ortus Solutions, Corp</strong>
  106. <a href="http://www.ortussolutions.com">www.ortussolutions.com</a>
  107. This is the main class used to connect and interact with Couchbase
  108.  
  109. },PATH={//tbrown1/c9d/sites/learncouchbase.local/modules/cfcouchbase/CouchbaseClient.cfc},INHERITANCETRAIL={[cfcouchbase.CouchbaseClient, WEB-INF.cftags.component]},TYPE={component}}},CONSTRUCTOR={init},METHOD={},ASPECT={false}}, Stacktrace: coldfusion.runtime.java.JavaObjectInstantiationException: Object instantiation exception.
  110. at coldfusion.runtime.java.JavaProxy.CreateObject(JavaProxy.java:171)
  111. at coldfusion.runtime.java.JavaProxy.invoke(JavaProxy.java:80)
  112. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  113. at cfCouchbaseClient2ecfc3583295$funcBUILDCOUCHBASECLIENT.runFunction(//tbrown1/c9d/sites/learncouchbase.local/modules/cfcouchbase/CouchbaseClient.cfc:1567)
  114. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  115. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  116. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  117. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  118. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  119. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  120. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2840)
  121. at cfCouchbaseClient2ecfc3583295$funcINIT.runFunction(//tbrown1/c9d/sites/learncouchbase.local/modules/cfcouchbase/CouchbaseClient.cfc:84)
  122. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  123. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  124. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  125. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  126. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  127. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  128. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:648)
  129. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:457)
  130. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2424)
  131. at coldfusion.tagext.lang.InvokeTag.doEndTag(InvokeTag.java:406)
  132. at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2987)
  133. at cfBuilder2ecfc902983873$funcBUILDCFC.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc:127)
  134. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  135. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  136. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  137. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  138. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  139. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  140. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  141. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  142. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  143. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  144. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  145. at cfInjector2ecfc935736917$funcBUILDINSTANCE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:288)
  146. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  147. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  148. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  149. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  150. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  151. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  152. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  153. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  154. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  155. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  156. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  157. at cfSingleton2ecfc2101499663$funcGETFROMSCOPE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/scopes/Singleton.cfc:49)
  158. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  159. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  160. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  161. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  162. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  163. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  164. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  165. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  166. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  167. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  168. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  169. at cfInjector2ecfc935736917$funcGETINSTANCE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:261)
  170. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  171. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  172. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  173. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  174. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  175. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  176. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  177. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  178. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  179. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  180. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  181. at cfBuilder2ecfc902983873$funcGETMODELDSL.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc:471)
  182. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  183. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  184. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  185. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  186. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  187. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  188. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  189. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2805)
  190. at cfBuilder2ecfc902983873$funcBUILDDSLDEPENDENCY.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc:362)
  191. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  192. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  193. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  194. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  195. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  196. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  197. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  198. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:648)
  199. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:457)
  200. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2424)
  201. at cfInjector2ecfc935736917$funcPROCESSINJECTION.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:603)
  202. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  203. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  204. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  205. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  206. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  207. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  208. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  209. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2840)
  210. at cfInjector2ecfc935736917$funcAUTOWIRE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:490)
  211. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  212. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  213. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  214. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  215. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  216. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  217. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  218. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:648)
  219. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:457)
  220. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2424)
  221. at cfNoScope2ecfc1823660439$funcGETFROMSCOPE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/scopes/NoScope.cfc:33)
  222. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  223. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  224. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  225. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  226. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  227. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  228. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  229. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  230. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  231. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  232. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  233. at cfInjector2ecfc935736917$funcGETINSTANCE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:261)
  234. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  235. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  236. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  237. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  238. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  239. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  240. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  241. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  242. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  243. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  244. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  245. at cfHandlerService2ecfc1212161989$funcNEWHANDLER.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/services/HandlerService.cfc:120)
  246. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  247. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  248. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  249. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  250. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  251. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  252. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  253. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2840)
  254. at cfHandlerService2ecfc1212161989$funcGETHANDLER.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/services/HandlerService.cfc:141)
  255. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  256. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  257. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  258. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  259. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  260. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  261. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  262. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  263. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  264. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  265. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  266. at cfController2ecfc501454308$func_RUNEVENT.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/Controller.cfc:502)
  267. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  268. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  269. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  270. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  271. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  272. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2805)
  273. at cfController2ecfc501454308$funcRUNEVENT.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/Controller.cfc:425)
  274. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  275. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  276. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  277. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  278. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  279. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:648)
  280. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:457)
  281. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2424)
  282. at cfBootstrap2ecfc1212021711$funcLOADCOLDBOX.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/Bootstrap.cfc:74)
  283. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  284. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  285. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  286. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  287. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  288. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  289. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  290. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  291. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  292. at cfApplication2ecfc1858862023$funcONAPPLICATIONSTART.runFunction(//tbrown1/c9d/sites/learncouchbase.local/Application.cfc:31)
  293. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  294. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  295. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  296. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  297. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  298. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  299. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  300. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  301. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  302. at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:108)
  303. at coldfusion.runtime.AppEventInvoker.onApplicationStart(AppEventInvoker.java:231)
  304. at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:333)
  305. at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:42)
  306. at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
  307. at coldfusion.filter.PathFilter.invoke(PathFilter.java:142)
  308. at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:30)
  309. at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94)
  310. at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
  311. at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
  312. at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58)
  313. at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
  314. at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
  315. at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
  316. at coldfusion.CfmServlet.service(CfmServlet.java:219)
  317. at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
  318. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
  319. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
  320. at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
  321. at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
  322. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
  323. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
  324. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
  325. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
  326. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
  327. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171)
  328. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
  329. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
  330. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:422)
  331. at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:199)
  332. at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
  333. at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:314)
  334. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  335. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  336. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  337. at java.lang.Thread.run(Unknown Source)
  338. Caused by: java.lang.reflect.InvocationTargetException
  339. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  340. at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
  341. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
  342. at java.lang.reflect.Constructor.newInstance(Unknown Source)
  343. at coldfusion.runtime.java.JavaProxy.CreateObject(JavaProxy.java:166)
  344. ... 227 more
  345. Caused by: com.couchbase.client.vbucket.ConfigurationException: Configuration for bucket "beer-sample" was not found in server list ([http://ea1.local:8091/pools]).
  346. at com.couchbase.client.vbucket.ConfigurationProviderHTTP.readPools(ConfigurationProviderHTTP.java:274)
  347. at com.couchbase.client.vbucket.ConfigurationProviderHTTP.getBucketConfiguration(ConfigurationProviderHTTP.java:146)
  348. at com.couchbase.client.CouchbaseConnectionFactory.getVBucketConfig(CouchbaseConnectionFactory.java:313)
  349. at com.couchbase.client.CouchbaseClient.<init>(CouchbaseClient.java:252)
  350. ... 232 more
  351.  
  352.  
  353.  
  354.  
  355. The error occurred in //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc: line 132
  356. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc: line 288
  357. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/scopes/Singleton.cfc: line 49
  358. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc: line 261
  359. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc: line 471
  360. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc: line 362
  361. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc: line 603
  362. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc: line 490
  363. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/scopes/NoScope.cfc: line 33
  364. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc: line 261
  365. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/web/services/HandlerService.cfc: line 120
  366. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/web/services/HandlerService.cfc: line 141
  367. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/web/Controller.cfc: line 502
  368. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/web/Controller.cfc: line 425
  369. Called from //tbrown1/wwwroot/coldbox_4_0_0/system/Bootstrap.cfc: line 74
  370. Called from //tbrown1/c9d/sites/learncouchbase.local/Application.cfc: line 31
  371. 130 : <!--- Controlled Exception --->
  372. 131 : <cfthrow message="Error building: #thisMap.getName()# -> #cfcatch.message# #cfcatch.detail# with constructor arguments: #constructorArgs.toString()#"
  373. 132 : detail="Mapping: #thisMap.getMemento().toString()#, Stacktrace: #cfcatch.stacktrace#"
  374. 133 : type="Builder.BuildCFCDependencyException">
  375. 134 : </cfcatch>
  376. Resources:
  377. Check the ColdFusion documentation to verify that you are using the correct syntax.
  378. Search the Knowledge Base to find a solution to your problem.
  379. Browser Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36
  380. Remote Address 192.168.1.104
  381. Referrer
  382. Date/Time 22-Jan-15 01:25 AM
  383. Stack Trace
  384. at cfBuilder2ecfc902983873$funcBUILDCFC.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc:132) at cfInjector2ecfc935736917$funcBUILDINSTANCE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:288) at cfSingleton2ecfc2101499663$funcGETFROMSCOPE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/scopes/Singleton.cfc:49) at cfInjector2ecfc935736917$funcGETINSTANCE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:261) at cfBuilder2ecfc902983873$funcGETMODELDSL.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc:471) at cfBuilder2ecfc902983873$funcBUILDDSLDEPENDENCY.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Builder.cfc:362) at cfInjector2ecfc935736917$funcPROCESSINJECTION.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:603) at cfInjector2ecfc935736917$funcAUTOWIRE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:490) at cfNoScope2ecfc1823660439$funcGETFROMSCOPE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/scopes/NoScope.cfc:33) at cfInjector2ecfc935736917$funcGETINSTANCE.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/ioc/Injector.cfc:261) at cfHandlerService2ecfc1212161989$funcNEWHANDLER.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/services/HandlerService.cfc:120) at cfHandlerService2ecfc1212161989$funcGETHANDLER.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/services/HandlerService.cfc:141) at cfController2ecfc501454308$func_RUNEVENT.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/Controller.cfc:502) at cfController2ecfc501454308$funcRUNEVENT.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/web/Controller.cfc:425) at cfBootstrap2ecfc1212021711$funcLOADCOLDBOX.runFunction(//tbrown1/wwwroot/coldbox_4_0_0/system/Bootstrap.cfc:74) at cfApplication2ecfc1858862023$funcONAPPLICATIONSTART.runFunction(//tbrown1/c9d/sites/learncouchbase.local/Application.cfc:31)
  385.  
  386. coldfusion.runtime.CustomException: Error building: CouchbaseClient@cfcouchbase -> Object instantiation exception. An exception occurred while instantiating a Java object. The class must not be an interface or an abstract class. Error: ''. with constructor arguments: {config={{SERVERS={http://ea1.local:8091},VIEWTIMEOUT={1000},BUCKETNAME={beer-sample}}}}
  387. at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:142)
  388. at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2986)
  389. at cfBuilder2ecfc902983873$funcBUILDCFC.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Builder.cfc:132)
  390. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  391. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  392. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  393. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  394. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  395. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  396. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  397. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  398. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  399. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  400. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  401. at cfInjector2ecfc935736917$funcBUILDINSTANCE.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Injector.cfc:288)
  402. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  403. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  404. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  405. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  406. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  407. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  408. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  409. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  410. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  411. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  412. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  413. at cfSingleton2ecfc2101499663$funcGETFROMSCOPE.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\scopes\Singleton.cfc:49)
  414. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  415. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  416. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  417. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  418. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  419. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  420. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  421. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  422. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  423. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  424. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  425. at cfInjector2ecfc935736917$funcGETINSTANCE.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Injector.cfc:261)
  426. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  427. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  428. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  429. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  430. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  431. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  432. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  433. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  434. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  435. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  436. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  437. at cfBuilder2ecfc902983873$funcGETMODELDSL.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Builder.cfc:471)
  438. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  439. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  440. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  441. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  442. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  443. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  444. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  445. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2805)
  446. at cfBuilder2ecfc902983873$funcBUILDDSLDEPENDENCY.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Builder.cfc:362)
  447. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  448. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  449. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  450. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  451. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  452. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  453. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  454. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:648)
  455. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:457)
  456. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2424)
  457. at cfInjector2ecfc935736917$funcPROCESSINJECTION.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Injector.cfc:603)
  458. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  459. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  460. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  461. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  462. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  463. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  464. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  465. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2840)
  466. at cfInjector2ecfc935736917$funcAUTOWIRE.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Injector.cfc:490)
  467. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  468. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  469. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  470. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  471. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  472. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  473. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  474. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:648)
  475. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:457)
  476. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2424)
  477. at cfNoScope2ecfc1823660439$funcGETFROMSCOPE.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\scopes\NoScope.cfc:33)
  478. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  479. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  480. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  481. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  482. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  483. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  484. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  485. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  486. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  487. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  488. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  489. at cfInjector2ecfc935736917$funcGETINSTANCE.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\ioc\Injector.cfc:261)
  490. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  491. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  492. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  493. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  494. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  495. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  496. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  497. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  498. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  499. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  500. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  501. at cfHandlerService2ecfc1212161989$funcNEWHANDLER.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\web\services\HandlerService.cfc:120)
  502. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  503. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  504. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  505. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  506. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  507. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  508. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  509. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2840)
  510. at cfHandlerService2ecfc1212161989$funcGETHANDLER.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\web\services\HandlerService.cfc:141)
  511. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  512. at coldfusion.filter.SilentFilter.invoke(SilentFilter.java:47)
  513. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  514. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  515. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  516. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  517. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  518. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  519. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  520. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  521. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  522. at cfController2ecfc501454308$func_RUNEVENT.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\web\Controller.cfc:502)
  523. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  524. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  525. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  526. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  527. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  528. at coldfusion.runtime.CfJspPage._invokeUDF(CfJspPage.java:2805)
  529. at cfController2ecfc501454308$funcRUNEVENT.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\web\Controller.cfc:425)
  530. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  531. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  532. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  533. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  534. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:533)
  535. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:648)
  536. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:457)
  537. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2424)
  538. at cfBootstrap2ecfc1212021711$funcLOADCOLDBOX.runFunction(\\tbrown1\wwwroot\coldbox_4_0_0\system\Bootstrap.cfc:74)
  539. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  540. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  541. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  542. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  543. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  544. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  545. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  546. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  547. at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2483)
  548. at cfApplication2ecfc1858862023$funcONAPPLICATIONSTART.runFunction(\\tbrown1\c9d\sites\learncouchbase.local\Application.cfc:31)
  549. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:487)
  550. at coldfusion.runtime.UDFMethod$ReturnTypeFilter.invoke(UDFMethod.java:420)
  551. at coldfusion.runtime.UDFMethod$ArgumentCollectionFilter.invoke(UDFMethod.java:383)
  552. at coldfusion.filter.FunctionAccessFilter.invoke(FunctionAccessFilter.java:95)
  553. at coldfusion.runtime.UDFMethod.runFilterChain(UDFMethod.java:334)
  554. at coldfusion.runtime.UDFMethod.invoke(UDFMethod.java:231)
  555. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:643)
  556. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:432)
  557. at coldfusion.runtime.TemplateProxy.invoke(TemplateProxy.java:402)
  558. at coldfusion.runtime.AppEventInvoker.invoke(AppEventInvoker.java:108)
  559. at coldfusion.runtime.AppEventInvoker.onApplicationStart(AppEventInvoker.java:231)
  560. at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:333)
  561. at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:42)
  562. at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
  563. at coldfusion.filter.PathFilter.invoke(PathFilter.java:142)
  564. at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:30)
  565. at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94)
  566. at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
  567. at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
  568. at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:58)
  569. at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
  570. at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
  571. at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
  572. at coldfusion.CfmServlet.service(CfmServlet.java:219)
  573. at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
  574. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
  575. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
  576. at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
  577. at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
  578. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
  579. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
  580. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
  581. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
  582. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
  583. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171)
  584. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
  585. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
  586. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:422)
  587. at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:199)
  588. at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
  589. at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:314)
  590. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
  591. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
  592. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
  593. at java.lang.Thread.run(Unknown Source)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement