Peter Henzler | 19 Mar 14:11
Picon
Favicon

Can not connect to Nuxeo Server

Hi

 

I have installed the nuxeo-ep-5.1.3.2.GA on my computer and can access it from http://localhost:8080/nuxeo.

 

I have downloaded and compiled to nuxeo-rcp plugins and all the apogee plugins.

I can start the RCP client without problems.

 

Then I configured an ‘ECM Application’ with localhost and port 62474.

When I press the  ‘start session’ button in the ‘ECM Application’-View I get the following error:

Error connecting to server socket://localhost:62474

 

I tried several other ports but no one worked.

 

What is the port to use for establishing a connection?

Should the RCP-Client work out of the box with the nuxeo server installation?

What am I doing wrong?

 

I hope somebody can help me.

 

Grüsse aus Therwil

Peter Henzler, Geschäftsleiter


Scodi Technik

operated by henzler informatik gmbh
Teichstrasse 7
CH-4106 Therwil
Phone +41 (0)41 9110521 / Mobil +41 (0)79 543 0702
Web       
www.scodi.ch

 

 

_______________________________________________
Apogee mailing list
Apogee@...
http://lists.nuxeo.com/mailman/listinfo/apogee
Kalra, Ashwani | 5 Feb 05:37
Favicon

Download link

Hi,
Can any one let me know if Apogee is released as GA and from where to download it. I could not find the link to download.


Thankis
Ashwani

This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.

_______________________________________________
Apogee mailing list
Apogee@...
http://lists.nuxeo.com/mailman/listinfo/apogee
Abhishek Goel | 15 Jan 23:04

Does the required attribute work on a bind?

I am new to xforms/apogee and haven't been able to find a resolution to a seemigly simple problem. I downloaded the three packages (org.nuxeo.xforms.core/ui/ui.editors) and am currently trying to learn by modifying the given examples.
 
In org.nuxeo.xforms.ui.test/Example1.java, I replaced the line

XInputSource src =

new URLInputSource(Example1.class.getResource( "example1.xhtml"));

with

  XInputSource src = new URLInputSource(Example1.class .getResource("document.xhtml"));

and commented out the lines (not inclusive) between

final UIForm uiForm = new SWTBuilder().build(form, shell); and shell.setBounds(10, 10, 400, 200);

As a result I was able to see the SWT form generated by document.xhtml. I then tried to submit the form by leaving the "title" field empty, but got an exception. This indicated that the minLength validation in document.xsd works. However, when I removed the minLength and maxLength validation and again tried to submit the form leaving the "title" field empty, I expected to get an exception but did not get one. I was expecting an exception because of the line

<bind nodeset="/document/metadata/title" id="title" required= "true()"/>

inside document.xhtml.

So, my question: Is the "required" validation feature not been implemented? If it has been can someone please guide me as to how do I validate a field to ensure that the user enters a value.

Thanks.

Abhishek Goel

 

 

_______________________________________________
Apogee mailing list
Apogee@...
http://lists.nuxeo.com/mailman/listinfo/apogee
Picon

apogee xfroms and SAX parser questions

Hello, apogee@...!

Sorry my English.

I'm trying build simple OLTP demo application with Apogee XFroms and
Xml-Xindice. Xml instances is stored in Xindice and editing by Apogee
XFroms based on TestSWT document.* files - samples from
org.nuxeo.xforms.ui.tests

Environment:
Eclipse JEE 3.3
JDK 1.6.0_02/1.5.0_12

I'm write code editing document. It works fine without of Xindice
libraries.
//....
            ViewShell view = new ViewShell();
            view.open("");
// ....
public class ViewShell {
   private Shell sShell = null;
   private void createSShell() {/* skipped default code for Shell
creation */}

    private void createXForms(String xmlSource) {
        XInputSource src = new
URLInputSource(this.getClass().getResource("document.xhtml"));
        XFormsProcessor proc = new XFormsProcessor(src);
        if (!xmlSource.equals("")) {
            src = new StringInputSource(xmlSource);
            proc.getForm().getModel().setInstance(src);
        }
        FormViewer viewer = new FormViewer(proc, sShell, true);
    }

    public void open(String xmlSource) {
        createSShell();
        createXForms(xmlSource);
        sShell.pack();
        sShell.open();
    }
}

By adding Xindice libraries I've got errors. Can you help me with it?
Please.

parsing unknown element: xhtml:html
parsing unknown element: xs:sequence
parsing unknown element: xs:sequence
Exception in thread "main" java.lang.AbstractMethodError:
org.apache.xerces.dom.DocumentImpl.setUserData(Ljava/lang/String;Ljava/lang/Object;Lorg/w3c/dom/UserDataHandler;)Ljava/lang/Object;
    at org.nuxeo.xforms.xforms.model.XFInstance.<init>(XFInstance.java:57)
    at org.nuxeo.xforms.xforms.model.XFInstance.<init>(XFInstance.java:50)
    at org.nuxeo.xforms.xforms.model.XFModel.createInstance(XFModel.java:46)
    at
org.nuxeo.xforms.xforms.factories.InstanceXFactory.create(InstanceXFactory.java:58)
    at org.nuxeo.xforms.xml.XParser.startElement(XParser.java:116)
    at
com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(AbstractSAXParser.java:501)
    at
com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(XMLNSDocumentScannerImpl.java:400)
    at
com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2740)
    at
com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:645)
    at
com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:140)
    at
com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:508)
    at
com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:807)
    at
com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737)
    at
com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:107)
    at
com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1205)
    at org.nuxeo.xforms.xml.XParser.parse(XParser.java:80)
    at org.nuxeo.xforms.xforms.XFLoader.load(XFLoader.java:98)
    at org.nuxeo.xforms.XFormsProcessor.loadForm(XFormsProcessor.java:229)
    at org.nuxeo.xforms.XFormsProcessor.load(XFormsProcessor.java:207)
    at org.nuxeo.xforms.XFormsProcessor.<init>(XFormsProcessor.java:103)
    at
biz.oss4.xforms.demo.xindice.ViewShell.createXForms(ViewShell.java:33)
    at biz.oss4.xforms.demo.xindice.ViewShell.open(ViewShell.java:43)
    at
biz.oss4.xforms.demo.xindice.MainShell$AddSelection.widgetSelected(MainShell.java:183)
    at
org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
    at biz.oss4.xforms.demo.xindice.MainShell.main(MainShell.java:85)

--

-- 
with best regards
Nikolai Voynov
Alain Escaffre | 8 Aug 10:42

Apogee list

Hello,

dev is mainly used for EP dev, so I propose to use apogee list  
(http://lists.nuxeo.com/mailman/listinfo/apogee) for communication on  
dev. If you are not already in the list (like me : -) ), please,  
suscribe and use it when mailing about Apogee

Sun will work  on improving apogee user interface, but before that he  
will clean up the code on three aspects :
	- Exception management
	- Logging (no more e.printstacktrace)
	- String externalisation so that Apogee can be used in different  
languages

Once this will be done, every body will have to respect the rules !

About  exception management, we should choose the pattern to be used,  
and I let you discuss about that. I guess all the exceptions should  
be thrown to the top so that there is systematically a UI signal when  
something is wrong ...

Thank you,

Alain
Sun Seng David TAN | 8 Aug 11:29

Exceptions handling

Hi Apogee devs,

It's time to think about errors and exception handling in Apogee. The 
purpose of this discussion is to get rid of "printstacktrack" way to 
easily avoid the problem and find a new and simple way to warm the user 
and give good information for the developpers if debugging is needed.

To start the discussion, in a first glance, Alain said :
"I guess all the exceptions should be thrown to the top so that there is 
systematically a UI signal when something is wrong ... "

I think we have few ways to handle exception :
• logging -> reuse existing nuxeo way to handle them (log4j) ?
• display to user -> IStatus (the message it self and status) and 
ErrorDialog, maybe in the Status bar as well.

I think Apogee should have its own way to deal with exception. Because 
it is supposed to handle not only nuxeo, we should embed nuxeo handled 
exception from coming the core.

Any idea is welcome :)

Sun.
Alban CADIOT | 27 Apr 16:56
Picon

problem for use the XForms plugin in an other plugin use in a workbench application

Hi,
 
I use the plugin on the XForm (Apogée) in Eclipse 3.2.1 and it work very well (in a new SWT application). But if I include this 3 plugins in an other plugin project (add jar) and that I launch this in a new configuration (Eclipe workbench) , I can't load the view that containt code for create the SWT view.
the error is "java.lang.NoClassDefFoundError: org/nuxeo/xforms/XFormsProcessor" but the class is in the plugin Eclipse folder and in my project.
 
Anybody know why?
 
thank
 
alban
 
This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.

_______________________________________________
Apogee mailing list
Apogee@...
http://lists.nuxeo.com/mailman/listinfo/apogee
Neidig,Nick | 21 Mar 18:40
Picon
Favicon

Xform Plugins Deprecated or Replaced?

Hello,
    I have been using the three Xform plugins from the code located at http://svn.nuxeo.org/pub/Apogee/. I received an email earlier today from Bogdan stating that http://svn.nuxeo.org/pub/Apogee/ had been deprecated and current development was occurring at https://svn.nuxeo.org/nuxeo/sandbox/Apogee. When I checked out the current code I was unable to find the Xform plugins. Are the Xform plugins being actively developed or have they been deprecated and replaced by something else? Also could you let me know where I can obtain these plugins or their replacements?

Thank you for your assistance,
Nick Neidig

CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024. Cerner Limited, Registered in England no 2519305, Registered Office 37 North Wharf Road, London W2 1AF.
_______________________________________________
Apogee mailing list
Apogee@...
http://lists.nuxeo.com/mailman/listinfo/apogee
Neidig,Nick | 20 Mar 15:21
Picon
Favicon

Unable To Access Issue Tracker

Hello,
   I am working on building a demo for an upcoming project using the Apogee plugin. I found some inconsistent behavior with setting the style attribute on labels that I wanted to log as an issue.

I just signed up for this mailing list and I was unable to use my same login information to obtain access to the issue tracker.  I would greatly appreciate your assistance in helping me obtain access to issue

tracker.  I am assuming that it is preferable for me to log the issue through issue tracker rather than sending it over email. 

Thank you,
Nick Neidig

CONFIDENTIALITY NOTICE This message and any included attachments are from Cerner Corporation and are intended only for the addressee. The information contained in this message is confidential and may constitute inside or non-public information under international, federal, or state securities laws. Unauthorized forwarding, printing, copying, distribution, or use of such information is strictly prohibited and may be unlawful. If you are not the addressee, please promptly delete this message and notify the sender of the delivery error by e-mail or you may call Cerner's corporate offices in Kansas City, Missouri, U.S.A at (+1) (816)221-1024. Cerner Limited, Registered in England no 2519305, Registered Office 37 North Wharf Road, London W2 1AF.
_______________________________________________
Apogee mailing list
Apogee@...
http://lists.nuxeo.com/mailman/listinfo/apogee
John Nitao | 11 Jan 10:36

question regarding namespaces in nuxeo XForms library


Hi Bogdan,

I downloaded the nuxeo XForms Java libray and
the model instance doesn't appear to support namespaces (??).

I had a tag called ft:item in the model instance and I get a parse
error (see end of email).  I think the software thinks that
it is an xforms tag (?).

The following is my XForms instance:

<instance>
                <document xmlns:ft="http://www.llnl.gov/xforms-test/1.0">

                        <metadata>
                                <title>My default title</title>
                                <mdate/>
                                <author>me</author>
                                <description>
                                This is the default description
                                </description>
                                <language>fr</language>
                                <ctype>plain</ctype>
                       </metadata>

      <ft:item> E </ft:item>

                        <content/>
                </document>
        </instance>

I only get the error if I set the instance using

form.getModel().setInstance(src)

There  is no error in the XForms file
that has the same instance.

Also, the XForms UI's appear to ignore namespaces prefixes
with respect to path references to model instance elements.

                  John Nitao

1635 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: document, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1636 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: metadata, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1636 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: title, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1636 [main] DEBUG org.nuxeo.xforms.xml.XParser  - endElement: title
1636 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: mdate, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1636 [main] DEBUG org.nuxeo.xforms.xml.XParser  - endElement: mdate
1637 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: author, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1637 [main] DEBUG org.nuxeo.xforms.xml.XParser  - endElement: author
1637 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: description, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1638 [main] DEBUG org.nuxeo.xforms.xml.XParser  - endElement: description
1639 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: language, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1639 [main] DEBUG org.nuxeo.xforms.xml.XParser  - endElement: language
1639 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: ctype, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
1639 [main] DEBUG org.nuxeo.xforms.xml.XParser  - endElement: ctype
1639 [main] DEBUG org.nuxeo.xforms.xml.XParser  - endElement: metadata
1639 [main] DEBUG org.nuxeo.xforms.xml.XParser  - startElement: ft:item, attributes: org.apache.xerces.parsers.AbstractSAXParser$AttributesProxy <at> 13d93f4
org.nuxeo.xforms.xml.XParserException: Parse failed
Everitt, Glenn | 10 Oct 22:22
Picon
Favicon

FW: [corona-dev] Eclipse Collaboration Projects

Cross-posting from corona-dev-j9T/66MeVpFAfugRpC6u6w@public.gmane.org

 

 

From: corona-dev-bounces-j9T/66MeVpFAfugRpC6u6w@public.gmane.org [mailto:corona-dev-bounces-j9T/66MeVpFAfugRpC6u6w@public.gmane.org] On Behalf Of O'Flynn, Dennis
Sent: Tuesday, October 10, 2006 4:01 PM
To: Corona development
Subject: [corona-dev] Eclipse Collaboration Projects

 

 

We have recently worked with Scott Lewis (ECF Project Lead) on some common collaboration initiatives.  During this time, it became apparent to us that there are several Eclipse projects that are involved with some form of collaboration technologies / frameworks.  These projects are all part of the Technology top-level project and are currently working independent from one another.

 

Based upon information posted to each project’s website, wiki, and mailing list, it is noticeable that there are several issues that we all have in common.  In addition, there may be some technologies that each project could leverage from one another.

 

From our perspective, the projects are addressing the following collaboration areas:

  • Corona - tool collaboration

  • ECF – data collaboration

  • ALF – process collaboration

  • Mylar – task collaboration

  • Apogee – content management

 

We would like to explore any possible synergies our projects may share.  We propose that key members from Corona / ECF / ALF / Mylar / Apogee meet and discuss possible ways our projects can work together. 

 

The preliminary agenda includes:

  • Scope of collaboration

  • Concepts

  • Terminology

  • Identify common issues / needs

    • Server-side environment

    • Collaboration context

    • Security / Identity management

    • Communications

    • Manageability

  • Technology synergies

 

The meeting logistics are:

  • Date: Monday, October 16, 2006

  • Time: 11:00 AM EDT

  • Conference call: 866-213-1962 or 609-454-9912

  • Access code: 2277433

 

If you are interested in collaborating on collaboration, please post a message to corona-dev <at> eclipse.org to let us know.  Share with us any additional topic items as well as your view of how Eclipse can better address collaboration technologies and frameworks.

 

 

 

 

The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you received it in error please notify us immediately and then destroy it.

The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you received it in error please notify us immediately and then destroy it.
_______________________________________________
corona-dev mailing list
corona-dev <at> eclipse.org
https://dev.eclipse.org/mailman/listinfo/corona-dev

_______________________________________________
Apogee mailing list
Apogee@...
http://lists.nuxeo.com/mailman/listinfo/apogee

Gmane