Extention Plug-in missing in configurarion list - Eclipse

Posted by rteixeir on 20-Mar-2015 09:02

Hi everybody,

I'm trying to create a new Stand-Alone Extended Operator by following Extension Guide - Corticon. After restart my studio (with -clean option) my plug-in does not match in plug-in list in configuration list. Even after I put the .jar file in plugins/ directory.

My Class:

package com.acme.extended.operators;

import com.corticon.services.extensions.ICcStandAloneExtension;



public class ICcStandAloneTest implements ICcStandAloneExtension{
	public static Boolean isTrue(){
		return Boolean.TRUE;
	}
}

My plug-in project struc:

com.corticon.eclipse.studio.operations.core
> JRE LIB
> Plug-in Dependencies
>src/
  > com.acme.extended.operators
      > ICcStandAloneTest.java
  > CcExtensionsLocator.lc
  >META-INF
      > MANIFEST.MF
  > build.properties

Regards ! 

All Replies

Posted by Jan Krishnamurthy on 20-Mar-2015 09:05

Hello,

Can you provide the MANIFEST.MF for review ?

What is exact name of the plugin.jar ?

What version of Corticon Studio are you using ?

- Jan

Posted by rteixeir on 20-Mar-2015 09:24

Hi, Jan,

Thanks for the fast Reply,

So, follow the MANIFEST.MF

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Core
Bundle-SymbolicName: com.corticon.eclipse.studio.operations.core
Bundle-Version: 5.3.1
Bundle-Vendor: CORTICON
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Require-Bundle: org.eclipse.core.runtime,
 com.corticon.legacy,
 com.corticon.services,
 com.corticon.thirdparty
Export-Package: .,
 com.acme.extended.operators
Eclipse-RegisterBuddy: com.corticon.legacy


plugin .jar name: com.corticon.eclipse.studio.operations.extended.core_5.3.1

I'm using Corticon 5.3 Studio

Thank you, so much

Posted by Jan Krishnamurthy on 20-Mar-2015 09:42

a] Regenerate the plugin.jar with the MANIFEST.MF below:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Extended Operator Core Plug-in
Bundle-SymbolicName: com.corticon.eclipse.studio.operations.extended.core
Bundle-Version: 9.9.9
Bundle-Vendor: CORTICON
Bundle-RequiredExecutionEnvironment: JavaSE-1.7,JavaSE-1.6,J2SE-1.5
Export-Package: .,
com.acme.extended.operators
Bundle-ActivationPolicy: lazy
Require-Bundle: com.corticon.services,
com.corticon.legacy,
com.corticon .thirdparty,
org.eclipse.core.runtime
Eclipse-RegisterBuddy: com.corticon.legacy,
com.corticon.thirdparty
Bundle-ClassPath: .

b] Place the generated jar (com.corticon.eclipse.studio.operations.extended.core_9.9.9) in CORTICON_HOME\Studio\eclipse\plugins folder.

c] Close Studio and open it again.

- Jan

[collapse]
From: rteixeir [mailto:bounce-rteixeir@community.progress.com]
Sent: Friday, March 20, 2015 10:25 AM
To: TU.Corticon@community.progress.com
Subject: RE: [Technical Users - Corticon] Extention Plug-in missing in configurarion list - Eclipse
 
Reply by rteixeir

Hi, Jan,

Thanks for the fast Reply,

So, follow the MANIFEST.MF

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Core
Bundle-SymbolicName: com.corticon.eclipse.studio.operations.core
Bundle-Version: 5.3.1
Bundle-Vendor: CORTICON
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Require-Bundle: org.eclipse.core.runtime,
 com.corticon.legacy,
 com.corticon.services,
 com.corticon.thirdparty
Export-Package: .,
 com.acme.extended.operators
Eclipse-RegisterBuddy: com.corticon.legacy


plugin .jar name: com.corticon.eclipse.studio.operations.extended.core_5.3.1

I'm using Corticon 5.3 Studio

Thank you, so much

Stop receiving emails on this subject.

Flag this post as spam/abuse.

[/collapse]

Posted by jan@nimblecg.com on 20-Mar-2015 09:45

Or try to start Cc as an administrator if you have Cc installed under program files.
 
Jan van Nimwegen
Partner
 
Nimble Consulting Group, LLP
(w) +1.703.327.4484
(m) +1.571.244.4588
 
[collapse]
From: Jan Krishnamurthy [mailto:bounce-jkrishna@community.progress.com]
Sent: Friday, March 20, 2015 10:43 AM
To: TU.Corticon@community.progress.com
Subject: RE: [Technical Users - Corticon] Extention Plug-in missing in configurarion list - Eclipse
 
Reply by Jan Krishnamurthy

a] Regenerate the plugin.jar with the MANIFEST.MF below:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Extended Operator Core Plug-in
Bundle-SymbolicName: com.corticon.eclipse.studio.operations.extended.core
Bundle-Version: 9.9.9
Bundle-Vendor: CORTICON
Bundle-RequiredExecutionEnvironment: JavaSE-1.7,JavaSE-1.6,J2SE-1.5
Export-Package: .,
com.acme.extended.operators
Bundle-ActivationPolicy: lazy
Require-Bundle: com.corticon.services,
com.corticon.legacy,
com.corticon .thirdparty,
org.eclipse.core.runtime
Eclipse-RegisterBuddy: com.corticon.legacy,
com.corticon.thirdparty
Bundle-ClassPath: .

b] Place the generated jar (com.corticon.eclipse.studio.operations.extended.core_9.9.9) in CORTICON_HOME\Studio\eclipse\plugins folder.

c] Close Studio and open it again.

- Jan

[collapse]
From: rteixeir [mailto:bounce-rteixeir@community.progress.com]
Sent: Friday, March 20, 2015 10:25 AM
To: TU.Corticon@community.progress.com
Subject: RE: [Technical Users - Corticon] Extention Plug-in missing in configurarion list - Eclipse
 
Reply by rteixeir

Hi, Jan,

Thanks for the fast Reply,

So, follow the MANIFEST.MF

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Core
Bundle-SymbolicName: com.corticon.eclipse.studio.operations.core
Bundle-Version: 5.3.1
Bundle-Vendor: CORTICON
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Require-Bundle: org.eclipse.core.runtime,
 com.corticon.legacy,
 com.corticon.services,
 com.corticon.thirdparty
Export-Package: .,
 com.acme.extended.operators
Eclipse-RegisterBuddy: com.corticon.legacy


plugin .jar name: com.corticon.eclipse.studio.operations.extended.core_5.3.1

I'm using Corticon 5.3 Studio

Thank you, so much

Stop receiving emails on this subject.

Flag this post as spam/abuse.

Stop receiving emails on this subject.

Flag this post as spam/abuse.

[/collapse][/collapse]

Posted by Chris S. Hogan on 20-Mar-2015 09:54

The plugin can be loaded properly, but simply not showing up in the list of operators if you have not created an entry in the ExtendedOperators.operationsmodel file.
 
You can test by manually typing in your operator in a condition cell:
ICcStandAloneTest.isTrue
 
If it doesn’t turn red, that means Studio recognized it, and will properly execute the logic. Please refer to the Extensions doc on how to modify ExtendedOperators.operationsmodel.
 
If it turns red, then the plugin was not properly loaded, and further debugging is needed.
 
Christopher S. Hogan
Principal Systems Engineer

Progress

PHONE 646-201-4123
MOBILE 646-243-4282
www.progress.com
Twitter
Facebook
LinkedIn
Google+
 
 
[collapse]
From: Jan Krishnamurthy [mailto:bounce-jkrishna@community.progress.com]
Sent: Friday, March 20, 2015 10:43 AM
To: TU.Corticon@community.progress.com
Subject: RE: [Technical Users - Corticon] Extention Plug-in missing in configurarion list - Eclipse
 
Reply by Jan Krishnamurthy

a] Regenerate the plugin.jar with the MANIFEST.MF below:

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Extended Operator Core Plug-in
Bundle-SymbolicName: com.corticon.eclipse.studio.operations.extended.core
Bundle-Version: 9.9.9
Bundle-Vendor: CORTICON
Bundle-RequiredExecutionEnvironment: JavaSE-1.7,JavaSE-1.6,J2SE-1.5
Export-Package: .,
com.acme.extended.operators
Bundle-ActivationPolicy: lazy
Require-Bundle: com.corticon.services,
com.corticon.legacy,
com.corticon .thirdparty,
org.eclipse.core.runtime
Eclipse-RegisterBuddy: com.corticon.legacy,
com.corticon.thirdparty
Bundle-ClassPath: .

b] Place the generated jar (com.corticon.eclipse.studio.operations.extended.core_9.9.9) in CORTICON_HOME\Studio\eclipse\plugins folder.

c] Close Studio and open it again.

- Jan

[collapse]
From: rteixeir [mailto:bounce-rteixeir@community.progress.com]
Sent: Friday, March 20, 2015 10:25 AM
To: TU.Corticon@community.progress.com
Subject: RE: [Technical Users - Corticon] Extention Plug-in missing in configurarion list - Eclipse
 
Reply by rteixeir

Hi, Jan,

Thanks for the fast Reply,

So, follow the MANIFEST.MF

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Core
Bundle-SymbolicName: com.corticon.eclipse.studio.operations.core
Bundle-Version: 5.3.1
Bundle-Vendor: CORTICON
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Require-Bundle: org.eclipse.core.runtime,
 com.corticon.legacy,
 com.corticon.services,
 com.corticon.thirdparty
Export-Package: .,
 com.acme.extended.operators
Eclipse-RegisterBuddy: com.corticon.legacy


plugin .jar name: com.corticon.eclipse.studio.operations.extended.core_5.3.1

I'm using Corticon 5.3 Studio

Thank you, so much

Stop receiving emails on this subject.

Flag this post as spam/abuse.

Stop receiving emails on this subject.

Flag this post as spam/abuse.

[/collapse][/collapse]

Posted by rteixeir on 20-Mar-2015 12:07

Thanks for everyone for reply quickly.

Nothing works. The plugin was not recognize by the studio.

I'll try to re install Corticon Studio and add the plugin again.

Thanks again

Posted by Jan Krishnamurthy on 20-Mar-2015 12:46

Running Studio as administrator resolved the issue and the plugins are recognized in studio

This thread is closed