OxalisCommunity / oxalis

Oxalis - PEPPOL Access Point open source implementation - Core component
Other
133 stars 92 forks source link

How much work does Oxalis do for me ? #35

Closed oskaremil closed 11 years ago

oskaremil commented 11 years ago

Sorry if this is not the right place to ask but apart from the installation instructions I have had a hard time finding any other documentation on the code and Difi's homepage doesn't mention it either.

AFAIK the Oxalis accessPointService is to be used by other access points to send EHF documents to the customers connected to us. Provided everything is working well and we are registered in ELMA other access points can locate our access point by the recipients id and deliver documents via the web service.

Is the best (or only) approach to create a separate webservice/wrapper that uses the Oxalis START outbound JAR component to validate the EHF and send it to the recipient via our accessPointService ?

senikk commented 11 years ago

To validate you have to use https://github.com/difi/VEFAvalidatorApp and just look at the code for oxalis-standalone and you see what you have to do to get sending working from your own code.

oskaremil commented 11 years ago

Thank you.

Can I take oxalis-start-outbound-2.0.1.jar out of it's environment (copy and use as reference on another computer) or is it dependent of other properties I set up when installing oxalis (like $OXALIS_HOME variable or oxalis-global.properties) ?

steinarcook commented 11 years ago

You are well advised to ensure that your inbound and outbound code shares the oxalis-global.properties files.

On 21. juni 2013, at 09:57, oskaremil notifications@github.com wrote:

Thank you.

Can I take oxalis-start-outbound-2.0.1.jar out of it's environment (copy and use as reference on another computer) or is it dependent of other properties I set up when installing oxalis (like $OXALIS_HOME variable or oxalis-global.properties) ?

— Reply to this email directly or view it on GitHub.

oskaremil commented 11 years ago

That's all ?

I would probably want to wrap oxalis-start-outbound into a separate webservice layer, so then I only have to ensure that it references the same oxalis-global.properties file as the oxalis accessPoint ?

Does oxalis-start-outbound reference $OXALIS_HOME ?

steinarcook commented 11 years ago

Yes, $OXALIS_HOME is referenced by Oxalis inbound and outbound.

On 24. juni 2013, at 10:31, oskaremil notifications@github.com wrote:

That's all ?

I would probably want to wrap oxalis-start-outbound into a separate webservice layer, so then I only have to ensure that it references the same oxalis-global.properties file as the oxalis accessPoint ?

Does oxalis-start-outbound reference $OXALIS_HOME ?

— Reply to this email directly or view it on GitHub.

oskaremil commented 11 years ago

Are UNC paths in $OXALIS_HOME supported ?

steinarcook commented 11 years ago

I just use Java File and URL objects, it might work :-) I don't know.

On 24. juni 2013, at 13:14, oskaremil notifications@github.com wrote:

Are UNC paths in $OXALIS_HOME supported ?

— Reply to this email directly or view it on GitHub.

oskaremil commented 11 years ago

We'll see :)