tags:

views:

579

answers:

2

Hi everybody,

I'm working on a tool in C# that interfaces the JIRA SOAP API. I have read the documentation but I can't find what I'm looking for. Does anyone know if it is possible to link an issue to another one via this api?

PS : Actually, my real need is to convert an issue as a subtask of an issue...

+1  A: 

Last time I looked, JIRA's web service wasn't really actively supported or encouraged by Atlassian. It's very much a second-class citizen compared to the web front end, with very basic operations.

Also, it's not a WSI-compliant web service (it's an old Axis-based RPC_encoded service), and so modern web service stacks won't even bind to it. You might want check that your client can perform basic query operations before diving into the depths of the API.

skaffman
hmm after a quick look on some other sites, I'm affraid you're right... it seems that I won't be able to go very far with this API...
PierrOz
we may have a start of solution here: http://jira.atlassian.com/browse/JRA-6896
PierrOz
A: 

You can actually go pretty far with Jelly scripts, but converting an issue to a subtask then linking it as a subtask... I'm not positive that you can go that far.

Brian