Skip to content
peacekeeper edited this page Mar 2, 2012 · 29 revisions

Implementation of an XDI server capable of responding to messages from XDI clients.

An XDI server is backed by one or more XDI messaging targets, which in turn are typically backed by XDI graphs.

The XDI server can be configured with the file WEB-INF/applicationContext.xml, e.g.:

<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:util="http://www.springframework.org/schema/util" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd">

<bean id="graphfactory1" class="xdi2.core.impl.memory.MemoryGraphFactory" />

<bean id="graph1" factory-bean="graphfactory1" factory-method="openGraph" />

<bean name="/mem-graph" class="xdi2.messaging.target.impl.graph.GraphMessagingTarget">
	<property name="graph" ref="graph1" />
</bean>

</beans>
Clone this wiki locally