Skip to content

Instantly share code, notes, and snippets.

@dhaley
Created June 26, 2013 18:54
Show Gist options
  • Save dhaley/5870322 to your computer and use it in GitHub Desktop.
Save dhaley/5870322 to your computer and use it in GitHub Desktop.
org-jia backtrace
Debugger entered--Lisp error: (error "Error retrieving WSDL: 400")
signal(error ("Error retrieving WSDL: 400"))
error("Error retrieving WSDL: %s" 400)
soap-load-wsdl-from-url("https://cuboulder.atlassian.net/rpc/soap/jirasoapservice-v2?wsdl")
(setq jiralib-wsdl (soap-load-wsdl-from-url (if (string-equal jiralib-wsdl-descriptor-url "") (concat jiralib-url "/rpc/soap/jirasoapservice-v2?wsdl") jiralib-wsdl-descriptor-url)))
jiralib-load-wsdl()
(if jiralib-wsdl nil (jiralib-load-wsdl))
jiralib-login("foo" "foo")
call-interactively(jiralib-login)
(if jiralib-token nil (call-interactively (quote jiralib-login)))
jiralib-call-it("getProjectsNoSchemes")
apply(jiralib-call-it "getProjectsNoSchemes" nil)
(car (apply (quote jiralib-call-it) method params))
jiralib-call("getProjectsNoSchemes")
(setq jiralib-projects-list (jiralib-call "getProjectsNoSchemes"))
(if jiralib-projects-list jiralib-projects-list (setq jiralib-projects-list (jiralib-call "getProjectsNoSchemes")))
jiralib-get-projects()
(jiralib-make-list (jiralib-get-projects) (quote key))
(completing-read "Project: " (jiralib-make-list (jiralib-get-projects) (quote key)) nil t (car org-jira-project-read-history) (quote org-jira-project-read-history))
org-jira-read-project()
(list (org-jira-read-project) (org-jira-read-issue-type) (read-string "Summary: ") (read-string "Description: "))
call-interactively(org-jira-create-issue nil nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment