Vikram Annadurai · Dec 21, 2019 go to post

Thanks for your reply Julius,

But the getPet() is accessing the DB query using SpringBoot. The findAll() method return only  List type not String type.

So, do you have any other ideas.  If yes, Please let me know.

Vikram Annadurai · Dec 20, 2019 go to post

Okay, Thanks Alex.

If any other possible to view that table records , please let me know.

Thanks,

Vikram

Vikram Annadurai · Dec 19, 2019 go to post

Oops!!!, 

I connected the Cache from Power BI using ODBC connection. And I can able to view the tables but I could't able to view the data records. getting some error when I shoot on the table name. I could't trace what I'm missing. Please help me

Error Message: "Value cannot be null. Parameter name: exceptionType"

 

Thanks,

Vikram

Vikram Annadurai · Sep 12, 2019 go to post

Hi Benjamin,

No, I am not running an Intersystems IRIS server

I am new to Intersystems IRIS platform, So I need to know  Where I can run the IRIS code and Where is the IRIS DB. And how can I find those things.(like cache studio, management portal,and so on...)

Your guidance would be helpful for me.

Best 

Vikram 

Vikram Annadurai · Aug 31, 2019 go to post

Fairytale bliss!!!

Now I got my expected output..smiley

Solution: I don't have license. But also I can run our Rest API in postman.

         "Our studio should be closed while testing our code on postman"

It is working fine for me angel

Thanks for your Support.

Vikram Annadurai · Aug 10, 2019 go to post

Thanks Sourabh,

Its a wonderful idea. This make me a different way of thinking.

Thanks a lot....laugh

Vikram Annadurai · Jul 17, 2019 go to post

Hi David,

Thanks for ur Comment.

           I have a license problem, That's why I am getting that error.

Vikram Annadurai · Jul 17, 2019 go to post

Hi Eduard,

CROSRestAPI.cls:

Class User.CROSRestAPI Extends %CSP.REST
{
Parameter CHARSET = "utf-8";
Parameter CONTENTTYPE = "application/json";
XData UrlMap [ XMLNamespace = "http://www.intersystems.com/Urlmap]
{
<Routes>
<Map Prefix="user/coffee" Forward="User.CROSRestAPI"/>
<Route Url="/CoffeeMaker" Method="POST" Call="CreateCoffee"/>
<Route Url="/CoffeeMaker:id" Method="PUT" Call="UpdateCoffee"/>
</Routes>
}
ClassMethod CreateCoffee() As %Status
{
CoffeeProp = ##class(User.PropertyName).%New()
CoffeeProp.CoffeeName=%request.Data(CoffeeName)
CoffeeProp.CoffeeColor=%request.Data(CoffeeColor)
CoffeeProp.CoffeePrice=%request.Data(CoffeePrice)
Status = CoffeeProp.%Save()
}
}

And I have a complete version of Cache.