Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: [geclipse-dev] Job Submission with input DataStaging

Hi again,

I just had a look at the URI problem and committed a solution to the
repos. I defined a new method for IGridConnectionElement called getURI
and put an implementation in ConnectionElement (so you have to update
both the core and core.filesystem). This method gives you the wrapped
URI and not the gecl URI (which should cause no problems since the gecl
URI should only be used internally and should not be visible to the
outside world). So whenever you are using the GridFileDialog you can
simply do:

IGridConnectionElement result = GridFileDialog.openFileDialog(...);
URI uri = result.getURI();

Hope that helps,

Mathias


Back to the top