-
1. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
gastaldi Mar 17, 2014 12:22 PM (in response to ivan_stefanov)This is easy to fix. Please open a JIRA and we'll make that work for you
Thanks!
On 17-03-2014 13:15, Ivan St. Ivanov wrote:
Hi folks,
This is more a JBoss Modules question, but I decided to start here
first
A colleague of mine is writing a Forge 1 plugin that uses SAP's APIs
to deploy ear files to the NetWeaver server. And he gets a weird
ClassNotFoundException for the class javax.rmi.CORBA.Tie. It is used
by our APIs for performing remote connections.
We rewrote his plugin to Forge 2 addon and we got the same exception
again. Here is the JBoss Modules specific part of the exception trace,
although I don't think it is quite useful:
Caused by: java.lang.ClassNotFoundException: javax.rmi.CORBA.Tie from
[Module
"com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
from AddonModuleLoader]
at
org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
at
org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
at
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
at
org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
at
org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
... 83 more
>
I de-compiled the SAP code that blows up and at the row where the
exception is thrown, I see the following:
this.out = new MarshalOutputStream(new ByteArrayOutput(this.offset));
The MarshalOutputStream class is from SAP APIs as well and it has in
its imports javax.rmi.CORBA.Tie.
Can you think of a reason why JBoss Modules would have a problem
loading a class that is part of the standard JDK?
Thanks,
Ivan
>
_______________________________________________
forge-dev mailing list
-
att1.html.zip 1.5 KB
-
-
2. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
ivan_stefanov Mar 17, 2014 12:25 PM (in response to gastaldi)Thanks! I hope I don't have to write a test case for it?
On Mon, Mar 17, 2014 at 6:22 PM, George Gastaldi <ggastald@redhat.com>wrote:
This is easy to fix. Please open a JIRA and we'll make that work for you
Thanks!
On 17-03-2014 13:15, Ivan St. Ivanov wrote:
Hi folks,
This is more a JBoss Modules question, but I decided to start here first
A colleague of mine is writing a Forge 1 plugin that uses SAP's APIs to
deploy ear files to the NetWeaver server. And he gets a weird
ClassNotFoundException for the class javax.rmi.CORBA.Tie. It is used by our
APIs for performing remote connections.
We rewrote his plugin to Forge 2 addon and we got the same exception
again. Here is the JBoss Modules specific part of the exception trace,
although I don't think it is quite useful:
Caused by: java.lang.ClassNotFoundException: javax.rmi.CORBA.Tie from
[Module
"com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
from AddonModuleLoader]
at
org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
at
org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
at
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
at
org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
at
org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
... 83 more
>
I de-compiled the SAP code that blows up and at the row where the
exception is thrown, I see the following:
this.out = new MarshalOutputStream(new ByteArrayOutput(this.offset));
The MarshalOutputStream class is from SAP APIs as well and it has in its
imports javax.rmi.CORBA.Tie.
Can you think of a reason why JBoss Modules would have a problem loading
a class that is part of the standard JDK?
Thanks,
Ivan
>
_______________________________________________
forge-dev mailing listforge-dev@lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/forge-dev
>
_______________________________________________
forge-dev mailing list
https://lists.jboss.org/mailman/listinfo/forge-dev
-
att1.html.zip 1.5 KB
-
-
3. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
gastaldi Mar 17, 2014 12:25 PM (in response to gastaldi)btw, the reason is that the javax/rmi/CORBA package is not configured to
be an accepted package in Furnace.
On 17-03-2014 13:22, George Gastaldi wrote:
This is easy to fix. Please open a JIRA and we'll make that work for
you
Thanks!
On 17-03-2014 13:15, Ivan St. Ivanov wrote:
>> Hi folks,
>>
>> This is more a JBoss Modules question, but I decided to start here
>> first
>>
>> A colleague of mine is writing a Forge 1 plugin that uses SAP's APIs
>> to deploy ear files to the NetWeaver server. And he gets a weird
>> ClassNotFoundException for the class javax.rmi.CORBA.Tie. It is used
>> by our APIs for performing remote connections.
>>
>> We rewrote his plugin to Forge 2 addon and we got the same exception
>> again. Here is the JBoss Modules specific part of the exception
>> trace, although I don't think it is quite useful:
>>
>> Caused by: java.lang.ClassNotFoundException: javax.rmi.CORBA.Tie from
>> [Module
>> "com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
>> from AddonModuleLoader]
>> at
>> org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
>> at
>> org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
>> ... 83 more
>>
>>
>> I de-compiled the SAP code that blows up and at the row where the
>> exception is thrown, I see the following:
>>
>> this.out = new MarshalOutputStream(new ByteArrayOutput(this.offset));
>>
>> The MarshalOutputStream class is from SAP APIs as well and it has in
>> its imports javax.rmi.CORBA.Tie.
>>
>> Can you think of a reason why JBoss Modules would have a problem
>> loading a class that is part of the standard JDK?
>>
>> Thanks,
>> Ivan
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>
_______________________________________________
forge-dev mailing list
-
att1.html.zip 1.6 KB
-
-
4. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
gastaldi Mar 17, 2014 12:26 PM (in response to ivan_stefanov)Only if you want to We have the
test.org.jboss.forge.furnace.classpath.XPathLookupTest that is quite
similar
On 17-03-2014 13:25, Ivan St. Ivanov wrote:
Thanks! I hope I don't have to write a test case for it?
>
On Mon, Mar 17, 2014 at 6:22 PM, George Gastaldi <ggastald@redhat.com
<mailto:ggastald@redhat.com>> wrote:
This is easy to fix. Please open a JIRA and we'll make that work
for you
Thanks!
On 17-03-2014 13:15, Ivan St. Ivanov wrote:
>> Hi folks,
>>
>> This is more a JBoss Modules question, but I decided to start
>> here first
>>
>> A colleague of mine is writing a Forge 1 plugin that uses SAP's
>> APIs to deploy ear files to the NetWeaver server. And he gets a
>> weird ClassNotFoundException for the class javax.rmi.CORBA.Tie.
>> It is used by our APIs for performing remote connections.
>>
>> We rewrote his plugin to Forge 2 addon and we got the same
>> exception again. Here is the JBoss Modules specific part of the
>> exception trace, although I don't think it is quite useful:
>>
>> Caused by: java.lang.ClassNotFoundException: javax.rmi.CORBA.Tie
>> from [Module
>> "com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
>> from AddonModuleLoader]
>> at
>> org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
>> at
>> org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
>> ... 83 more
>>
>>
>> I de-compiled the SAP code that blows up and at the row where the
>> exception is thrown, I see the following:
>>
>> this.out = new MarshalOutputStream(new ByteArrayOutput(this.offset));
>>
>> The MarshalOutputStream class is from SAP APIs as well and it has
>> in its imports javax.rmi.CORBA.Tie.
>>
>> Can you think of a reason why JBoss Modules would have a problem
>> loading a class that is part of the standard JDK?
>>
>> Thanks,
>> Ivan
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>
_______________________________________________
forge-dev mailing list
forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
https://lists.jboss.org/mailman/listinfo/forge-dev
>
>
_______________________________________________
forge-dev mailing list
-
att1.html.zip 1.9 KB
-
-
5. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
ivan_stefanov Mar 17, 2014 12:29 PM (in response to gastaldi)We had the same issue with Forge 1 (without Furnace). Do you think how we
can re-configure that in Furnace?
On Mon, Mar 17, 2014 at 6:26 PM, George Gastaldi <ggastald@redhat.com>wrote:
Only if you want to We have the
test.org.jboss.forge.furnace.classpath.XPathLookupTest that is quite
similar
>
On 17-03-2014 13:25, Ivan St. Ivanov wrote:
Thanks! I hope I don't have to write a test case for it?
>
On Mon, Mar 17, 2014 at 6:22 PM, George Gastaldi <ggastald@redhat.com>wrote:
>> This is easy to fix. Please open a JIRA and we'll make that work for you
>>
>>
>> Thanks!
>>
>> On 17-03-2014 13:15, Ivan St. Ivanov wrote:
>>
>> Hi folks,
>>
>> This is more a JBoss Modules question, but I decided to start here
>> first
>>
>> A colleague of mine is writing a Forge 1 plugin that uses SAP's APIs to
>> deploy ear files to the NetWeaver server. And he gets a weird
>> ClassNotFoundException for the class javax.rmi.CORBA.Tie. It is used by our
>> APIs for performing remote connections.
>>
>> We rewrote his plugin to Forge 2 addon and we got the same exception
>> again. Here is the JBoss Modules specific part of the exception trace,
>> although I don't think it is quite useful:
>>
>> Caused by: java.lang.ClassNotFoundException: javax.rmi.CORBA.Tie from
>> [Module
>> "com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
>> from AddonModuleLoader]
>> at
>> org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
>> at
>> org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
>> at
>> org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
>> ... 83 more
>>
>>
>> I de-compiled the SAP code that blows up and at the row where the
>> exception is thrown, I see the following:
>>
>> this.out = new MarshalOutputStream(new ByteArrayOutput(this.offset));
>>
>> The MarshalOutputStream class is from SAP APIs as well and it has in
>> its imports javax.rmi.CORBA.Tie.
>>
>> Can you think of a reason why JBoss Modules would have a problem
>> loading a class that is part of the standard JDK?
>>
>> Thanks,
>> Ivan
>>
>>
>> _______________________________________________
>> forge-dev mailing listforge-dev@lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/forge-dev
>>
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>
>
>
_______________________________________________
forge-dev mailing listforge-dev@lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/forge-dev
>
_______________________________________________
forge-dev mailing list
https://lists.jboss.org/mailman/listinfo/forge-dev
-
att1.html.zip 1.8 KB
-
-
6. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
gastaldi Mar 17, 2014 12:32 PM (in response to ivan_stefanov)Lincoln is working in an extension to manage these different paths. For
the meantime, we'll add the required packages as a ModuleSpec in Furnace.
Do you have any other package besides javax.rmi.CORBA that is also used?
On 17-03-2014 13:29, Ivan St. Ivanov wrote:
We had the same issue with Forge 1 (without Furnace). Do you think how
we can re-configure that in Furnace?
>
On Mon, Mar 17, 2014 at 6:26 PM, George Gastaldi <ggastald@redhat.com
<mailto:ggastald@redhat.com>> wrote:
Only if you want to We have the
test.org.jboss.forge.furnace.classpath.XPathLookupTest that is
quite similar
>
On 17-03-2014 13:25, Ivan St. Ivanov wrote:
>> Thanks! I hope I don't have to write a test case for it?
>>
>>
>> On Mon, Mar 17, 2014 at 6:22 PM, George Gastaldi
>> <ggastald@redhat.com <mailto:ggastald@redhat.com>> wrote:
>>
>> This is easy to fix. Please open a JIRA and we'll make that
>> work for you
>>
>> Thanks!
>>
>> On 17-03-2014 13:15, Ivan St. Ivanov wrote:
>>> Hi folks,
>>>
>>> This is more a JBoss Modules question, but I decided to
>>> start here first
>>>
>>> A colleague of mine is writing a Forge 1 plugin that uses
>>> SAP's APIs to deploy ear files to the NetWeaver server. And
>>> he gets a weird ClassNotFoundException for the class
>>> javax.rmi.CORBA.Tie. It is used by our APIs for performing
>>> remote connections.
>>>
>>> We rewrote his plugin to Forge 2 addon and we got the same
>>> exception again. Here is the JBoss Modules specific part of
>>> the exception trace, although I don't think it is quite useful:
>>>
>>> Caused by: java.lang.ClassNotFoundException:
>>> javax.rmi.CORBA.Tie from [Module
>>> "com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
>>> from AddonModuleLoader]
>>> at
>>> org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
>>> ... 83 more
>>>
>>>
>>> I de-compiled the SAP code that blows up and at the row
>>> where the exception is thrown, I see the following:
>>>
>>> this.out = new MarshalOutputStream(new
>>> ByteArrayOutput(this.offset));
>>>
>>> The MarshalOutputStream class is from SAP APIs as well and
>>> it has in its imports javax.rmi.CORBA.Tie.
>>>
>>> Can you think of a reason why JBoss Modules would have a
>>> problem loading a class that is part of the standard JDK?
>>>
>>> Thanks,
>>> Ivan
>>>
>>>
>>> _______________________________________________
>>> forge-dev mailing list
>>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>
>>
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>
_______________________________________________
forge-dev mailing list
forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
https://lists.jboss.org/mailman/listinfo/forge-dev
>
>
_______________________________________________
forge-dev mailing list
-
att1.html.zip 2.3 KB
-
-
7. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
ivan_stefanov Mar 17, 2014 12:34 PM (in response to gastaldi)God knows, it's thousands lines of code, owned by other teams
I created this JIRA:
https://issues.jboss.org/browse/FORGE-1675
On Mon, Mar 17, 2014 at 6:32 PM, George Gastaldi <ggastald@redhat.com>wrote:
Lincoln is working in an extension to manage these different paths. For
the meantime, we'll add the required packages as a ModuleSpec in Furnace.
Do you have any other package besides javax.rmi.CORBA that is also used?
>
On 17-03-2014 13:29, Ivan St. Ivanov wrote:
We had the same issue with Forge 1 (without Furnace). Do you think how we
can re-configure that in Furnace?
>
On Mon, Mar 17, 2014 at 6:26 PM, George Gastaldi <ggastald@redhat.com>wrote:
>> Only if you want to We have the
>> test.org.jboss.forge.furnace.classpath.XPathLookupTest that is quite
>> similar
>>
>>
>> On 17-03-2014 13:25, Ivan St. Ivanov wrote:
>>
>> Thanks! I hope I don't have to write a test case for it?
>>
>>
>> On Mon, Mar 17, 2014 at 6:22 PM, George Gastaldi <ggastald@redhat.com>wrote:
>>
>>> This is easy to fix. Please open a JIRA and we'll make that work for
>>> you
>>>
>>> Thanks!
>>>
>>> On 17-03-2014 13:15, Ivan St. Ivanov wrote:
>>>
>>> Hi folks,
>>>
>>> This is more a JBoss Modules question, but I decided to start here
>>> first
>>>
>>> A colleague of mine is writing a Forge 1 plugin that uses SAP's APIs
>>> to deploy ear files to the NetWeaver server. And he gets a weird
>>> ClassNotFoundException for the class javax.rmi.CORBA.Tie. It is used by our
>>> APIs for performing remote connections.
>>>
>>> We rewrote his plugin to Forge 2 addon and we got the same exception
>>> again. Here is the JBoss Modules specific part of the exception trace,
>>> although I don't think it is quite useful:
>>>
>>> Caused by: java.lang.ClassNotFoundException: javax.rmi.CORBA.Tie from
>>> [Module
>>> "com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
>>> from AddonModuleLoader]
>>> at
>>> org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
>>> at
>>> org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
>>> ... 83 more
>>>
>>>
>>> I de-compiled the SAP code that blows up and at the row where the
>>> exception is thrown, I see the following:
>>>
>>> this.out = new MarshalOutputStream(new ByteArrayOutput(this.offset));
>>>
>>> The MarshalOutputStream class is from SAP APIs as well and it has in
>>> its imports javax.rmi.CORBA.Tie.
>>>
>>> Can you think of a reason why JBoss Modules would have a problem
>>> loading a class that is part of the standard JDK?
>>>
>>> Thanks,
>>> Ivan
>>>
>>>
>>> _______________________________________________
>>> forge-dev mailing listforge-dev@lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/forge-dev
>>>
>>>
>>>
>>> _______________________________________________
>>> forge-dev mailing list
>>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>>
>>
>>
>>
>> _______________________________________________
>> forge-dev mailing listforge-dev@lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/forge-dev
>>
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>
>
>
_______________________________________________
forge-dev mailing listforge-dev@lists.jboss.orghttps://lists.jboss.org/mailman/listinfo/forge-dev
>
_______________________________________________
forge-dev mailing list
https://lists.jboss.org/mailman/listinfo/forge-dev
-
att1.html.zip 2.2 KB
-
-
8. Re: [forge-dev] JBoss modules doesn't load CORBA (lol)
gastaldi Mar 17, 2014 1:06 PM (in response to ivan_stefanov)Fixed. Try it with 2.2.1-SNAPSHOT.
Thanks for reporting this! Hope your CORBA code works now in your Forge
addons!
On 17-03-2014 13:34, Ivan St. Ivanov wrote:
God knows, it's thousands lines of code, owned by other teams
I created this JIRA:
https://issues.jboss.org/browse/FORGE-1675
>
On Mon, Mar 17, 2014 at 6:32 PM, George Gastaldi <ggastald@redhat.com
<mailto:ggastald@redhat.com>> wrote:
Lincoln is working in an extension to manage these different
paths. For the meantime, we'll add the required packages as a
ModuleSpec in Furnace.
Do you have any other package besides javax.rmi.CORBA that is also
used?
>
On 17-03-2014 13:29, Ivan St. Ivanov wrote:
>> We had the same issue with Forge 1 (without Furnace). Do you
>> think how we can re-configure that in Furnace?
>>
>>
>> On Mon, Mar 17, 2014 at 6:26 PM, George Gastaldi
>> <ggastald@redhat.com <mailto:ggastald@redhat.com>> wrote:
>>
>> Only if you want to We have the
>> test.org.jboss.forge.furnace.classpath.XPathLookupTest that
>> is quite similar
>>
>>
>> On 17-03-2014 13:25, Ivan St. Ivanov wrote:
>>> Thanks! I hope I don't have to write a test case for it?
>>>
>>>
>>> On Mon, Mar 17, 2014 at 6:22 PM, George Gastaldi
>>> <ggastald@redhat.com <mailto:ggastald@redhat.com>> wrote:
>>>
>>> This is easy to fix. Please open a JIRA and we'll make
>>> that work for you
>>>
>>> Thanks!
>>>
>>> On 17-03-2014 13:15, Ivan St. Ivanov wrote:
>>>> Hi folks,
>>>>
>>>> This is more a JBoss Modules question, but I decided to
>>>> start here first
>>>>
>>>> A colleague of mine is writing a Forge 1 plugin that
>>>> uses SAP's APIs to deploy ear files to the NetWeaver
>>>> server. And he gets a weird ClassNotFoundException for
>>>> the class javax.rmi.CORBA.Tie. It is used by our APIs
>>>> for performing remote connections.
>>>>
>>>> We rewrote his plugin to Forge 2 addon and we got the
>>>> same exception again. Here is the JBoss Modules
>>>> specific part of the exception trace, although I don't
>>>> think it is quite useful:
>>>>
>>>> Caused by: java.lang.ClassNotFoundException:
>>>> javax.rmi.CORBA.Tie from [Module
>>>> "com.sap.nw.deploy.forge.nwdeploy:1.0.0-SNAPSHOT_d5a54a79-5d83-4f31-bc98-1d6384c4df1c"
>>>> from AddonModuleLoader]
>>>> at
>>>> org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:197)
>>>> at
>>>> org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:443)
>>>> at
>>>> org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:431)
>>>> at
>>>> org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:373)
>>>> at
>>>> org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:118)
>>>> ... 83 more
>>>>
>>>>
>>>> I de-compiled the SAP code that blows up and at the row
>>>> where the exception is thrown, I see the following:
>>>>
>>>> this.out = new MarshalOutputStream(new
>>>> ByteArrayOutput(this.offset));
>>>>
>>>> The MarshalOutputStream class is from SAP APIs as well
>>>> and it has in its imports javax.rmi.CORBA.Tie.
>>>>
>>>> Can you think of a reason why JBoss Modules would have
>>>> a problem loading a class that is part of the standard JDK?
>>>>
>>>> Thanks,
>>>> Ivan
>>>>
>>>>
>>>> _______________________________________________
>>>> forge-dev mailing list
>>>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>>>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>>
>>>
>>> _______________________________________________
>>> forge-dev mailing list
>>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> forge-dev mailing list
>>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>
>>
>>
>>
>> _______________________________________________
>> forge-dev mailing list
>> forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
>> https://lists.jboss.org/mailman/listinfo/forge-dev
>
_______________________________________________
forge-dev mailing list
forge-dev@lists.jboss.org <mailto:forge-dev@lists.jboss.org>
https://lists.jboss.org/mailman/listinfo/forge-dev
>
>
_______________________________________________
forge-dev mailing list
-
att1.html.zip 2.7 KB
-