Posts

Getting start contributing with pentaho kettle and solve a problem related to that

Image
0 I downloaded pentaho kettle master source code from github and tried to open project with eclipse on linux fedora 28. I have 2 questions: 1- What are these errors messages when I load pentaho project: Plugin execution not covered by lifecycle configuration: org.pentaho.maven.plugins:license-helper-maven-plugin:1.27:check-license (execution: check-license, phase: validate) This error occurs on almost 100% of pom.xml files. In this example the file is on aggregate-rows_core/pom.xml Eclipse gives me some options in order to fix this specific problem, example : 3 quick fixes available Discover new m2e connectors Mark goal check-license as ignored in pom.xml Mark goal check-license as ignored in eclipse preferences I have already installed Maven 3. What is these errors and what a I need...

REST API replies on localhost but not machine name or IP

Image
0 I have a ASP.Net WebAPI2 REST API running on a Windows 2012 R2 server, on IIS 8. When I run calls against on the server using localhost, everything works. However, if I try to call the API using the machine name or the IP I get the error: ERR_CONTENT_DECODING_FAILED. I can however browse the webfront of the API using machine name/IP address. So in short: http://localhost/MY_API -> browsing works http://MACHINE_NAME_OR_IP/MY_API -> browsing works http://localhost/MY_API/api/items -> API call works http://MACHINE_NAME_OR_IP/MY_API/api/items -> API call fails with ERR_CONTENT_DECODING_FAILED All calls are made from the server hosting the API. ASP.Net 4.5 is installed on IIS and I've also checked that the firewall is open for http. I'm not sure where to start with this, so g...