Search found 25 matches

by mdoerschmidt
Fri Jun 13, 2014 12:56 pm
Forum: Using OpenEMM
Topic: Webservice API 2 - not trackable links by default
Replies: 2
Views: 4477

Re: Webservice API 2 - not trackable links by default

Hi,

there is currently no possibility, to change settings of links by webservice.
The only way to make a link not trackable is to log in to web UI and change link settings manually.


Best regards,

Markus
by mdoerschmidt
Tue May 27, 2014 8:29 am
Forum: Development
Topic: SOAP client 404 - not found
Replies: 1
Views: 9911

Re: SOAP client 404 - not found

Hi!

You are using the wrong namespace for the webservice call. Change the namespace "http://agnitas.com/..." to "http://agnitas.org/...".


Best regards,

Markus
by mdoerschmidt
Fri Apr 25, 2014 7:15 am
Forum: Development
Topic: Plugin development (extension)
Replies: 1
Views: 9684

Re: Plugin development (extension)

Currently, plugins can only access Spring context of the core system (through arguments of EmmFeatureExtension.setup() and EmmFeatureExtension.invoke()). Plugins itself can not modify / extends the application context.
by mdoerschmidt
Fri Apr 25, 2014 7:05 am
Forum: Development
Topic: Label defined messages-plugin.properties accessible from JSP
Replies: 2
Views: 11339

Re: Label defined messages-plugin.properties accessible from

It's not possible to use message keys from plugins that way, because different plugins can define the same message key. The only way to resolve message key from plugins is the <message> tag defined in our own taglib. The taglib is part of the OpenEMM installation. After defining the taglib prefix <%...
by mdoerschmidt
Thu Mar 20, 2014 10:10 am
Forum: Using OpenEMM
Topic: Webservices 2.0 - how to activate?
Replies: 3
Views: 5370

Re: Webservices 2.0 - how to activate?

The webservices 2.0 are deployed as a separate application. There is one little thing to configure: In file openemm-ws/WEB-INF/classes/emm-ws.properties there is a property named "wsdlLocationUri". The value of this property has to be set according to the domain name, you're using for your...
by mdoerschmidt
Mon Nov 25, 2013 9:43 am
Forum: Bugs, bug fixes & releases
Topic: Soap ListSubscriberBinding returns only one item
Replies: 7
Views: 14135

Re: Soap ListSubscriberBinding returns only one item

Hi Yuna,

I checked the webservice method ListSubscriberBindings. My recipient has 3 bindings on different mailing lists. Calling ListSubscriberBinding returns all 3 bindings.

Which version of OpenEMM do you use?


Best regards,

Markus
by mdoerschmidt
Tue Jul 02, 2013 7:11 am
Forum: Bugs, bug fixes & releases
Topic: disconnection web interface
Replies: 2
Views: 6558

Re: disconnection web interface

Hi Damien, the problem here is, that requests with same session ID came from different IP addresses. Maybe your users are behind proxies. You can either add affected IP addresses to a whitelist, or remove the entire filter from filter chain. In WEB-INF/web.xml the filter is defined like that: <filte...
by mdoerschmidt
Thu Apr 04, 2013 11:03 am
Forum: Using OpenEMM
Topic: Problem with AddSubscriber via WebServices 2.0
Replies: 3
Views: 4402

Re: Problem with AddSubscriber via WebServices 2.0

Hi! Doing webservices in PHP could be tricky some time... There are two problems: 1. Unlike other programming languages (like Java), PHP cannot infer datatypes in some cases, so the developer has to do more work here. That's a common problem. 2. The OpenEMM webservices define a map-type, that uses a...
by mdoerschmidt
Tue Apr 02, 2013 9:37 am
Forum: Development
Topic: Image with AddContentBlock in Webservice API 2.0
Replies: 2
Views: 5962

Re: Image with AddContentBlock in Webservice API 2.0

Hi! The error is caused by a missing Jar file: commons-codec-1.3.jar. You can download this file here: https://sourceforge.net/projects/openemm/files/OpenEMM%20software/OpenEMM%202013/Bugfixes/ Please copy the file to WEB-INF/lib/ of your OpenEMM webservice installation directory and restart your se...
by mdoerschmidt
Fri Jan 04, 2013 9:04 am
Forum: Development
Topic: Adding asubscriber in openemm 2012 beta3 in php via SOAP
Replies: 3
Views: 30230

Re: Adding asubscriber in openemm 2012 beta3 in php via SOAP

PHP does not add type information to the SOAP request. In most cases, this is no problem. For any data, that has type "Map", type information is required for keys and values. If type information is required, you have to add it manually. Try this one: $profile = array( array( "key"...