Categories
- Android (47)
- Challenge of the month (16)
- Dirk Fauth (7)
- Eclipse (208)
- Java (12)
- Lars Vogel (18)
- Markus Kuppe (1)
- OSGi (6)
- Other (16)
- Papercut (14)
- Private (4)
- Servlet (2)
- Softskill Topics (5)
- Sopot Çela (3)
- vogella (25)
- Web (9)
vogella tutorial rss feed- Android application (performance and more) analysis tools - Tutorial
- Android Background Processing with Threads, Handlers and AsyncTask - Tutorial
- Debugging Android applications
- Using the Android action bar (ActionBar) - Tutorial
- Register for the Eclipse 4 application lifecycle - Tutorial
- Migrating Eclipse 3.x plug-ins and RCP applications to Eclipse 4 - Tutorial
- Android Installation
- Using FreeMarker Templates (FTL)- Tutorial
- Eclipse Fragment Projects - Tutorial
- Eclipse Products and Deployment - Tutorial
Home
Recommended
Twitter
-
Recent Posts
Category Archives: Web
Google App Engine and sending Emails
One of the nice things in the Google App Engine is that is it very easy to work with emails. You can send out and receive emails in your servlets. Lets demonstrate this by defining an application which allows the … Continue reading
Google App Engine and JPA
Using JPA on the Google AppEngine is straight forward. For some reason the documentation on the official Google App Engine side is not very easy to read therefore a little example here. Create a new web project “de.vogella.gae.persistence.jpa”. Change the … Continue reading
Build a “Management” Chat Bot in 5 steps with Google AppEngine
Google AppEngine provides very cool features. One of these features is the XMPP API, that allows you to write apps that can interact with users through XMPP clients, e.g. Jabber or GTalk. Here’s a quick description how to create a … Continue reading
Integration of SAP with the Google App Engine
Recently I though how I could integrate an SAP System which tends to be in a closed firewall where no access it granded from the outsite. The solution is actually quite easy. You can easily send our HTTP requests from … Continue reading
Making faces – How to display an image for all your blog comments
Have you ever wondered why some people have a friendly face when posting a blog comment while others seems to look quite anonymous? Here is one possible solution: Gravatar provides a service which allows you to use a single avatar … Continue reading
Posted in Eclipse, Softskill Topics, Web
4 Comments
Integrating Twitter via Java
This you want to integrate to Twitter from Java you can use the following library JTwitter. Try out the twitter integration with the following coding: Another Java Twitter Library is Twitter4J.
How can I use a Java jar file in a Grails application?
After banging my head against the wall in trying to find out how I can use Java class in a Grails application I found out that the solution is embarrassing simple. Just create a jar file from your Java classes … Continue reading
How to create a transparent background for an image with Gimp
The following will explain how to create an image with a transparent background with the freely available tool Gimp. GIF and PNG images can have transparent backgrounds. JPEG can not have a transparent background. Lets take the following example picture. … Continue reading
Posted in Web
Comments Off
Google App Engine – Low level API for storing objects
Google App Engine for Java permits three ways of storing your data: JDO, JPA and the low-level API. All data is ultimately stored in Bigtable. This blog post will give a little example how you can store data via the … Continue reading