<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is it possbile to use both cmisfeature and embeddedAutomationServerFeature in the same tests ; (&amp;quot;No operation was bound on ID: Document.Export exception) in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/is-it-possbile-to-use-both-cmisfeature-and/m-p/324546#M11547</link>
    <description>&lt;P&gt;It seems that "org.nuxeo.ecm.platform.rendition.core" is one part of the problem&lt;/P&gt;</description>
    <pubDate>Wed, 10 Feb 2016 18:42:15 GMT</pubDate>
    <dc:creator>J_-M_K_</dc:creator>
    <dc:date>2016-02-10T18:42:15Z</dc:date>
    <item>
      <title>Is it possbile to use both cmisfeature and embeddedAutomationServerFeature in the same tests ; ("No operation was bound on ID: Document.Export exception)</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/is-it-possbile-to-use-both-cmisfeature-and/m-p/324545#M11546</link>
      <description>&lt;P&gt;I would like to use both CmisFeature and EmbeddedAutomationServerFeature in the same tests.&lt;/P&gt;
&lt;P&gt;From the logs, deployment seems to run fine but I later encounter the following exception when trying to open an httpautomationsession :&lt;/P&gt;
&lt;P&gt;Any Idea ?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;type hereWARN  [btpool0-2 - /automation/] [WebEngineExceptionMapper] Exception in JAX-RS processing
org.nuxeo.ecm.automation.OperationCompoundException: No operation was bound on ID: Document.Export
No operation was bound on ID: Document.Export

	at org.nuxeo.ecm.automation.OperationCompoundExceptionBuilder.newThrowable(OperationCompoundExceptionBuilder.java:27)
	at org.nuxeo.ecm.automation.OperationCompoundExceptionBuilder.throwOnError(OperationCompoundExceptionBuilder.java:47)
	at org.nuxeo.ecm.automation.core.impl.OperationServiceImpl.getDocumentation(OperationServiceImpl.java:492)
	at org.nuxeo.ecm.automation.jaxrs.io.operations.AutomationInfo.&amp;lt;init&amp;gt;(AutomationInfo.java:37)
	at org.nuxeo.ecm.automation.server.jaxrs.AutomationResource.doGet(AutomationResource.java:115)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:497)
	at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
	at 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Feb 2016 17:30:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/is-it-possbile-to-use-both-cmisfeature-and/m-p/324545#M11546</guid>
      <dc:creator>J_-M_K_</dc:creator>
      <dc:date>2016-02-03T17:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possbile to use both cmisfeature and embeddedAutomationServerFeature in the same tests ; ("No operation was bound on ID: Document.Export exception)</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/is-it-possbile-to-use-both-cmisfeature-and/m-p/324546#M11547</link>
      <description>&lt;P&gt;It seems that "org.nuxeo.ecm.platform.rendition.core" is one part of the problem&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2016 18:42:15 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/is-it-possbile-to-use-both-cmisfeature-and/m-p/324546#M11547</guid>
      <dc:creator>J_-M_K_</dc:creator>
      <dc:date>2016-02-10T18:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possbile to use both cmisfeature and embeddedAutomationServerFeature in the same tests ; ("No operation was bound on ID: Document.Export exception)</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/is-it-possbile-to-use-both-cmisfeature-and/m-p/324547#M11548</link>
      <description>&lt;P&gt;Answering to myself after some heuristic attempts ...&lt;/P&gt;
&lt;P&gt;Under 7.10 the following  setting allows to use both cmis and http automation apis in the same tests.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;@RunWith(FeaturesRunner.class)
@Features({
	AuditFeature.class,
	CmisFeatureSessionAtomPub.class,
	EmbeddedAutomationServerFeature.class,
	
})


@Deploy({
	"org.nuxeo.ecm.actions", 
	"org.nuxeo.ecm.core.mimetype",
	"org.nuxeo.ecm.core.opencmis.impl", 
	"org.nuxeo.ecm.core.opencmis.tests", 
	"org.nuxeo.ecm.core.opencmis.bindings",
	"org.nuxeo.ecm.platform.filemanager.api", 
	"org.nuxeo.ecm.platform.filemanager.core", 
	"org.nuxeo.ecm.platform.filemanager.core.listener",  
	"org.nuxeo.ecm.platform.login",  
	"org.nuxeo.ecm.platform.types.api", 
	"org.nuxeo.ecm.platform.types.core",
	"org.nuxeo.ecm.platform.rendition.api", 
	"org.nuxeo.ecm.platform.rendition.core:OSGI-INF/rendition-schemas-contrib.xml",
	"org.nuxeo.ecm.platform.rendition.core:OSGI-INF/rendition-service.xml",

	"org.nuxeo.ecm.platform.web.common",
	"org.nuxeo.ecm.platform.ws",   
	
	"org.nuxeo.ecm.platform.thumbnail",
	"org.nuxeo.ecm.platform.url.api",
	"org.nuxeo.ecm.platform.url.core",
	"org.nuxeo.ecm.platform.convert", 
	"org.nuxeo.ecm.platform.commandline.executor",
	 "org.nuxeo.ecm.directory.types.contrib",
	 "org.nuxeo.ecm.core.query", 
	 "org.nuxeo.ecm.platform.thumbnail:OSGI-INF/thumbnail-core-types-contrib.xml", 
	 "org.nuxeo.ecm.core.opencmis.tests.tests:OSGI-INF/disable-filemanager-icon-listener.xml",
	"org.nuxeo.ecm.core.opencmis.tests.tests:OSGI-INF/validation-contrib.xml",

        })
@LocalDeploy({ 
	.....,
        ......
	
	})
@Jetty(port=18080)
public class TestEmbeddedServerFeatureWithCmis {
...
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Feb 2016 22:40:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/is-it-possbile-to-use-both-cmisfeature-and/m-p/324547#M11548</guid>
      <dc:creator>J_-M_K_</dc:creator>
      <dc:date>2016-02-10T22:40:44Z</dc:date>
    </item>
  </channel>
</rss>

