But I want to get the license info of another IP studio from my own studio through code
- Log in to post comments
But I want to get the license info of another IP studio from my own studio through code
Try this.png)
HI,
I tried another way of writing, maybe it's what you need
.png)
.png)
.png)
HI,
Perhaps it needs to be replaced with 'EDTweb. EDTwebsoap'
.png)
HI,
Perhaps the following methods can be considered
w ##class(%SYSTEM.Util).CreateGUID()
w $system.Encryption.GenCryptToken()
w $system.Encryption.GenCryptRand(20,0)
w $system.Encryption.Base64Encode($system.Encryption.GenCryptRand(20,0),1)
The jwt on the second image you provided seems to be also an incorrect verification
.png)
I think your modified jwt is the correct one (also requires base64url encoding, no final=)
.png)
This method can be used for baseURL encoding
$$$BASE64URLENCODE(token)
try this
call %Library.Global_Get('%SYS','^xxxx')
.png)
Does your ESBCHUIMI client class have the following code?
.png)
I think there may be an issue with the namespace of the header class. Perhaps you can modify or copy a new header class and modify its namespace to http://SCS.Servicios/SIPRESatelites
like this
.png)
Is Your class extend % CSP.REST? OR extend EnsLib.REST. Service?
HI
What is the value of %request.ContentType
HI,
I think maybe we can give it a try like this
set temp=$o(%request.Data(""))
while temp'=""
{
w temp,":",%request.Data(temp,1),!
set temp=$o(%request.Data(temp))
}
Quit $$$OK
.png)
HI
I think the score for IPM needs to be added to fhirmessageverification
HI,
thank you for reminding me that I have updated my package. Please note that it needs to be installed in a namespace with fhir server installed
this
.png)
Sorry to bother you again. I just finished it survey ,thanks
set bii=$p(pStreamIn.GetAttribute("content-type"),"=",2)
set message=##class(%Net.MIMEPart).%New()
set reader=##class(%Net.MIMEReader).%New()
Do reader.OpenStream(pStreamIn)
set a=0while a'=1
{
Set sc=reader.readHeader(.message,1)
Set sc=reader.readBody(message,bii,.a)
$$$LOGINFO(message.GetHeader("Content-Type"))
$$$LOGINFO($p(message.GetHeader("Content-Disposition"),"""",2))
$$$LOGINFO(message.Body.Read())
}If you send three inputs, what does the printed log look like