Hi,

On Dec 7, 2007 10:58 AM, Niclas Eklöw <[EMAIL PROTECTED]> wrote:
> .fix file. When I look in firebug it is empty under the post tab, I cant
> See any request there.

Hm. Strange. But after some investigation I found out that this is
because we do not send the POST body as string, but as DOMDocument.

So either you turn Geoserver to the highest log level and look at the
requests in the server log, or you modify lib/model/ModelBase.js to
send a string instead of a DOM document: In the current trunk version,
this is line 239:

xmlHttp.send(objRef.postData);

Change this to

var postData = objRef.postData ? new
XMLSerializer().serializeToString(objRef.postData) : "";
xmlHttp.send(postData);

Regards,
Andreas.

-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Mapbuilder-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mapbuilder-users

Reply via email to