Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
  • Community
  • Q&A
  • Jira
  • Questions
  • Is there a place to set project description and maybe some notes about it that are not task dependant?

Attaching a text to jira issu VB

LostInMadness Forever
November 15, 2019

Hi, 

 

I am triing to send a txt file to a jira issue in VB.

I know, there are a alot of topic on, but i try all ad nothing works :/

I got a 200 ansmwer but nothing is attached.

 

This is my code

 

*********************************************************************************************

*********************************************************************************************

*********************************************************************************************

Public Function jiraSendFile(user As String, password As String, id As String, fileToUpload As String)


Dim oRequest As Object
oRequest = New WinHttp.WinHttpRequest
Dim data As String
Dim response As String
Dim status As String
Dim url As String
'Dim File As String

Dim file As New StreamReader(fileToUpload)

 

*******************************      LOGIN      *****************************************
data = "{""username"": """ & user & """,""password"": """ & password & """}"
url = "http://localhost:8080/rest/auth/1/session"
oRequest.Open("POST", url)
oRequest.setRequestHeader("Content-Type", "application/json")
oRequest.Send(data)
response = oRequest.ResponseText
status = oRequest.Status

 

 

*******************************      ATTACH      *****************************************

'data = fieldToUpdate
'File = fileToUpload

url = "http://localhost:8080/rest/api/2/issue/" & id & "/attachments"
oRequest.Open("POST", url)
oRequest.setRequestHeader("X-Atlassian-Token", "no-check")
'oRequest.setRequestHeader("Content-Type", "multipart/form-data; boundary=21b8f440a67b603ac60941ee")
oRequest.setRequestHeader("Content-Type", "multipart/form-data; boundary=----WebKitFormBoundaryyrV7KO0BoCBuDbTL")
oRequest.setRequestHeader("Content-Disposition", "form-data; name = ""file.txt""; filename = C:\Users\Guile\Documents\file.txt""")
oRequest.Send(file)


'oRequest.setRequestHeader("Content-Type", "application/json")
'oRequest.setRequestHeader("Authorization", "Basic")
'oRequest.setRequestHeader("Content-Type", "application/octet-stream")
'oRequest.setRequestHeader("Content-Disposition", File)
'oRequest.Send(file)

 

*******************************      ANSWER      *****************************************

response = oRequest.ResponseText
status = oRequest.Status

Result.Text = Result.Text & vbCrLf & vbCrLf & vbCrLf & vbCrLf & "Corps : " & data & vbCrLf & "Status : " & status & vbCrLf & "Réponse : " & response
Result.Update()
'MsgBox(test & vbCrLf & status & vbCrLf & vbCrLf & response)

File = Nothing
oRequest = Nothing

Return 0
End Function

*********************************************************************************************

*********************************************************************************************

*********************************************************************************************

 

Here the answer

*******************************      LOGIN      *****************************************

Corps : {"username": "GUILE","password": "XXXXXXX"}
Status : 200
Réponse : {"session":{"name":"JSESSIONID","value":"3E448B78F2922D246C2AB475E3014079"},"loginInfo":{"failedLoginCount":37,"loginCount":1426,"lastFailedLoginTime":"2019-10-01T13:53:32.368+0200","previousLoginTime":"2019-11-15T10:40:27.176+0100"}}

 

*******************************      ATTACH      *****************************************

Corps : {"username": "GUILE","password": "XXXXXXX"}
Status : 200
Réponse : []

 

 

I am really lost.. thank you !

2 answers

1 accepted

1 vote
Answer accepted
Sateesh Chandra
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 Champions.
August 5, 2015

Browse to Project Administration as project admin / JIRA admin . Click on Edit Project button. You can also use html in the description

1 vote
Robert Dzido _Almarise_
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 Champions.
August 5, 2015

Each project has its own description. It's visible in Summary Tab.

To edit this description go to project page (menu Projects -> select your project) and click cog icon in bottom left corner of the screen, then clik Edit project button (top right corner of the project administration screen).

 

Suggest an answer

Log in or Sign up to answer