Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » DSDP - Target Management » Operation Failed. file system input or outpur error
Operation Failed. file system input or outpur error [message #7696] Wed, 18 April 2007 17:42 Go to next message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

I am hoping to (re-)use some of the RSE plugins to provide users the ability
to transfer files to SFTP and/or FTP servers via drag-and-drop. Although
the file transfer is working, the following message is consistently
displayed in the Remote Systems viewer under the drop target after each
drag-and-drop from my tree viewer.

"Operation Failed. file system input or outpur error"

It apparently all begins with the RefreshJob that is scheduled in
SystemDNDTransferRunnable. The problem is a consequence of the following
code in FTPService.internalFetch():

if (monitor != null) {
if (monitor.isCanceled())
return null;
}

Apparently, there are at least two DeferredTreeContentManager.Jobs that are
being created to fetch the children of the same node. So one gets canceled
and eventually causes internalFetch() to return null. The null is passed to
FTPFileAdapter.convertToRemoteFiles() in the "nodes" argument. The
reference to "nodes" in the for loop throws a NullPointerException that is
caught by SystemViewRemoteFileAdapter. Its general catch clause for
Exception happily creates a SystemMessageObject that seems to result in the
aforementioned message.

I have tried to fix the "bug" in the usual ways (catching the
NullPointerException, returning an empty IHostFile[] from internalFetch(),
etc.) but have not resolved the issue. I am using Eclipse 3.2; this combo
of plugins from CVS compiled without errors on my Eclipse installation.

org.eclipse.rse.connectorservice.local v20070328
org.eclipse.rse.connectorservice.ssh v20070328
org.eclipse.rse.core v20070401
org.eclipse.rse.files.ui v20070401
org.eclipse.rse.services v20070221
org.eclipse.rse.services.files.ftp v20070402
org.eclipse.rse.services.local v20070402
org.eclipse.rse.services.ssh v20070224
org.eclipse.rse.subsystems.files.core v20070401
org.eclipse.rse.subsystems.files.ftp v20070401
org.eclipse.rse.subsystems.files.local v20070401
org.eclipse.rse.subsystems.files.ssh v20070401
org.eclipse.rse.subsystems.shells.core v20070328
org.eclipse.rse.ui v20070401

Thanks in advance for your help and for your software.

Uday
Re: Operation Failed. file system input or outpur error [message #7717 is a reply to message #7696] Wed, 18 April 2007 20:19 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

After doing some further troubleshooting, I discovered why two jobs are
refreshing the same node. In SystemDNDTransferRunnable, the RefreshJob
fires a ISystemResourceChangeEvents.EVENT_REFRESH. The SystemView is one of
the registered listeners. It launches its own ResourceChangeJob to handle
this event. By commenting out the following line in the RefreshJob, I
eliminated the "Operation failed..." message:

registry.fireEvent(new ....ISystemResourceChangedEvents.EVENT_REFRESH,
_target));

I am hoping that there any unintended consequences of this mod.

If anyone is aware of such consequences, I would appreciate hearing about
them.

Thank you.

Uday



"Uday Kabe" <udaykabe@hotmail.com> wrote in message
news:f05l9v$uj0$1@build.eclipse.org...
>I am hoping to (re-)use some of the RSE plugins to provide users the
>ability to transfer files to SFTP and/or FTP servers via drag-and-drop.
>Although the file transfer is working, the following message is
>consistently displayed in the Remote Systems viewer under the drop target
>after each drag-and-drop from my tree viewer.
>
> "Operation Failed. file system input or outpur error"
>
> It apparently all begins with the RefreshJob that is scheduled in
> SystemDNDTransferRunnable. The problem is a consequence of the following
> code in FTPService.internalFetch():
>
> if (monitor != null) {
> if (monitor.isCanceled())
> return null;
> }
>
> Apparently, there are at least two DeferredTreeContentManager.Jobs that
> are being created to fetch the children of the same node. So one gets
> canceled and eventually causes internalFetch() to return null. The null
> is passed to FTPFileAdapter.convertToRemoteFiles() in the "nodes"
> argument. The reference to "nodes" in the for loop throws a
> NullPointerException that is caught by SystemViewRemoteFileAdapter. Its
> general catch clause for Exception happily creates a SystemMessageObject
> that seems to result in the aforementioned message.
>
> I have tried to fix the "bug" in the usual ways (catching the
> NullPointerException, returning an empty IHostFile[] from internalFetch(),
> etc.) but have not resolved the issue. I am using Eclipse 3.2; this combo
> of plugins from CVS compiled without errors on my Eclipse installation.
>
> org.eclipse.rse.connectorservice.local v20070328
> org.eclipse.rse.connectorservice.ssh v20070328
> org.eclipse.rse.core v20070401
> org.eclipse.rse.files.ui v20070401
> org.eclipse.rse.services v20070221
> org.eclipse.rse.services.files.ftp v20070402
> org.eclipse.rse.services.local v20070402
> org.eclipse.rse.services.ssh v20070224
> org.eclipse.rse.subsystems.files.core v20070401
> org.eclipse.rse.subsystems.files.ftp v20070401
> org.eclipse.rse.subsystems.files.local v20070401
> org.eclipse.rse.subsystems.files.ssh v20070401
> org.eclipse.rse.subsystems.shells.core v20070328
> org.eclipse.rse.ui v20070401
>
> Thanks in advance for your help and for your software.
>
> Uday
>
Re: Operation Failed. file system input or outpur error [message #7779 is a reply to message #7717] Tue, 24 April 2007 10:53 Go to previous messageGo to next message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Thanks for this problem report and the very good diagnose.
I have entered bug
https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
to track the issue. You may want to put yourself on CC.

Note that being able to compile RSE HEAD in your Eclipse 3.2
environment does not mean that it works. The SSH Preferences,
for instance, require Eclipse 3.3M6 or later; also, there
may be issues with Property Page handling. I'd recommend
staying on top of latest Eclipse and upgrading to 3.3M6.

Thanks,
--
Martin Oberhuber
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm
Re: Operation Failed. file system input or outpur error [message #7881 is a reply to message #7779] Mon, 30 April 2007 17:01 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Hello Martin,

Thanx for your response and for your submission of a bug report for this
issue. Version 1.4 of SystemDNDTransferRunnable does have the same the fix
in it.

I am developing an RCP-based product for integrating and exploring
Lotus Notes/Domino Databases. I use EMF to model my app, and about four
weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as export
destinations for Notes data. As much as I would like to migrate to 3.3, it
is not easy
for me to do so.

I scrutinized the RSE source code structure and discovered that the set of
plugins which
I listed in my first post gave me the RSE functionality I needed.
Unfortunately, I struggled
to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
compiled. If you
could list the plugins that I should use with 3.2, I would appreciate it.
The ones I am
using are very, very close to those in rse.map v1.86.

On another note, I am using DND from my view to RSE's System View for
exporting
Notes data to an FTP site. However, in order to get this to work, I had to
modify
SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
array in
SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer mechanism
did
not seem to do the trick because it appeared that the associated callback
was not
being triggered. Obviously, although this mod works for me right now, it is
not the right answer for RSE, and maybe not for me, since PluginTransfer is
the "official" Eclipse mechanism for ad hoc DND from any source to any
target. I am
willing to admit that the problem could be due to my understanding of how
PluginTransfer should work, but I thought I would let you know of my
experience
just in case you have run into this, and/or you may be able to shed more
light on it.

Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
meeting.

Uday


"Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
news:462DE1A5.5000208@windriver.com...
> Thanks for this problem report and the very good diagnose.
> I have entered bug
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
> to track the issue. You may want to put yourself on CC.
>
> Note that being able to compile RSE HEAD in your Eclipse 3.2
> environment does not mean that it works. The SSH Preferences,
> for instance, require Eclipse 3.3M6 or later; also, there
> may be issues with Property Page handling. I'd recommend
> staying on top of latest Eclipse and upgrading to 3.3M6.
>
> Thanks,
> --
> Martin Oberhuber
> Target Management Project Lead, DSDP PMC Member
> http://www.eclipse.org/dsdp/tm
Re: Operation Failed. file system input or outpur error [message #7901 is a reply to message #7881] Mon, 30 April 2007 17:05 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Sorry about the formatting. Outlook Express seems to do funky things when
editing and
sending a saved draft.

Uday


"Uday Kabe" <udaykabe@hotmail.com> wrote in message
news:f157du$99e$1@build.eclipse.org...
> Hello Martin,
>
> Thanx for your response and for your submission of a bug report for this
> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
> fix in it.
>
> I am developing an RCP-based product for integrating and exploring
> Lotus Notes/Domino Databases. I use EMF to model my app, and about four
> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
> export
> destinations for Notes data. As much as I would like to migrate to 3.3,
> it is not easy
> for me to do so.
>
> I scrutinized the RSE source code structure and discovered that the set of
> plugins which
> I listed in my first post gave me the RSE functionality I needed.
> Unfortunately, I struggled
> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
> compiled. If you
> could list the plugins that I should use with 3.2, I would appreciate it.
> The ones I am
> using are very, very close to those in rse.map v1.86.
>
> On another note, I am using DND from my view to RSE's System View for
> exporting
> Notes data to an FTP site. However, in order to get this to work, I had
> to modify
> SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
> array in
> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer mechanism
> did
> not seem to do the trick because it appeared that the associated callback
> was not
> being triggered. Obviously, although this mod works for me right now, it
> is
> not the right answer for RSE, and maybe not for me, since PluginTransfer
> is
> the "official" Eclipse mechanism for ad hoc DND from any source to any
> target. I am
> willing to admit that the problem could be due to my understanding of how
> PluginTransfer should work, but I thought I would let you know of my
> experience
> just in case you have run into this, and/or you may be able to shed more
> light on it.
>
> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
> meeting.
>
> Uday
>
>
> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
> news:462DE1A5.5000208@windriver.com...
>> Thanks for this problem report and the very good diagnose.
>> I have entered bug
>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>> to track the issue. You may want to put yourself on CC.
>>
>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>> environment does not mean that it works. The SSH Preferences,
>> for instance, require Eclipse 3.3M6 or later; also, there
>> may be issues with Property Page handling. I'd recommend
>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>
>> Thanks,
>> --
>> Martin Oberhuber
>> Target Management Project Lead, DSDP PMC Member
>> http://www.eclipse.org/dsdp/tm
>
>
>
>
>
>
>
>
Re: Operation Failed. file system input or outpur error [message #7921 is a reply to message #7901] Thu, 03 May 2007 16:30 Go to previous messageGo to next message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Hello Uday,

finding the Tags in the CVS Repository should work now.

With respect to 3.2 compatibility, I'd recommend to rather
use the latest Eclipse 3.3 Platform build (M7 to be released
this Friday) together with EMF 2.2.0 in order to avoid Java5.
It should work just fine.

Thanks,
--
Martin Oberhuber
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm


Uday Kabe wrote:
> Sorry about the formatting. Outlook Express seems to do funky things when
> editing and
> sending a saved draft.
>
> Uday
>
>
> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
> news:f157du$99e$1@build.eclipse.org...
>> Hello Martin,
>>
>> Thanx for your response and for your submission of a bug report for this
>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>> fix in it.
>>
>> I am developing an RCP-based product for integrating and exploring
>> Lotus Notes/Domino Databases. I use EMF to model my app, and about four
>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>> export
>> destinations for Notes data. As much as I would like to migrate to 3.3,
>> it is not easy
>> for me to do so.
>>
>> I scrutinized the RSE source code structure and discovered that the set of
>> plugins which
>> I listed in my first post gave me the RSE functionality I needed.
>> Unfortunately, I struggled
>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>> compiled. If you
>> could list the plugins that I should use with 3.2, I would appreciate it.
>> The ones I am
>> using are very, very close to those in rse.map v1.86.
>>
>> On another note, I am using DND from my view to RSE's System View for
>> exporting
>> Notes data to an FTP site. However, in order to get this to work, I had
>> to modify
>> SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
>> array in
>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer mechanism
>> did
>> not seem to do the trick because it appeared that the associated callback
>> was not
>> being triggered. Obviously, although this mod works for me right now, it
>> is
>> not the right answer for RSE, and maybe not for me, since PluginTransfer
>> is
>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>> target. I am
>> willing to admit that the problem could be due to my understanding of how
>> PluginTransfer should work, but I thought I would let you know of my
>> experience
>> just in case you have run into this, and/or you may be able to shed more
>> light on it.
>>
>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
>> meeting.
>>
>> Uday
>>
>>
>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>> news:462DE1A5.5000208@windriver.com...
>>> Thanks for this problem report and the very good diagnose.
>>> I have entered bug
>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>> to track the issue. You may want to put yourself on CC.
>>>
>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>> environment does not mean that it works. The SSH Preferences,
>>> for instance, require Eclipse 3.3M6 or later; also, there
>>> may be issues with Property Page handling. I'd recommend
>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>
>>> Thanks,
>>> --
>>> Martin Oberhuber
>>> Target Management Project Lead, DSDP PMC Member
>>> http://www.eclipse.org/dsdp/tm
>>
>>
>>
>>
>>
>>
>>
>
>
Re: Operation Failed. file system input or outpur error [message #8872 is a reply to message #7921] Tue, 15 May 2007 17:37 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Martin,

In order to attempt a move to 3.3, I have checked out the same RSE plugins
that I am using in 3.2 (per my previous posts). How do I get the
org.apache.oro and org.apace.commons.net plugins? The library jars do not
seem to exist in the Eclipse CVS projects.

Thanx.

Uday


"Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
news:f1d2m8$3fi$1@build.eclipse.org...
> Hello Uday,
>
> finding the Tags in the CVS Repository should work now.
>
> With respect to 3.2 compatibility, I'd recommend to rather
> use the latest Eclipse 3.3 Platform build (M7 to be released
> this Friday) together with EMF 2.2.0 in order to avoid Java5.
> It should work just fine.
>
> Thanks,
> --
> Martin Oberhuber
> Target Management Project Lead, DSDP PMC Member
> http://www.eclipse.org/dsdp/tm
>
>
> Uday Kabe wrote:
>> Sorry about the formatting. Outlook Express seems to do funky things
>> when editing and
>> sending a saved draft.
>>
>> Uday
>>
>>
>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>> news:f157du$99e$1@build.eclipse.org...
>>> Hello Martin,
>>>
>>> Thanx for your response and for your submission of a bug report for this
>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>>> fix in it.
>>>
>>> I am developing an RCP-based product for integrating and exploring
>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about four
>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>> export
>>> destinations for Notes data. As much as I would like to migrate to 3.3,
>>> it is not easy
>>> for me to do so.
>>>
>>> I scrutinized the RSE source code structure and discovered that the set
>>> of plugins which
>>> I listed in my first post gave me the RSE functionality I needed.
>>> Unfortunately, I struggled
>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>> compiled. If you
>>> could list the plugins that I should use with 3.2, I would appreciate
>>> it. The ones I am
>>> using are very, very close to those in rse.map v1.86.
>>>
>>> On another note, I am using DND from my view to RSE's System View for
>>> exporting
>>> Notes data to an FTP site. However, in order to get this to work, I had
>>> to modify
>>> SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
>>> array in
>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>> mechanism did
>>> not seem to do the trick because it appeared that the associated
>>> callback was not
>>> being triggered. Obviously, although this mod works for me right now,
>>> it is
>>> not the right answer for RSE, and maybe not for me, since PluginTransfer
>>> is
>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>> target. I am
>>> willing to admit that the problem could be due to my understanding of
>>> how
>>> PluginTransfer should work, but I thought I would let you know of my
>>> experience
>>> just in case you have run into this, and/or you may be able to shed more
>>> light on it.
>>>
>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
>>> meeting.
>>>
>>> Uday
>>>
>>>
>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>> news:462DE1A5.5000208@windriver.com...
>>>> Thanks for this problem report and the very good diagnose.
>>>> I have entered bug
>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>> to track the issue. You may want to put yourself on CC.
>>>>
>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>> environment does not mean that it works. The SSH Preferences,
>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>> may be issues with Property Page handling. I'd recommend
>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>
>>>> Thanks,
>>>> --
>>>> Martin Oberhuber
>>>> Target Management Project Lead, DSDP PMC Member
>>>> http://www.eclipse.org/dsdp/tm
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>
Re: Operation Failed. file system input or outpur error [message #8893 is a reply to message #8872] Tue, 15 May 2007 18:10 Go to previous messageGo to next message
Michael Strothjohann is currently offline Michael StrothjohannFriend
Messages: 52
Registered: July 2009
Member
As of TM 2.0, all third party libraries are hosted in the Orbit Repository:

/cvsroot/tools, org.eclipse.orbit

michael

"Uday Kabe" <udaykabe@hotmail.com> schrieb im Newsbeitrag
news:f2cr53$7c1$1@build.eclipse.org...
> Martin,
>
> In order to attempt a move to 3.3, I have checked out the same RSE plugins
> that I am using in 3.2 (per my previous posts). How do I get the
> org.apache.oro and org.apace.commons.net plugins? The library jars do not
> seem to exist in the Eclipse CVS projects.
>
> Thanx.
>
> Uday
>
>
> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
> news:f1d2m8$3fi$1@build.eclipse.org...
>> Hello Uday,
>>
>> finding the Tags in the CVS Repository should work now.
>>
>> With respect to 3.2 compatibility, I'd recommend to rather
>> use the latest Eclipse 3.3 Platform build (M7 to be released
>> this Friday) together with EMF 2.2.0 in order to avoid Java5.
>> It should work just fine.
>>
>> Thanks,
>> --
>> Martin Oberhuber
>> Target Management Project Lead, DSDP PMC Member
>> http://www.eclipse.org/dsdp/tm
>>
>>
>> Uday Kabe wrote:
>>> Sorry about the formatting. Outlook Express seems to do funky things
>>> when editing and
>>> sending a saved draft.
>>>
>>> Uday
>>>
>>>
>>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>>> news:f157du$99e$1@build.eclipse.org...
>>>> Hello Martin,
>>>>
>>>> Thanx for your response and for your submission of a bug report for
>>>> this
>>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>>>> fix in it.
>>>>
>>>> I am developing an RCP-based product for integrating and exploring
>>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about
>>>> four
>>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>>> export
>>>> destinations for Notes data. As much as I would like to migrate to
>>>> 3.3, it is not easy
>>>> for me to do so.
>>>>
>>>> I scrutinized the RSE source code structure and discovered that the set
>>>> of plugins which
>>>> I listed in my first post gave me the RSE functionality I needed.
>>>> Unfortunately, I struggled
>>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>>> compiled. If you
>>>> could list the plugins that I should use with 3.2, I would appreciate
>>>> it. The ones I am
>>>> using are very, very close to those in rse.map v1.86.
>>>>
>>>> On another note, I am using DND from my view to RSE's System View for
>>>> exporting
>>>> Notes data to an FTP site. However, in order to get this to work, I
>>>> had to modify
>>>> SystemView to add EMF's LocalTransfer.getInstance() to the
>>>> droptransfers array in
>>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>>> mechanism did
>>>> not seem to do the trick because it appeared that the associated
>>>> callback was not
>>>> being triggered. Obviously, although this mod works for me right now,
>>>> it is
>>>> not the right answer for RSE, and maybe not for me, since
>>>> PluginTransfer is
>>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>>> target. I am
>>>> willing to admit that the problem could be due to my understanding of
>>>> how
>>>> PluginTransfer should work, but I thought I would let you know of my
>>>> experience
>>>> just in case you have run into this, and/or you may be able to shed
>>>> more light on it.
>>>>
>>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM
>>>> phone meeting.
>>>>
>>>> Uday
>>>>
>>>>
>>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>>> news:462DE1A5.5000208@windriver.com...
>>>>> Thanks for this problem report and the very good diagnose.
>>>>> I have entered bug
>>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>>> to track the issue. You may want to put yourself on CC.
>>>>>
>>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>>> environment does not mean that it works. The SSH Preferences,
>>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>>> may be issues with Property Page handling. I'd recommend
>>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>>
>>>>> Thanks,
>>>>> --
>>>>> Martin Oberhuber
>>>>> Target Management Project Lead, DSDP PMC Member
>>>>> http://www.eclipse.org/dsdp/tm
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>
Re: Operation Failed. file system input or outpur error [message #8912 is a reply to message #8872] Tue, 15 May 2007 18:51 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Martin,

I visited the following link
http://www.eclipse.org/dsdp/tm/development/cvs_setup.php and found the
ti-orbit-anonymous.psf file which I use to retrieve the Commons Net and ORO
projects, but if you have some other suggestions to just get the bundles, I
would appreciate knowing about them.

Thanx.

Uday


"Uday Kabe" <udaykabe@hotmail.com> wrote in message
news:f2cr53$7c1$1@build.eclipse.org...
> Martin,
>
> In order to attempt a move to 3.3, I have checked out the same RSE plugins
> that I am using in 3.2 (per my previous posts). How do I get the
> org.apache.oro and org.apace.commons.net plugins? The library jars do not
> seem to exist in the Eclipse CVS projects.
>
> Thanx.
>
> Uday
>
>
> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
> news:f1d2m8$3fi$1@build.eclipse.org...
>> Hello Uday,
>>
>> finding the Tags in the CVS Repository should work now.
>>
>> With respect to 3.2 compatibility, I'd recommend to rather
>> use the latest Eclipse 3.3 Platform build (M7 to be released
>> this Friday) together with EMF 2.2.0 in order to avoid Java5.
>> It should work just fine.
>>
>> Thanks,
>> --
>> Martin Oberhuber
>> Target Management Project Lead, DSDP PMC Member
>> http://www.eclipse.org/dsdp/tm
>>
>>
>> Uday Kabe wrote:
>>> Sorry about the formatting. Outlook Express seems to do funky things
>>> when editing and
>>> sending a saved draft.
>>>
>>> Uday
>>>
>>>
>>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>>> news:f157du$99e$1@build.eclipse.org...
>>>> Hello Martin,
>>>>
>>>> Thanx for your response and for your submission of a bug report for
>>>> this
>>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>>>> fix in it.
>>>>
>>>> I am developing an RCP-based product for integrating and exploring
>>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about
>>>> four
>>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>>> export
>>>> destinations for Notes data. As much as I would like to migrate to
>>>> 3.3, it is not easy
>>>> for me to do so.
>>>>
>>>> I scrutinized the RSE source code structure and discovered that the set
>>>> of plugins which
>>>> I listed in my first post gave me the RSE functionality I needed.
>>>> Unfortunately, I struggled
>>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>>> compiled. If you
>>>> could list the plugins that I should use with 3.2, I would appreciate
>>>> it. The ones I am
>>>> using are very, very close to those in rse.map v1.86.
>>>>
>>>> On another note, I am using DND from my view to RSE's System View for
>>>> exporting
>>>> Notes data to an FTP site. However, in order to get this to work, I
>>>> had to modify
>>>> SystemView to add EMF's LocalTransfer.getInstance() to the
>>>> droptransfers array in
>>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>>> mechanism did
>>>> not seem to do the trick because it appeared that the associated
>>>> callback was not
>>>> being triggered. Obviously, although this mod works for me right now,
>>>> it is
>>>> not the right answer for RSE, and maybe not for me, since
>>>> PluginTransfer is
>>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>>> target. I am
>>>> willing to admit that the problem could be due to my understanding of
>>>> how
>>>> PluginTransfer should work, but I thought I would let you know of my
>>>> experience
>>>> just in case you have run into this, and/or you may be able to shed
>>>> more light on it.
>>>>
>>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM
>>>> phone meeting.
>>>>
>>>> Uday
>>>>
>>>>
>>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>>> news:462DE1A5.5000208@windriver.com...
>>>>> Thanks for this problem report and the very good diagnose.
>>>>> I have entered bug
>>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>>> to track the issue. You may want to put yourself on CC.
>>>>>
>>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>>> environment does not mean that it works. The SSH Preferences,
>>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>>> may be issues with Property Page handling. I'd recommend
>>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>>
>>>>> Thanks,
>>>>> --
>>>>> Martin Oberhuber
>>>>> Target Management Project Lead, DSDP PMC Member
>>>>> http://www.eclipse.org/dsdp/tm
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>
Re: Operation Failed. file system input or outpur error [message #8932 is a reply to message #8893] Tue, 15 May 2007 19:09 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Thanx Michael,

I checked at this location before I made my previous post. The
org.apache.commons.net and the org.apache.oro projects contain empty folders
(on the HEAD). I could not see any library jars or sources there. After
finding the project file, I did another search for the tags within the file,
and, voila, found the class files there. The ORO tag is v2_0_8 and the
Commons Net tag is v1_4_1. For some reason, these tags didn't show when I
exploded the Branches or Versions nodes until I performed the "Configure
Branches and Versions..." action.

Thanx.

Uday


"Michael" <strothjohann@strothjohann.de> wrote in message
news:f2ct3f$ov6$1@build.eclipse.org...
> As of TM 2.0, all third party libraries are hosted in the Orbit
> Repository:
>
> /cvsroot/tools, org.eclipse.orbit
>
> michael
>
> "Uday Kabe" <udaykabe@hotmail.com> schrieb im Newsbeitrag
> news:f2cr53$7c1$1@build.eclipse.org...
>> Martin,
>>
>> In order to attempt a move to 3.3, I have checked out the same RSE
>> plugins that I am using in 3.2 (per my previous posts). How do I get the
>> org.apache.oro and org.apace.commons.net plugins? The library jars do
>> not seem to exist in the Eclipse CVS projects.
>>
>> Thanx.
>>
>> Uday
>>
>>
>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>> news:f1d2m8$3fi$1@build.eclipse.org...
>>> Hello Uday,
>>>
>>> finding the Tags in the CVS Repository should work now.
>>>
>>> With respect to 3.2 compatibility, I'd recommend to rather
>>> use the latest Eclipse 3.3 Platform build (M7 to be released
>>> this Friday) together with EMF 2.2.0 in order to avoid Java5.
>>> It should work just fine.
>>>
>>> Thanks,
>>> --
>>> Martin Oberhuber
>>> Target Management Project Lead, DSDP PMC Member
>>> http://www.eclipse.org/dsdp/tm
>>>
>>>
>>> Uday Kabe wrote:
>>>> Sorry about the formatting. Outlook Express seems to do funky things
>>>> when editing and
>>>> sending a saved draft.
>>>>
>>>> Uday
>>>>
>>>>
>>>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>>>> news:f157du$99e$1@build.eclipse.org...
>>>>> Hello Martin,
>>>>>
>>>>> Thanx for your response and for your submission of a bug report for
>>>>> this
>>>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same
>>>>> the fix in it.
>>>>>
>>>>> I am developing an RCP-based product for integrating and exploring
>>>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about
>>>>> four
>>>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>>>> export
>>>>> destinations for Notes data. As much as I would like to migrate to
>>>>> 3.3, it is not easy
>>>>> for me to do so.
>>>>>
>>>>> I scrutinized the RSE source code structure and discovered that the
>>>>> set of plugins which
>>>>> I listed in my first post gave me the RSE functionality I needed.
>>>>> Unfortunately, I struggled
>>>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>>>> compiled. If you
>>>>> could list the plugins that I should use with 3.2, I would appreciate
>>>>> it. The ones I am
>>>>> using are very, very close to those in rse.map v1.86.
>>>>>
>>>>> On another note, I am using DND from my view to RSE's System View for
>>>>> exporting
>>>>> Notes data to an FTP site. However, in order to get this to work, I
>>>>> had to modify
>>>>> SystemView to add EMF's LocalTransfer.getInstance() to the
>>>>> droptransfers array in
>>>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>>>> mechanism did
>>>>> not seem to do the trick because it appeared that the associated
>>>>> callback was not
>>>>> being triggered. Obviously, although this mod works for me right now,
>>>>> it is
>>>>> not the right answer for RSE, and maybe not for me, since
>>>>> PluginTransfer is
>>>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>>>> target. I am
>>>>> willing to admit that the problem could be due to my understanding of
>>>>> how
>>>>> PluginTransfer should work, but I thought I would let you know of my
>>>>> experience
>>>>> just in case you have run into this, and/or you may be able to shed
>>>>> more light on it.
>>>>>
>>>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM
>>>>> phone meeting.
>>>>>
>>>>> Uday
>>>>>
>>>>>
>>>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>>>> news:462DE1A5.5000208@windriver.com...
>>>>>> Thanks for this problem report and the very good diagnose.
>>>>>> I have entered bug
>>>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>>>> to track the issue. You may want to put yourself on CC.
>>>>>>
>>>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>>>> environment does not mean that it works. The SSH Preferences,
>>>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>>>> may be issues with Property Page handling. I'd recommend
>>>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>>>
>>>>>> Thanks,
>>>>>> --
>>>>>> Martin Oberhuber
>>>>>> Target Management Project Lead, DSDP PMC Member
>>>>>> http://www.eclipse.org/dsdp/tm
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>
>
>
Re: Operation Failed. file system input or outpur error [message #9088 is a reply to message #8912] Sat, 19 May 2007 01:52 Go to previous message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Use the team project sets on
http://www.eclipse.org/dsdp/tm/development/cvs_setup.php

These are the simplest way of getting the TM stuff out
of CVS. Especially taking the branch setup of Orbit
into account. If the instructions on the website or
the FAQ are unclear in any respect, please let me know
(or fix the FAQ yourself -- it's a collaborative Wiki :-)

Cheers,
--
Martin Oberhuber
Wind River Systems, Inc.
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm
Re: Operation Failed. file system input or outpur error [message #566935 is a reply to message #7696] Wed, 18 April 2007 20:19 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

After doing some further troubleshooting, I discovered why two jobs are
refreshing the same node. In SystemDNDTransferRunnable, the RefreshJob
fires a ISystemResourceChangeEvents.EVENT_REFRESH. The SystemView is one of
the registered listeners. It launches its own ResourceChangeJob to handle
this event. By commenting out the following line in the RefreshJob, I
eliminated the "Operation failed..." message:

registry.fireEvent(new ....ISystemResourceChangedEvents.EVENT_REFRESH,
_target));

I am hoping that there any unintended consequences of this mod.

If anyone is aware of such consequences, I would appreciate hearing about
them.

Thank you.

Uday



"Uday Kabe" <udaykabe@hotmail.com> wrote in message
news:f05l9v$uj0$1@build.eclipse.org...
>I am hoping to (re-)use some of the RSE plugins to provide users the
>ability to transfer files to SFTP and/or FTP servers via drag-and-drop.
>Although the file transfer is working, the following message is
>consistently displayed in the Remote Systems viewer under the drop target
>after each drag-and-drop from my tree viewer.
>
> "Operation Failed. file system input or outpur error"
>
> It apparently all begins with the RefreshJob that is scheduled in
> SystemDNDTransferRunnable. The problem is a consequence of the following
> code in FTPService.internalFetch():
>
> if (monitor != null) {
> if (monitor.isCanceled())
> return null;
> }
>
> Apparently, there are at least two DeferredTreeContentManager.Jobs that
> are being created to fetch the children of the same node. So one gets
> canceled and eventually causes internalFetch() to return null. The null
> is passed to FTPFileAdapter.convertToRemoteFiles() in the "nodes"
> argument. The reference to "nodes" in the for loop throws a
> NullPointerException that is caught by SystemViewRemoteFileAdapter. Its
> general catch clause for Exception happily creates a SystemMessageObject
> that seems to result in the aforementioned message.
>
> I have tried to fix the "bug" in the usual ways (catching the
> NullPointerException, returning an empty IHostFile[] from internalFetch(),
> etc.) but have not resolved the issue. I am using Eclipse 3.2; this combo
> of plugins from CVS compiled without errors on my Eclipse installation.
>
> org.eclipse.rse.connectorservice.local v20070328
> org.eclipse.rse.connectorservice.ssh v20070328
> org.eclipse.rse.core v20070401
> org.eclipse.rse.files.ui v20070401
> org.eclipse.rse.services v20070221
> org.eclipse.rse.services.files.ftp v20070402
> org.eclipse.rse.services.local v20070402
> org.eclipse.rse.services.ssh v20070224
> org.eclipse.rse.subsystems.files.core v20070401
> org.eclipse.rse.subsystems.files.ftp v20070401
> org.eclipse.rse.subsystems.files.local v20070401
> org.eclipse.rse.subsystems.files.ssh v20070401
> org.eclipse.rse.subsystems.shells.core v20070328
> org.eclipse.rse.ui v20070401
>
> Thanks in advance for your help and for your software.
>
> Uday
>
Re: Operation Failed. file system input or outpur error [message #567009 is a reply to message #7717] Tue, 24 April 2007 10:53 Go to previous message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Thanks for this problem report and the very good diagnose.
I have entered bug
https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
to track the issue. You may want to put yourself on CC.

Note that being able to compile RSE HEAD in your Eclipse 3.2
environment does not mean that it works. The SSH Preferences,
for instance, require Eclipse 3.3M6 or later; also, there
may be issues with Property Page handling. I'd recommend
staying on top of latest Eclipse and upgrading to 3.3M6.

Thanks,
--
Martin Oberhuber
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm
Re: Operation Failed. file system input or outpur error [message #567109 is a reply to message #7779] Mon, 30 April 2007 17:01 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Hello Martin,

Thanx for your response and for your submission of a bug report for this
issue. Version 1.4 of SystemDNDTransferRunnable does have the same the fix
in it.

I am developing an RCP-based product for integrating and exploring
Lotus Notes/Domino Databases. I use EMF to model my app, and about four
weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as export
destinations for Notes data. As much as I would like to migrate to 3.3, it
is not easy
for me to do so.

I scrutinized the RSE source code structure and discovered that the set of
plugins which
I listed in my first post gave me the RSE functionality I needed.
Unfortunately, I struggled
to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
compiled. If you
could list the plugins that I should use with 3.2, I would appreciate it.
The ones I am
using are very, very close to those in rse.map v1.86.

On another note, I am using DND from my view to RSE's System View for
exporting
Notes data to an FTP site. However, in order to get this to work, I had to
modify
SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
array in
SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer mechanism
did
not seem to do the trick because it appeared that the associated callback
was not
being triggered. Obviously, although this mod works for me right now, it is
not the right answer for RSE, and maybe not for me, since PluginTransfer is
the "official" Eclipse mechanism for ad hoc DND from any source to any
target. I am
willing to admit that the problem could be due to my understanding of how
PluginTransfer should work, but I thought I would let you know of my
experience
just in case you have run into this, and/or you may be able to shed more
light on it.

Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
meeting.

Uday


"Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
news:462DE1A5.5000208@windriver.com...
> Thanks for this problem report and the very good diagnose.
> I have entered bug
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
> to track the issue. You may want to put yourself on CC.
>
> Note that being able to compile RSE HEAD in your Eclipse 3.2
> environment does not mean that it works. The SSH Preferences,
> for instance, require Eclipse 3.3M6 or later; also, there
> may be issues with Property Page handling. I'd recommend
> staying on top of latest Eclipse and upgrading to 3.3M6.
>
> Thanks,
> --
> Martin Oberhuber
> Target Management Project Lead, DSDP PMC Member
> http://www.eclipse.org/dsdp/tm
Re: Operation Failed. file system input or outpur error [message #567136 is a reply to message #7881] Mon, 30 April 2007 17:05 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Sorry about the formatting. Outlook Express seems to do funky things when
editing and
sending a saved draft.

Uday


"Uday Kabe" <udaykabe@hotmail.com> wrote in message
news:f157du$99e$1@build.eclipse.org...
> Hello Martin,
>
> Thanx for your response and for your submission of a bug report for this
> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
> fix in it.
>
> I am developing an RCP-based product for integrating and exploring
> Lotus Notes/Domino Databases. I use EMF to model my app, and about four
> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
> export
> destinations for Notes data. As much as I would like to migrate to 3.3,
> it is not easy
> for me to do so.
>
> I scrutinized the RSE source code structure and discovered that the set of
> plugins which
> I listed in my first post gave me the RSE functionality I needed.
> Unfortunately, I struggled
> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
> compiled. If you
> could list the plugins that I should use with 3.2, I would appreciate it.
> The ones I am
> using are very, very close to those in rse.map v1.86.
>
> On another note, I am using DND from my view to RSE's System View for
> exporting
> Notes data to an FTP site. However, in order to get this to work, I had
> to modify
> SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
> array in
> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer mechanism
> did
> not seem to do the trick because it appeared that the associated callback
> was not
> being triggered. Obviously, although this mod works for me right now, it
> is
> not the right answer for RSE, and maybe not for me, since PluginTransfer
> is
> the "official" Eclipse mechanism for ad hoc DND from any source to any
> target. I am
> willing to admit that the problem could be due to my understanding of how
> PluginTransfer should work, but I thought I would let you know of my
> experience
> just in case you have run into this, and/or you may be able to shed more
> light on it.
>
> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
> meeting.
>
> Uday
>
>
> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
> news:462DE1A5.5000208@windriver.com...
>> Thanks for this problem report and the very good diagnose.
>> I have entered bug
>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>> to track the issue. You may want to put yourself on CC.
>>
>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>> environment does not mean that it works. The SSH Preferences,
>> for instance, require Eclipse 3.3M6 or later; also, there
>> may be issues with Property Page handling. I'd recommend
>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>
>> Thanks,
>> --
>> Martin Oberhuber
>> Target Management Project Lead, DSDP PMC Member
>> http://www.eclipse.org/dsdp/tm
>
>
>
>
>
>
>
>
Re: Operation Failed. file system input or outpur error [message #567152 is a reply to message #7901] Thu, 03 May 2007 16:30 Go to previous message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Hello Uday,

finding the Tags in the CVS Repository should work now.

With respect to 3.2 compatibility, I'd recommend to rather
use the latest Eclipse 3.3 Platform build (M7 to be released
this Friday) together with EMF 2.2.0 in order to avoid Java5.
It should work just fine.

Thanks,
--
Martin Oberhuber
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm


Uday Kabe wrote:
> Sorry about the formatting. Outlook Express seems to do funky things when
> editing and
> sending a saved draft.
>
> Uday
>
>
> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
> news:f157du$99e$1@build.eclipse.org...
>> Hello Martin,
>>
>> Thanx for your response and for your submission of a bug report for this
>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>> fix in it.
>>
>> I am developing an RCP-based product for integrating and exploring
>> Lotus Notes/Domino Databases. I use EMF to model my app, and about four
>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>> export
>> destinations for Notes data. As much as I would like to migrate to 3.3,
>> it is not easy
>> for me to do so.
>>
>> I scrutinized the RSE source code structure and discovered that the set of
>> plugins which
>> I listed in my first post gave me the RSE functionality I needed.
>> Unfortunately, I struggled
>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>> compiled. If you
>> could list the plugins that I should use with 3.2, I would appreciate it.
>> The ones I am
>> using are very, very close to those in rse.map v1.86.
>>
>> On another note, I am using DND from my view to RSE's System View for
>> exporting
>> Notes data to an FTP site. However, in order to get this to work, I had
>> to modify
>> SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
>> array in
>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer mechanism
>> did
>> not seem to do the trick because it appeared that the associated callback
>> was not
>> being triggered. Obviously, although this mod works for me right now, it
>> is
>> not the right answer for RSE, and maybe not for me, since PluginTransfer
>> is
>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>> target. I am
>> willing to admit that the problem could be due to my understanding of how
>> PluginTransfer should work, but I thought I would let you know of my
>> experience
>> just in case you have run into this, and/or you may be able to shed more
>> light on it.
>>
>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
>> meeting.
>>
>> Uday
>>
>>
>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>> news:462DE1A5.5000208@windriver.com...
>>> Thanks for this problem report and the very good diagnose.
>>> I have entered bug
>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>> to track the issue. You may want to put yourself on CC.
>>>
>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>> environment does not mean that it works. The SSH Preferences,
>>> for instance, require Eclipse 3.3M6 or later; also, there
>>> may be issues with Property Page handling. I'd recommend
>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>
>>> Thanks,
>>> --
>>> Martin Oberhuber
>>> Target Management Project Lead, DSDP PMC Member
>>> http://www.eclipse.org/dsdp/tm
>>
>>
>>
>>
>>
>>
>>
>
>
Re: Operation Failed. file system input or outpur error [message #567232 is a reply to message #7921] Tue, 15 May 2007 17:37 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Martin,

In order to attempt a move to 3.3, I have checked out the same RSE plugins
that I am using in 3.2 (per my previous posts). How do I get the
org.apache.oro and org.apace.commons.net plugins? The library jars do not
seem to exist in the Eclipse CVS projects.

Thanx.

Uday


"Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
news:f1d2m8$3fi$1@build.eclipse.org...
> Hello Uday,
>
> finding the Tags in the CVS Repository should work now.
>
> With respect to 3.2 compatibility, I'd recommend to rather
> use the latest Eclipse 3.3 Platform build (M7 to be released
> this Friday) together with EMF 2.2.0 in order to avoid Java5.
> It should work just fine.
>
> Thanks,
> --
> Martin Oberhuber
> Target Management Project Lead, DSDP PMC Member
> http://www.eclipse.org/dsdp/tm
>
>
> Uday Kabe wrote:
>> Sorry about the formatting. Outlook Express seems to do funky things
>> when editing and
>> sending a saved draft.
>>
>> Uday
>>
>>
>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>> news:f157du$99e$1@build.eclipse.org...
>>> Hello Martin,
>>>
>>> Thanx for your response and for your submission of a bug report for this
>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>>> fix in it.
>>>
>>> I am developing an RCP-based product for integrating and exploring
>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about four
>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>> export
>>> destinations for Notes data. As much as I would like to migrate to 3.3,
>>> it is not easy
>>> for me to do so.
>>>
>>> I scrutinized the RSE source code structure and discovered that the set
>>> of plugins which
>>> I listed in my first post gave me the RSE functionality I needed.
>>> Unfortunately, I struggled
>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>> compiled. If you
>>> could list the plugins that I should use with 3.2, I would appreciate
>>> it. The ones I am
>>> using are very, very close to those in rse.map v1.86.
>>>
>>> On another note, I am using DND from my view to RSE's System View for
>>> exporting
>>> Notes data to an FTP site. However, in order to get this to work, I had
>>> to modify
>>> SystemView to add EMF's LocalTransfer.getInstance() to the droptransfers
>>> array in
>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>> mechanism did
>>> not seem to do the trick because it appeared that the associated
>>> callback was not
>>> being triggered. Obviously, although this mod works for me right now,
>>> it is
>>> not the right answer for RSE, and maybe not for me, since PluginTransfer
>>> is
>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>> target. I am
>>> willing to admit that the problem could be due to my understanding of
>>> how
>>> PluginTransfer should work, but I thought I would let you know of my
>>> experience
>>> just in case you have run into this, and/or you may be able to shed more
>>> light on it.
>>>
>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM phone
>>> meeting.
>>>
>>> Uday
>>>
>>>
>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>> news:462DE1A5.5000208@windriver.com...
>>>> Thanks for this problem report and the very good diagnose.
>>>> I have entered bug
>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>> to track the issue. You may want to put yourself on CC.
>>>>
>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>> environment does not mean that it works. The SSH Preferences,
>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>> may be issues with Property Page handling. I'd recommend
>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>
>>>> Thanks,
>>>> --
>>>> Martin Oberhuber
>>>> Target Management Project Lead, DSDP PMC Member
>>>> http://www.eclipse.org/dsdp/tm
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>
Re: Operation Failed. file system input or outpur error [message #567258 is a reply to message #8872] Tue, 15 May 2007 18:10 Go to previous message
Michael Strothjohann is currently offline Michael StrothjohannFriend
Messages: 52
Registered: July 2009
Member
As of TM 2.0, all third party libraries are hosted in the Orbit Repository:

/cvsroot/tools, org.eclipse.orbit

michael

"Uday Kabe" <udaykabe@hotmail.com> schrieb im Newsbeitrag
news:f2cr53$7c1$1@build.eclipse.org...
> Martin,
>
> In order to attempt a move to 3.3, I have checked out the same RSE plugins
> that I am using in 3.2 (per my previous posts). How do I get the
> org.apache.oro and org.apace.commons.net plugins? The library jars do not
> seem to exist in the Eclipse CVS projects.
>
> Thanx.
>
> Uday
>
>
> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
> news:f1d2m8$3fi$1@build.eclipse.org...
>> Hello Uday,
>>
>> finding the Tags in the CVS Repository should work now.
>>
>> With respect to 3.2 compatibility, I'd recommend to rather
>> use the latest Eclipse 3.3 Platform build (M7 to be released
>> this Friday) together with EMF 2.2.0 in order to avoid Java5.
>> It should work just fine.
>>
>> Thanks,
>> --
>> Martin Oberhuber
>> Target Management Project Lead, DSDP PMC Member
>> http://www.eclipse.org/dsdp/tm
>>
>>
>> Uday Kabe wrote:
>>> Sorry about the formatting. Outlook Express seems to do funky things
>>> when editing and
>>> sending a saved draft.
>>>
>>> Uday
>>>
>>>
>>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>>> news:f157du$99e$1@build.eclipse.org...
>>>> Hello Martin,
>>>>
>>>> Thanx for your response and for your submission of a bug report for
>>>> this
>>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>>>> fix in it.
>>>>
>>>> I am developing an RCP-based product for integrating and exploring
>>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about
>>>> four
>>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>>> export
>>>> destinations for Notes data. As much as I would like to migrate to
>>>> 3.3, it is not easy
>>>> for me to do so.
>>>>
>>>> I scrutinized the RSE source code structure and discovered that the set
>>>> of plugins which
>>>> I listed in my first post gave me the RSE functionality I needed.
>>>> Unfortunately, I struggled
>>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>>> compiled. If you
>>>> could list the plugins that I should use with 3.2, I would appreciate
>>>> it. The ones I am
>>>> using are very, very close to those in rse.map v1.86.
>>>>
>>>> On another note, I am using DND from my view to RSE's System View for
>>>> exporting
>>>> Notes data to an FTP site. However, in order to get this to work, I
>>>> had to modify
>>>> SystemView to add EMF's LocalTransfer.getInstance() to the
>>>> droptransfers array in
>>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>>> mechanism did
>>>> not seem to do the trick because it appeared that the associated
>>>> callback was not
>>>> being triggered. Obviously, although this mod works for me right now,
>>>> it is
>>>> not the right answer for RSE, and maybe not for me, since
>>>> PluginTransfer is
>>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>>> target. I am
>>>> willing to admit that the problem could be due to my understanding of
>>>> how
>>>> PluginTransfer should work, but I thought I would let you know of my
>>>> experience
>>>> just in case you have run into this, and/or you may be able to shed
>>>> more light on it.
>>>>
>>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM
>>>> phone meeting.
>>>>
>>>> Uday
>>>>
>>>>
>>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>>> news:462DE1A5.5000208@windriver.com...
>>>>> Thanks for this problem report and the very good diagnose.
>>>>> I have entered bug
>>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>>> to track the issue. You may want to put yourself on CC.
>>>>>
>>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>>> environment does not mean that it works. The SSH Preferences,
>>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>>> may be issues with Property Page handling. I'd recommend
>>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>>
>>>>> Thanks,
>>>>> --
>>>>> Martin Oberhuber
>>>>> Target Management Project Lead, DSDP PMC Member
>>>>> http://www.eclipse.org/dsdp/tm
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>
Re: Operation Failed. file system input or outpur error [message #567281 is a reply to message #8872] Tue, 15 May 2007 18:51 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Martin,

I visited the following link
http://www.eclipse.org/dsdp/tm/development/cvs_setup.php and found the
ti-orbit-anonymous.psf file which I use to retrieve the Commons Net and ORO
projects, but if you have some other suggestions to just get the bundles, I
would appreciate knowing about them.

Thanx.

Uday


"Uday Kabe" <udaykabe@hotmail.com> wrote in message
news:f2cr53$7c1$1@build.eclipse.org...
> Martin,
>
> In order to attempt a move to 3.3, I have checked out the same RSE plugins
> that I am using in 3.2 (per my previous posts). How do I get the
> org.apache.oro and org.apace.commons.net plugins? The library jars do not
> seem to exist in the Eclipse CVS projects.
>
> Thanx.
>
> Uday
>
>
> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
> news:f1d2m8$3fi$1@build.eclipse.org...
>> Hello Uday,
>>
>> finding the Tags in the CVS Repository should work now.
>>
>> With respect to 3.2 compatibility, I'd recommend to rather
>> use the latest Eclipse 3.3 Platform build (M7 to be released
>> this Friday) together with EMF 2.2.0 in order to avoid Java5.
>> It should work just fine.
>>
>> Thanks,
>> --
>> Martin Oberhuber
>> Target Management Project Lead, DSDP PMC Member
>> http://www.eclipse.org/dsdp/tm
>>
>>
>> Uday Kabe wrote:
>>> Sorry about the formatting. Outlook Express seems to do funky things
>>> when editing and
>>> sending a saved draft.
>>>
>>> Uday
>>>
>>>
>>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>>> news:f157du$99e$1@build.eclipse.org...
>>>> Hello Martin,
>>>>
>>>> Thanx for your response and for your submission of a bug report for
>>>> this
>>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same the
>>>> fix in it.
>>>>
>>>> I am developing an RCP-based product for integrating and exploring
>>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about
>>>> four
>>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>>> export
>>>> destinations for Notes data. As much as I would like to migrate to
>>>> 3.3, it is not easy
>>>> for me to do so.
>>>>
>>>> I scrutinized the RSE source code structure and discovered that the set
>>>> of plugins which
>>>> I listed in my first post gave me the RSE functionality I needed.
>>>> Unfortunately, I struggled
>>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>>> compiled. If you
>>>> could list the plugins that I should use with 3.2, I would appreciate
>>>> it. The ones I am
>>>> using are very, very close to those in rse.map v1.86.
>>>>
>>>> On another note, I am using DND from my view to RSE's System View for
>>>> exporting
>>>> Notes data to an FTP site. However, in order to get this to work, I
>>>> had to modify
>>>> SystemView to add EMF's LocalTransfer.getInstance() to the
>>>> droptransfers array in
>>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>>> mechanism did
>>>> not seem to do the trick because it appeared that the associated
>>>> callback was not
>>>> being triggered. Obviously, although this mod works for me right now,
>>>> it is
>>>> not the right answer for RSE, and maybe not for me, since
>>>> PluginTransfer is
>>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>>> target. I am
>>>> willing to admit that the problem could be due to my understanding of
>>>> how
>>>> PluginTransfer should work, but I thought I would let you know of my
>>>> experience
>>>> just in case you have run into this, and/or you may be able to shed
>>>> more light on it.
>>>>
>>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM
>>>> phone meeting.
>>>>
>>>> Uday
>>>>
>>>>
>>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>>> news:462DE1A5.5000208@windriver.com...
>>>>> Thanks for this problem report and the very good diagnose.
>>>>> I have entered bug
>>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>>> to track the issue. You may want to put yourself on CC.
>>>>>
>>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>>> environment does not mean that it works. The SSH Preferences,
>>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>>> may be issues with Property Page handling. I'd recommend
>>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>>
>>>>> Thanks,
>>>>> --
>>>>> Martin Oberhuber
>>>>> Target Management Project Lead, DSDP PMC Member
>>>>> http://www.eclipse.org/dsdp/tm
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>
>
Re: Operation Failed. file system input or outpur error [message #567310 is a reply to message #8893] Tue, 15 May 2007 19:09 Go to previous message
Eclipse UserFriend
Originally posted by: udaykabe.hotmail.com

Thanx Michael,

I checked at this location before I made my previous post. The
org.apache.commons.net and the org.apache.oro projects contain empty folders
(on the HEAD). I could not see any library jars or sources there. After
finding the project file, I did another search for the tags within the file,
and, voila, found the class files there. The ORO tag is v2_0_8 and the
Commons Net tag is v1_4_1. For some reason, these tags didn't show when I
exploded the Branches or Versions nodes until I performed the "Configure
Branches and Versions..." action.

Thanx.

Uday


"Michael" <strothjohann@strothjohann.de> wrote in message
news:f2ct3f$ov6$1@build.eclipse.org...
> As of TM 2.0, all third party libraries are hosted in the Orbit
> Repository:
>
> /cvsroot/tools, org.eclipse.orbit
>
> michael
>
> "Uday Kabe" <udaykabe@hotmail.com> schrieb im Newsbeitrag
> news:f2cr53$7c1$1@build.eclipse.org...
>> Martin,
>>
>> In order to attempt a move to 3.3, I have checked out the same RSE
>> plugins that I am using in 3.2 (per my previous posts). How do I get the
>> org.apache.oro and org.apace.commons.net plugins? The library jars do
>> not seem to exist in the Eclipse CVS projects.
>>
>> Thanx.
>>
>> Uday
>>
>>
>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>> news:f1d2m8$3fi$1@build.eclipse.org...
>>> Hello Uday,
>>>
>>> finding the Tags in the CVS Repository should work now.
>>>
>>> With respect to 3.2 compatibility, I'd recommend to rather
>>> use the latest Eclipse 3.3 Platform build (M7 to be released
>>> this Friday) together with EMF 2.2.0 in order to avoid Java5.
>>> It should work just fine.
>>>
>>> Thanks,
>>> --
>>> Martin Oberhuber
>>> Target Management Project Lead, DSDP PMC Member
>>> http://www.eclipse.org/dsdp/tm
>>>
>>>
>>> Uday Kabe wrote:
>>>> Sorry about the formatting. Outlook Express seems to do funky things
>>>> when editing and
>>>> sending a saved draft.
>>>>
>>>> Uday
>>>>
>>>>
>>>> "Uday Kabe" <udaykabe@hotmail.com> wrote in message
>>>> news:f157du$99e$1@build.eclipse.org...
>>>>> Hello Martin,
>>>>>
>>>>> Thanx for your response and for your submission of a bug report for
>>>>> this
>>>>> issue. Version 1.4 of SystemDNDTransferRunnable does have the same
>>>>> the fix in it.
>>>>>
>>>>> I am developing an RCP-based product for integrating and exploring
>>>>> Lotus Notes/Domino Databases. I use EMF to model my app, and about
>>>>> four
>>>>> weeks ago, decided to use RSE to provide SFTP, FTP and Local sites as
>>>>> export
>>>>> destinations for Notes data. As much as I would like to migrate to
>>>>> 3.3, it is not easy
>>>>> for me to do so.
>>>>>
>>>>> I scrutinized the RSE source code structure and discovered that the
>>>>> set of plugins which
>>>>> I listed in my first post gave me the RSE functionality I needed.
>>>>> Unfortunately, I struggled
>>>>> to find a version 1.0 tag for RSE so I resorted to the HEAD tags that
>>>>> compiled. If you
>>>>> could list the plugins that I should use with 3.2, I would appreciate
>>>>> it. The ones I am
>>>>> using are very, very close to those in rse.map v1.86.
>>>>>
>>>>> On another note, I am using DND from my view to RSE's System View for
>>>>> exporting
>>>>> Notes data to an FTP site. However, in order to get this to work, I
>>>>> had to modify
>>>>> SystemView to add EMF's LocalTransfer.getInstance() to the
>>>>> droptransfers array in
>>>>> SystemView.initDragAndDrop() . The intrinsic RSE PluginTransfer
>>>>> mechanism did
>>>>> not seem to do the trick because it appeared that the associated
>>>>> callback was not
>>>>> being triggered. Obviously, although this mod works for me right now,
>>>>> it is
>>>>> not the right answer for RSE, and maybe not for me, since
>>>>> PluginTransfer is
>>>>> the "official" Eclipse mechanism for ad hoc DND from any source to any
>>>>> target. I am
>>>>> willing to admit that the problem could be due to my understanding of
>>>>> how
>>>>> PluginTransfer should work, but I thought I would let you know of my
>>>>> experience
>>>>> just in case you have run into this, and/or you may be able to shed
>>>>> more light on it.
>>>>>
>>>>> Thanx again, and I am planning to listen in on Wednesday's DSDP/TM
>>>>> phone meeting.
>>>>>
>>>>> Uday
>>>>>
>>>>>
>>>>> "Martin Oberhuber" <martin.oberhuber@windriver.com> wrote in message
>>>>> news:462DE1A5.5000208@windriver.com...
>>>>>> Thanks for this problem report and the very good diagnose.
>>>>>> I have entered bug
>>>>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=183755
>>>>>> to track the issue. You may want to put yourself on CC.
>>>>>>
>>>>>> Note that being able to compile RSE HEAD in your Eclipse 3.2
>>>>>> environment does not mean that it works. The SSH Preferences,
>>>>>> for instance, require Eclipse 3.3M6 or later; also, there
>>>>>> may be issues with Property Page handling. I'd recommend
>>>>>> staying on top of latest Eclipse and upgrading to 3.3M6.
>>>>>>
>>>>>> Thanks,
>>>>>> --
>>>>>> Martin Oberhuber
>>>>>> Target Management Project Lead, DSDP PMC Member
>>>>>> http://www.eclipse.org/dsdp/tm
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>
>
>
Re: Operation Failed. file system input or outpur error [message #567567 is a reply to message #8912] Sat, 19 May 2007 01:52 Go to previous message
Martin Oberhuber is currently offline Martin OberhuberFriend
Messages: 1007
Registered: July 2009
Senior Member
Use the team project sets on
http://www.eclipse.org/dsdp/tm/development/cvs_setup.php

These are the simplest way of getting the TM stuff out
of CVS. Especially taking the branch setup of Orbit
into account. If the instructions on the website or
the FAQ are unclear in any respect, please let me know
(or fix the FAQ yourself -- it's a collaborative Wiki :-)

Cheers,
--
Martin Oberhuber
Wind River Systems, Inc.
Target Management Project Lead, DSDP PMC Member
http://www.eclipse.org/dsdp/tm
Previous Topic:Test. Please ignore this post!
Next Topic:remote project / remote debug
Goto Forum:
  


Current Time: Fri Mar 29 05:52:44 GMT 2024

Powered by FUDForum. Page generated in 0.04304 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top