Questions tagged [amdatu]

Amdatu is an open source community effort focussed on bringing OSGi to the cloud. It contains components to create RESTful, scalable and distributed web applications that use NoSQL data stores, transparent multi-tenancy and much more.

Amdatu is an open source community effort focussed on bringing OSGi to the cloud. It contains components to create RESTful, scalable and distributed web applications that use NoSQL data stores, transparent multi-tenancy and much more.

Amdatu (http://amdatu.org/) is designed to be modular; you only use the components that you actually need for your application. You can use Amdatu components in any OSGi application, no matter how you build it. Following the Amdatu Way however you get a streamlined development and production flow which has been proven to work well. If you are new to OSGi you should have a look at the getting started guides provided on the Amdatu website that will show you the Amdatu Way. If you have an existing application and are just looking for useful components, take a look at the components available.

24 questions
2
votes
0 answers

OSGi Felix: secure REST resources through annotations

I'm developing an OSGi-based Web application that exposes several REST resources. To do so, I exploited two packages of Amdatu project, namely org.amdatu.web.rest.jaxrs and org.amdatu.web.rest.wink. The system works well, but now I have to solve…
2
votes
2 answers

Maven Amdatu Bundle Remote Repository

I'm new to OSGi and Amdatu and I'm using OSGi with Maven. Usually I import bundles like this sudo mvn pax:import-bundle -DgroupId=org.eclipse.jetty.osgi -DartifactId=jetty-osgi-boot -Dversion=9.1.3.v20140225 In upper case importing works great…
danijelf
  • 110
  • 7
1
vote
1 answer

Amdatu Web using Jersey

Amdatu web uses apache wink to create restful web app in OSGi. Recently the Apache Wink project retired - I don't know exactly why. My question is: Can I use apache web for my production OSGi application? is the RETIRED apache wink with in amdatu…
Mohammad Hassany
  • 898
  • 1
  • 14
  • 30
1
vote
2 answers

OSGi, Amdatu REST example doesn't work

I am trying to run an Amdatu REST example, I have created a project with bndtools, then I have used the amdatu bootstrap to add dependencies both the project itself and to the run descriptor. I have annotated my class with @Path and…
Mohammad Hassany
  • 898
  • 1
  • 14
  • 30
1
vote
1 answer

Merging an existing object does not update the changed @Embedded in the database

I am using the Amdatu implementation of Eclipselink for OSGI compatibility. Can anyone spot why this is not working? The class below is defined as an Entity and should be persisted. Every time an update is made to the Ptz2PlPalletUnloadOrder, the…
Wafje
  • 103
  • 1
  • 6
1
vote
1 answer

Amdatu: How to make ExceptionMapper (@Provider) to work?

I'm trying to manage all my exceptions with an ExceptionMapper, as i saw in multiple documentation and examples. However, it doesn't seem to work, at least in my conditions. I'm in a OSGI environment, using the Felix Witheboard pattern, with Amdatu…
JSlain
  • 566
  • 3
  • 20
1
vote
2 answers

OSGi two dependency chains - cannot resolve dependencies

We're using OSGi for a rest application using bdntools and eclipse. We've deployed the application and everything is working OK. The run descriptor we were using was OK, but we've copied the run requirements to a new run descriptor and now we are…
user1403385
1
vote
2 answers

HttpServletRequest is not visible from class loader

I'm trying to run Apache Wink in OSGI and using Felix Whiteboard register resources as services. In a minimalist OSGI environment the bundle works as expected. But, then I moved the bundle into an Eclipse Equinox environment where I am developing…
harschware
  • 13,006
  • 17
  • 55
  • 87
0
votes
1 answer

Amdatu rest example doesn't work?

I have created a bnd-workspace with amdatu-bootstrap jar file. Then created a testing rest project and a bnd run descriptor file to test it. When I run the the run descriptor file and navigated to http://localhost:8080/test, I faced 404 page…
Mohammad Hassany
  • 898
  • 1
  • 14
  • 30
0
votes
2 answers

Get osgi service reference from pure osgi bundle in Liferay portlet

I have successfully register the org.amdatu.mongo service in apche felix like shown below, Bundle is shown below which export the service which is in active/running state. Now I want to use this service in my portlet and I have return below code, …
Abhishek Suthar
  • 674
  • 1
  • 8
  • 27
0
votes
1 answer

Apache felix osgi unable to export package

I have below set up in manifest.mf file, Manifest-Version: 1.0 Bnd-LastModified: 1359719312904 Bundle-Activator: org.amdatu.mongo.impl.Activator Bundle-ManifestVersion: 2 Bundle-Name: org.amdatu.mongo Bundle-SymbolicName:…
Abhishek Suthar
  • 674
  • 1
  • 8
  • 27
0
votes
0 answers

adding third party osgi bundle org.amdatu.mongodb as dependencie for compile

I have installed org.amdatu.mongo.jar osgi bundle as well as its depedent bundles on apache felix. I am able to start it successfully.This basically export pacakge for using mongo service. Now I have another osgi bundle and I want to access/consume…
Abhishek Suthar
  • 674
  • 1
  • 8
  • 27
0
votes
2 answers

bnd osgi project not running through the Firefox

I just start learning how to build a bnd OSGI project. I try to run a very simple project without any error message,but when I go to localhost, it shows "HTTP ERROR: 404". the simple class: an Activator class: rest build dependencies Run…
xiao
  • 542
  • 1
  • 9
  • 16
0
votes
1 answer

Amdatu OSGI Event Handler time delay to listen when other listener are listening

I am using amdatu and using the osgi event listener for multiple bundle the issue is when i create more thread the event handler is working but its giving the response with time delay Example : I have 2 event listener one will do the VM creation JOB…
0
votes
1 answer

Amdatu OSGI Event Handler slow response

I am using amdatu and using the osgi event listener for multiple bundle the issue is when i create more thread the event handler is working but its giving the response with time delay So any know about this issue , say a fix
1
2