Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Remote page creation for confluence using jira script runner plugin.

Nagmani Nagmani January 24, 2012

import org.swift.common.soap.confluence.ConfluenceSoapServiceServiceLocator

def locator = new ConfluenceSoapServiceServiceLocator()

def service = locator.getConfluenceserviceV2(new URL(“http://localhost:8090/confluence/rpc/soap-axis/confluenceservice-v1″))

def token = service.login(“admin”, “password”)

def page = new RemotePage (

content: “groovy_working”,

creator: “admin”,

title: “groovy”,

space: “groovy”,

homePage: false,

created: Calendar.getInstance(),

modifier: “admin”,

version: 1,

modified: Calendar.getInstance(),

)

service.storePage(token, page)

I am using the above code where I need to create automatic page in confluence for a project for any issue created under that project in JIRA.

I have downloaded groovyrunner plugin. and I could use the script runner plugin in my JIRA successfully . But whenever I am trying to run the above code I am getting result as ”

org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed: Script3.groovy: 7: unable to resolve class RemotePage @ line 7, column 12. def page = new RemotePage ( ^ 1 error “….
The URL above corresponds the one of the confluence on my local server

1 answer

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 24, 2012

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events