Search found 26 matches

by odaata
Tue Dec 23, 2014 12:21 am
Forum: Common Problems
Topic: XMLRPC over SSL returns error: "peer not authenticated"
Replies: 6
Views: 3614

Re: XMLRPC over SSL returns error: "peer not authenticated"

I figured out what my problem was and I just wanted to update this post, in case others find it helpful... There was a problem on my server in the way that my SSL certificate was set up - I had neglected to install the root and intermediate certificates for my CA, which was causing the certificates ...
by odaata
Mon Dec 22, 2014 12:31 am
Forum: Common Problems
Topic: XMLRPC over SSL returns error: "peer not authenticated"
Replies: 6
Views: 3614

Re: XMLRPC over SSL returns error: "peer not authenticated"

Sorry to take so long to get back to this, but I've been traveling and just didn't have time... The port was indeed the problem - once I switched it, I stopped getting the 'peer not authenticated' error, and I'm now able to successfully connect over WebDAV, so that is working. However, I'm still get...
by odaata
Wed Dec 10, 2014 1:56 am
Forum: Common Problems
Topic: XMLRPC over SSL returns error: "peer not authenticated"
Replies: 6
Views: 3614

Re: XMLRPC over SSL returns error: "peer not authenticated"

Thanks for your help! I'm running it on Ubuntu 14.04. I've also tried turning that option on and I still get the same error. I also thought it might be the server config, so I tried it with and without http authentication on the exist xmlprc servlet, but no difference :-(
by odaata
Wed Dec 10, 2014 12:52 am
Forum: Common Problems
Topic: XMLRPC over SSL returns error: "peer not authenticated"
Replies: 6
Views: 3614

XMLRPC over SSL returns error: "peer not authenticated"

Hi, I recently set up an eXist XML DB server, proxied behind apache2 over HTTPS. I'm able to connect to the server with my web browser with no problem, but when I try to connect to the XMLRPC service with Oxygen, I get the HTTPS error: "peer not authenticated". The certificate I'm using is...
by odaata
Thu Mar 13, 2014 1:12 am
Forum: SDK-API, Frameworks - Document Types
Topic: Error during refresh of an AuthorNode
Replies: 3
Views: 2714

Re: Error during refresh of an AuthorNode

Thank you! That seems to have taken care of the problem. You should somehow mark those functions that require being run on the AWT thread in the documentation. I didn't realize I needed to run it that way. Which brings up my next question :-) Is there a better way to refresh the nodes after the unde...
by odaata
Tue Mar 11, 2014 8:44 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Error during refresh of an AuthorNode
Replies: 3
Views: 2714

Error during refresh of an AuthorNode

I've implemented my own StylesFilter to insert combo box with values from another file. I'm watching the other file for changes and refreshing the lists accordingly. In order to let Oxygen know that the list values have changed, I call the refresh(AuthorNode node) function on WSAuthorEditorPage. Her...
by odaata
Thu Feb 27, 2014 5:52 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Efficient CSS Tips
Replies: 2
Views: 2680

Efficient CSS Tips

I'm developing a framework for TEI, which has a complex data model, so my CSS is quite large and complicated. I've noticed that as the XML file grows in size the editor slows down quite a bit. I think it's because of the CSS: I've removed my custom Extension bundle from the framework and it doesn't ...
by odaata
Mon Feb 24, 2014 11:03 pm
Forum: SDK-API, Frameworks - Document Types
Topic: i18n for ${ask()} Variables
Replies: 4
Views: 3020

Re: i18n for ${ask()} Variables

Yes, that's exactly what I tried and it just returns the ${i18n(show.table.properties)} string instead of expanding it. Does that work for you in version 15.2? Maybe I had something incorrectly configured?

Thanks for your help
by odaata
Mon Feb 24, 2014 5:32 pm
Forum: SDK-API, Frameworks - Document Types
Topic: i18n for ${ask()} Variables
Replies: 4
Views: 3020

i18n for ${ask()} Variables

Hi all, I have a question about the i18n functionality in a custom framework. Is there any way to use the i18n function within calls to ${ask()} during Actions? I just finished implementing the new i18n functionality in my CSS and I just realized that the ${ask()} instances are the last thing that I...
by odaata
Tue Jan 21, 2014 6:24 pm
Forum: SDK-API, Frameworks - Document Types
Topic: button control style
Replies: 4
Views: 3120

Re: button control style

BTW... I noticed in playing around with the vertical-align property that when it's set, the default padding that exists around the controls disappears. Setting the padding property then allows you to add padding back in, but I don't think this is behaving as designed. If not, you might want to take ...
by odaata
Tue Jan 21, 2014 6:22 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Open file in Author Mode
Replies: 2
Views: 2268

Re: Open file in Author Mode

Wonderful! That's exactly what I was looking for! Thank you!
by odaata
Tue Jan 21, 2014 5:05 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Open file in Author Mode
Replies: 2
Views: 2268

Open file in Author Mode

One more (hopefully) quick question... I'm trying to open a file in Author mode from Java. I see that the open() function on AuthorWorkspaceAccess is deprecated, which led me to Workspace.open(). This allows me to pass in a second parameter (besides the URL to the file) called imposedPage, which has...
by odaata
Tue Jan 21, 2014 4:42 pm
Forum: SDK-API, Frameworks - Document Types
Topic: button control style
Replies: 4
Views: 3120

Re: button control style

OK, I'll give that a try with version 15.2. Until then, we can live with the buttons being a bit out of alignment. I thought I might have missed a setting somewhere...

Thanks!
by odaata
Tue Jan 21, 2014 2:30 pm
Forum: SDK-API, Frameworks - Document Types
Topic: button control style
Replies: 4
Views: 3120

button control style

Hello, I'm adding buttons using the CSS oxygen extensions, but the buttons are all being placed above the other controls in the same element. Is there a CSS style or setting somewhere to lay them out on the same level as other controls? I've tried setting vertical align and it has no effect... Thank...
by odaata
Mon Jan 13, 2014 8:04 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Referencing list from another XML file
Replies: 9
Views: 6012

Re: Referencing list from another XML file

Well, I'm glad I could help you guys out a bit :-) I've taken your advice and only fire my code when AuthorAccess is available and it is working now.

Thanks so much for your help!
by odaata
Mon Jan 13, 2014 7:17 pm
Forum: SDK-API, Frameworks - Document Types
Topic: StylesFilter fires many, many times
Replies: 2
Views: 2075

Re: StylesFilter fires many, many times

Actually, after reading your answer, I realized that I had made a mistake in my code which was causing it not to cache correctly, so in the end it was just a bug in the way I was caching my objects :-( Thanks for your help nonetheless!
by odaata
Sat Jan 11, 2014 6:10 am
Forum: SDK-API, Frameworks - Document Types
Topic: StylesFilter fires many, many times
Replies: 2
Views: 2075

StylesFilter fires many, many times

I have a question about creating a custom StylesFilter. I've developed one that performs an XQuery to get the values and labels needed for a combo box. My example case is a list of people, so my XQuery simply pulls out the xml:id and then transforms various parts of people's names, birth and death d...
by odaata
Sat Jan 11, 2014 5:06 am
Forum: SDK-API, Frameworks - Document Types
Topic: Referencing list from another XML file
Replies: 9
Views: 6012

Re: Referencing list from another XML file

OK, I've been playing around with the StylesFilter approach again, but I'm finding that the code snippet you gave me doesn't actually give me access to AuthorAccess when the styles load initially. When transitioning from Text to Author mode, the call to getCurrentPage() doesn't return the Author pag...
by odaata
Wed Jan 08, 2014 5:42 pm
Forum: SDK-API, Frameworks - Document Types
Topic: Referencing list from another XML file
Replies: 9
Views: 6012

Re: Referencing list from another XML file

Thank you for your detailed reply! That does help immensely! The code snippet to get the AuthorAccess reference is very handy. I also didn't know there was another way of doing this using the SchemaManager - that sounds like a very nice option, since the values are embedded at a level "closer&q...
by odaata
Wed Jan 08, 2014 3:32 am
Forum: SDK-API, Frameworks - Document Types
Topic: Referencing list from another XML file
Replies: 9
Views: 6012

Referencing list from another XML file

Hi all, I'm trying to do something that I think should be fairly simple, but so far it hasn't been... I'd like to generate the items for a combobox using the values from another set of XML documents using my own private URI scheme. For example, for any field in the main XML that needs to have a pers...
by odaata
Mon Aug 19, 2013 11:09 am
Forum: SDK-API, Frameworks - Document Types
Topic: Groovy/Griffon for extensions?
Replies: 1
Views: 2067

Groovy/Griffon for extensions?

Hi all,

I'm trying to create a custom set of extensions for Oxygen Editor and I was wondering, can they be created with Groovy and/or Griffon? Has anyone tried this? Can you think of any pitfalls in using these for customizing Oxygen?

Thanks in advance for your thoughts on this!
by odaata
Fri Jul 05, 2013 2:33 pm
Forum: SDK-API, Frameworks - Document Types
Topic: CSS Inspector for displayed elements in Author mode?
Replies: 2
Views: 2474

Re: CSS Inspector for displayed elements in Author mode?

OK, I was afraid that was the case :-( It would be a nice feature to have though!
by odaata
Fri Jul 05, 2013 1:00 pm
Forum: SDK-API, Frameworks - Document Types
Topic: CSS Inspector for displayed elements in Author mode?
Replies: 2
Views: 2474

CSS Inspector for displayed elements in Author mode?

I've been playing around with a custom CSS file for use in the Author mode. For doing the same thing during web development, I've always found the inspect element functionality very handy in browsers like Firefox and Chrome, where you can see all the CSS rules currently active on any given element. ...
by odaata
Fri Apr 12, 2013 6:04 pm
Forum: Common Problems
Topic: Unable to import module on eXist server
Replies: 5
Views: 3722

Re: Unable to import module on eXist server

I tried out version 15 beta on Ubuntu and I can confirm that is now working! It validates and properly executes XQueries with imported modules on an eXist 2.0 server.

Thanks for your help!
by odaata
Thu Apr 11, 2013 3:34 pm
Forum: Common Problems
Topic: Unable to import module on eXist server
Replies: 5
Views: 3722

Re: Unable to import module on eXist server

Ok, thanks for the info. I sent support an e-mail to try out version 15 beta. This one feature will make my life so much easier when writing XQuery...

Cheers,
Mike
by odaata
Wed Apr 10, 2013 12:57 pm
Forum: Common Problems
Topic: Unable to import module on eXist server
Replies: 5
Views: 3722

Unable to import module on eXist server

Hi, I'm using Oxygen to write XQuery 3.0 that is executed on an eXist 2.0 server. Everything works fine except I am unable to import other modules in my code. import module namespace example="http://example.com/xquery/example" at "example.xqm"; No matter what path I give it, I al...