Questions tagged [isis]

Java framework for rapid development of domain driven applications

Apache Isis is a Java framework for rapidly developing domain driven applications.

Write your business logic in entities, domain services and repositories, and the framework dynamically generates a representation of that domain model as a webapp or a RESTful API.

For prototyping or production.

106 questions
1
vote
1 answer

Uploading a File to Apache ISIS Server through RESTService (not WicketViewer)

I want to upload a File to my Apache ISIS Webserver. At the moment I convert the File to a String first and send this String to the RESTService. But I figured out that Apache ISIS allocates a lot of java memory space for each of the Strings (the…
riedelinho
  • 404
  • 1
  • 5
  • 15
1
vote
1 answer

Apache Isis: How to change Alt-Attribute of brandLogoHeader and brandLogoSignin?

According to this page of the Apache ISIS documentation, one can configure own images for brandLogoHeader and brandLogoSignin. However, the Alt-Attribute of the resulting img-Elements default to the value Brand. I'd like to not just adjust the…
HumanInDisguise
  • 1,335
  • 4
  • 17
  • 29
1
vote
1 answer

Is ReferentialJDOStateManager not used in DataNucleus 4.x?

I'm working with Apache Isis, attempting to update to DN 4.x but have a question about the ReferentialJDOStateManager in DataNucleus. The JDOStateManager extended this class in DN 3.x but it is not present in DN 4.x Affected class in Isis…
Jeremy
  • 2,970
  • 1
  • 26
  • 50
1
vote
1 answer

Angularjs - Combining data from multiple $http calls in a for loop

I am having problems combining the data from multiple $http call and displaying a list in an HTML table. There is a first $http call, which returns a set of URLS. Then, I iterate through the URL list and make multiple $http calls in the loop. Each…
Mega
  • 1,304
  • 5
  • 22
  • 37
1
vote
1 answer

Apache Isis vs JSON Presentation

I am working on building a sample web application for proof of concept - with a link of some sort on an html page consuming a restful web service via a json object and displaying the data on the web page . Something like the Apache Isis todo…
Mega
  • 1,304
  • 5
  • 22
  • 37
1
vote
1 answer

How to get record from table row number between 20 to 30 with jdo query in Apache ISI

I am trying to get record's from records 20 to 30. I have return jdo query which look like @javax.jdo.annotations.Queries( { @javax.jdo.annotations.Query( name="message_getByUsername", language="JDOQL", value="SELECT FROM…
1
vote
1 answer

how can we create new apache isis project in eclipse IDE?

Hey i am new in APACHE ISIS. I am creating small application with making changes in ISIS demo application. can anyone tell me how to create new ISIS project in eclipse IDE?
Hiten Chauhan
  • 31
  • 1
  • 6
0
votes
1 answer

Calculate IS-IS Link State PDU (LSP )Checksum in Python

I am trying to calculate the checksum of an IS-IS LSP (Link State PDU) by using Python but the end result is not matching the expected checksum. With regards to the checksum I am referring to the ISO Here below is the Python code: LSP PDU in…
0
votes
1 answer

Apache Isis Action to list entities is too slow, found 2 issues/questions on it

Use demo app PetClinic as an example. Only focus on PetOwner, no other entities. Some pet owners are pre-inserted to the db. The action "listAll" in the demo: @Action(semantics = SemanticsOf.SAFE) @ActionLayout(bookmarking =…
Hao
  • 1
  • 1
0
votes
1 answer

ISIS error protobuf in Fedora 35 OS (Protocol Buffer runtime library)

I am new to ISIS. When I run the ./qview application the following error display. [libprotobuf FATAL google/protobuf/stubs/common.cc:68] This program requires version 3.9.0 of the Protocol Buffer runtime library, but the installed version is 3.5.1. …
0
votes
1 answer

how to invoke rest api with domain object parameter

I wrote a service action look like @DomainService( nature = NatureOfService.VIEW_REST_ONLY, objectType = "rest.oneService" ) onepackage.OneService{ @Action(semantics = SemanticsOf.SAFE) public List findDataByPerson(Person…
James
  • 3
  • 3
0
votes
1 answer

Something in web.xml of my Apache Isis Project is disabling aspects of tomcat security (HSTS and Clickjacking)

I have my tomcat (v8) configured to globally use strict transport security (HSTS) and prevent clickjacking (in /opt/tomcat/conf/web.xml): httpHeaderSecurity
Stefan Wegener
  • 726
  • 1
  • 10
  • 25
0
votes
1 answer

sidebar width too short to display datetimepicker

How can i solve this situation?
ELDiDi
  • 11
0
votes
1 answer

Apache Isis - Security Module Realm

I am trying to configure the security of Apache Isis as "Security Module Realm", I did everything that comes in the documentation but I am getting the following error: 631047 22:18:37,461 [IsisTransaction qtp246168102-19 INFO ] abort…
Luis
  • 1
0
votes
1 answer

Problem when executing report ".jasper" in Apache ISIS

The execution of the method "ReporteListadoVehiculos()" only displays up to the line "JasperPrint j = JasperFillManager.fillReport(report, null, conectar());", and apparently there's an error that avoids continuing the execution. How can I find the…