Okt
20
2010
0

Integrating CKFinder into your symfony Application

When integrating CKEditor and CKFinder into your symfony application, you have to modify the ckfinder/config.php-file, to check if the user has the permissions to use the CKFinder als file-browser.

It's that easy (we asume, CKFinder is located in /web/js/ckfinder):

function CheckAuthentication()
{
require_once(dirname(__FILE__).'/../../../config/ProjectConfiguration.class.php');
$configuration = ProjectConfiguration::getApplicationConfiguration('yourApplicationName', 'prod', false);
$context = sfContext::createInstance($configuration);

if ($context->getUser()->functionToCheckPermission())
return true;
else
return false;
}

So finally you just have to implement a method in your myUser.class.php-file, that checks whether the user may or may not use CKFinder!

Jul
06
2010
0

Attack Scenarios for possible Misuse of Peripheral Parts in the German Health Information Infrastructure

Recently the follow-up to my first paper was published. Hence, number three is again about the German Health Insurance Card's usage in physicians' practices.

Sunyaev, A.; Kaletsch, A.; Duennebeil, S.; Krcmar, H. (2010): Attack Scenarios for possible Misuse of Peripheral Parts in the German Health Information Infrastructure. In: Proceedings of the 12th International Conference on Enterprise Information Systems (ICEIS 2010). Funchal, Madeira - Portugal, 8 - 12 June, 2010. Volume DISI, pp. 229-235.

Abstract:

This paper focuses on functional issues within the peripheral parts of the German health information infrastructure, which compromise security and patient’s information safety or might violate law. Our findings demonstrate that a misuse of existing functionality is possible. With examples and detailed use cases we show that the health infrastructure can be used for more than just ordinary electronic health care services. In order to investigate this evidence from the laboratory, we tested all attack scenarios in a typical German physician’s practice. Furthermore, security measures are provided to overcome the identified threats and questions regarding these issues are discussed.

Download PDF here

Again, enjoy reading - I'm looking forward to your comments!

Written by in: Allgemein |
Jan
29
2010
0

Comparative Evaluation of Google Health API vs. Microsoft Healthvault API

Based on research, which I did last year in spring, my second paper was recently published.

Sunyaev, A.; Kaletsch, A.; Krcmar, H. (2010): Comparative Evaluation of Google Health API vs. Microsoft Healthvault API. In: Proceedings of the Third International Conference on Health Informatics (HealthInf 2010), January 20-23, 2010, Valencia, Spain, pp. 195-201.

Abstract:

Electronic Health Records (EHR) offer patients the opportunity to access their own medical records. Google and Microsoft recently extended their public services by introducing internet-based personal healthcare information platforms – Google Health and Microsoft HealthVault. Over one hundred thousand people have registered at the two services since they were launched. Both companies invite other for-profit companies as well as non-profit organizations to participate in the design, development, and distribution of their own healthcare-related applications. Such applications are based on the free accessible EHR systems of Google and Microsoft and provide further benefits to patients. Due to its simplicity and usability, an API design could determine the variety of value-added applications developed and thus be essential for the commercial success (and potential market dominance) of one of these EHR systems. This work examines and compares the designs of Google Health API and Microsoft HealthVault API. Such an evaluation provides benefits for both research and practice: on the one hand, the results provide an overview of the different open API designs, and, on the other hand, the results provide the developer community with useful lessons learned from comparing the examined APIs.

Download PDF here

Enjoy reading, I'm looking forward to your comments!

Okt
21
2009
0

Luebbe-Store.de launched

luebbe_store_logo

The Luebbe-Store for audio books has been launched and presented at "Frankfurt Book Fair" this year. If you like to listen to Dan Browns new bestseller "The Lost Symbol", just ride on to www.luebbe-store.de!

Written by in: Allgemein,Projekte | Schlagwörter: ,
Sep
23
2009
0

(Ab-)using Smarty cache in order to load Websources into own Webpage

This article discribes an easy way to cache data received from other websites in order to improve the performance of one own's site. The method was successfully tested on alexander-kaletsch.de (blog) and birgit-kaletsch.de (kurse-detail).

Theory: Download Websource only after cache got invalid.

First you have to create a dummy template: _cache.tpl

{$cache}

The index.php:

require_once("Smarty/Smarty.class.php");

$smarty = new Smarty();

$smarty->compile_dir     = "_comp/";
$smarty->template_dir     = "tpl/";
$smarty->cache_dir        = "_cache/";
$smarty->cache_lifetime = 60*60; // 1h

$smarty->caching = 2;

if(!$smarty->is_cached("_cache.tpl", "blog")){
$smarty->assign("cache", file_get_contents("http://www.patworx.de/blog/index.php"));
}

echo $smarty->fetch("_cache.tpl", "blog");

if(!$smarty->is_cached("_cache.tpl", "ak")){
$smarty->assign("cache", file_get_contents("http://www.alexander-kaletsch.de/"));
}

echo $smarty->fetch("_cache.tpl", "ak");

Written by in: Allgemein |
Aug
04
2009
0

soforthoeren.de – now relaunched!

sofort-Portale

As some of you may have already noticed: the download-portal soforthoeren.de has been relaunched!
Now you can have a look at the two brand-new areas "sofortsehen" (video-on-demand) and "sofortlesen" (eBooks).

Jun
03
2009
0

“Perry-Store.de” now online!

If you like Perry Rhodan and audiobooks, just have a look at www.perry-store.de, which has been design by patworx multimedia!
Hope you like it!

Mai
03
2009
0

“hauser-writing.com” launched!

logohauserwritinggermany

In cooperation with AMJ agentur meixner : jaeckel (www.amj-studios.com) the new website of Hauser Writing has been created and launched at www.hauser-writing.com!

Apr
22
2009
1

IE6 – Upgrade warning!

You are tired of optimizing websites for Internet Explorer 6? Well, if you are able to afford it, you can simply use this small script to show IE6-users a tiny warning:

IE6 - Out of Date

IE6 - Out of Date

http://code.google.com/p/ie6-upgrade-warning/

:-)

Apr
21
2009
0

Project “die-bauberater24.de” finished!

Die Bauberater 24

Not only the logo has been redesigned, but the website went online at www.die-bauberater24.de, too!

Powered by WordPress | Theme: Aeros 2.0 by TheBuckmaker.com