- Log in to post comments
Hi,
As per my understanding "Native API" in IRIS is useful for cross platform like JAVA,Dot Net and Python technologies to exchange the data from IRIS instance,but I do not think any advantage of calling a class method of one IRIS instance from different instance of IRIS by using Native API.
- Log in to post comments
Hi All,
Sorry for the delay in response, I have been far to the computer for few days, that's why I could not respond on this.
Regarding this post, I have checked with our admin team they said that they keep last 2 days journal files after that those files will be purged. As per my understanding the global has been killed more than 10 days back , so I can't do anything to retrieve the global.
Thanks for all your replies, I will try all your suggestions just for my knowledge .
Regards,
Muni Ganesh G
- Log in to post comments
Hi Brian,
Could you please with below code.
----------------------------------------------------
Class Sample.TempUtil Extends %RegisteredObject
{
ClassMethod GetSecondUpperCase(pInput As %String) As %String
{
;w ##class(Sample.TempUtil).GetSecondUpperCase("GetSecondUpperCase")
SET stsrtpos=$LOCATE(pInput,"[[:upper:]]{1}",2)
SET endpos=$LOCATE(pInput,"[[:upper:]]{1}",(stsrtpos+1))
SET result=$EXTRACT(pInput,stsrtpos,(endpos-1))
quit result
}
}
----------------------------------------------------------------
Regards,
Muni Ganesh