Re: Class Loader issue

anon <[email protected]> Sun, 4 Jan 2015 20:50:08 +0100
Newsgroups gmane.comp.web.webobjects.wonder-disc
Message-ID <[email protected]>
--===============7103087303247221618==
Content-Type: multipart/alternative;
	boundary="------------040704020104070203040708"

--------------040704020104070203040708
Content-Type: text/plain; charset="windows-1252"; format=flowed
Content-Transfer-Encoding: 7bit

This is the output; as you can see, the Ajax framework is included.

/Classpath//
///home/anon/git/wonder/Frameworks/Core/ERExtensions/build/ERExtensions.framework/Resources/Java//
//*** --> Does not Exist!//
///home/anon/git/wonder/Examples/Ajax/AjaxExample/target/AjaxExample-6.1.3-SNAPSHOT.woa/Contents/Resources//
//*** --> Does not Exist!//
///home/anon/git/wonder/Examples/Ajax/AjaxExample/target/AjaxExample-6.1.3-SNAPSHOT.woa/Contents/WebServerResources//
//*** --> Does not Exist!//
/*//home/anon/git/wonder/Frameworks/Ajax/Ajax/target/Ajax.framework/Resources/**/
/**/*** --> Does not Exist!/**/
/**//home/anon/git/wonder/Frameworks/Ajax/Ajax/target/Ajax.framework/WebServerResources/**/
/**/*** --> Does not Exist!/*/
///home/anon/git/wonder/Frameworks/Ajax/Ajax/target/classes//
//*** --> Does not Exist!//
///home/anon/.m2/repository/wonder/core/ERFoundation/1.0/ERFoundation-1.0.jar//
//    --> Exists//
///home/anon/.m2/repository/wonder/core/ERWebObjects/1.0/ERWebObjects-1.0.jar//
//    --> Exists//
///home/anon/git/wonder/Frameworks/Core/JavaWOExtensions/target/JavaWOExtensions.framework/Resources//
//*** --> Does not Exist!//
///home/anon/git/wonder/Frameworks/Core/JavaWOExtensions/target/JavaWOExtensions.framework/WebServerResources//
//*** --> Does not Exist!//
///home/anon/git/wonder/Frameworks/Core/JavaWOExtensions/target/classes//
//*** --> Does not Exist!//
///home/anon/.m2/repository/com/webobjects/JavaFoundation/5.4.3/JavaFoundation-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/webobjects/JavaWebObjects/5.4.3/JavaWebObjects-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/webobjects/JavaXML/5.4.3/JavaXML-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/webobjects/JavaEOControl/5.4.3/JavaEOControl-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/webobjects/JavaEOAccess/5.4.3/JavaEOAccess-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/webobjects/JavaJDBCAdaptor/5.4.3/JavaJDBCAdaptor-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/webobjects/JavaWOJSPServlet/5.4.3/JavaWOJSPServlet-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/webobjects/JavaWebServicesSupport/5.4.3/JavaWebServicesSupport-5.4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/com/ibm/icu/icu4j/3.8/icu4j-3.8.jar//
//    --> Exists//
///home/anon/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar//
//    --> Exists//
///home/anon/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar//
//    --> Exists//
///home/anon/.m2/repository/joda-time/joda-time/2.3/joda-time-2.3.jar//
//    --> Exists//
///home/anon/.m2/repository/org/apache/httpcomponents/httpclient/4.3.1/httpclient-4.3.1.jar//
//    --> Exists//
///home/anon/.m2/repository/org/apache/httpcomponents/httpcore/4.3/httpcore-4.3.jar//
//    --> Exists//
///home/anon/.m2/repository/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar//
//    --> Exists//
///home/anon/.m2/repository/commons-codec/commons-codec/1.6/commons-codec-1.6.jar//
//    --> Exists//
///home/anon/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar//
//    --> Exists//
///home/anon/.m2/repository/junit/junit/4.8.1/junit-4.8.1.jar//
//    --> Exists//
///home/anon/.m2/repository/com/google/code/jabsorb/1.2.2/jabsorb-1.2.2.jar//
//    --> Exists//
///home/anon/git/wonder/Examples/Ajax/AjaxExample/target/test-classes//
//*** --> Does not Exist!//
///home/anon/git/wonder/Examples/Ajax/AjaxExample/target/classes//
//*** --> Does not Exist!//
///home/anon/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar//
//    --> Exists/



On 04.01.2015 20:15, Chuck Hill wrote:
> Try logging out the class path to see what is really being used.  You 
> can use this bit of code to log the properties too:
>
> static public String dumpJVMConfiguration()
>
>   {
>
>       StringBuffer output = new StringBuffer("\nSystem Properties 
> Follow....\n");
>
>
>       Properties systemProperties = System.getProperties();
>
>       Enumeration propertyNames = systemProperties.propertyNames();
>
> while (propertyNames.hasMoreElements())
>
>       {
>
>           String propertyName = (String) propertyNames.nextElement();
>
> if (propertyName.equals("java.class.path") || 
> propertyName.equals("com.webobjects.classpath"))
>
>           {
>
>               output.append("Classpath\n");
>
>               String pathSeparator = 
> systemProperties.getProperty("path.separator");
>
>
>               NSArray classPathComponents = 
> NSArray.componentsSeparatedByString(systemProperties.getProperty(propertyName),
>
>                   pathSeparator);
>
>               Enumeration classpathEnumeration = 
> classPathComponents.objectEnumerator();
>
> while (classpathEnumeration.hasMoreElements())
>
>               {
>
>                   String jarPath = (String) 
> classpathEnumeration.nextElement();
>
>                   output.append(jarPath + "\n");
>
> try
>
>                   {
>
>                       File jarFile = new File(jarPath);
>
>                       output.append((jarFile.isFile() ? "    --> 
> Exists\n" : "*** --> Does not Exist!\n"));
>
>                   }
>
> catch (Throwable t)
>
>                   {
>
>                       output.append("Exception validating classpath: " 
> + t + "\n");
>
>                   }
>
>               }
>
>           }
>
> else
>
>           {
>
>               output.append(propertyName + " = " + 
> systemProperties.getProperty(propertyName) + "\n");
>
>           }
>
>       }
>
>
> return output.toString();
>
>   }
>
>
>
>
> On 2015-01-04, 6:02 AM, "anon" wrote:
>
>     I am on Ubuntu. The only thing missing is the Apple Developper
>     Doc. But still, I am starting the application in eclipse with "run
>     as WOApplication". I believe it should be looking for resources
>     and classes locally.
>
>
>
>     On 04.01.2015 11:10, Amedeo Mantica wrote:
>>     Hi,
>>
>>     Are u developing on Mac or Ubuntu ?
>>
>>     How did u set wolips.properties ?
>>
>>
>>
>>     Amedeo
>>
>>
>>>     On 04/gen/2015, at 03:04, anon <[email protected]
>>>     <mailto:[email protected]>> wrote:
>>>
>>>     I am getting this exception when I test the AjaxExample; I can
>>>     tell for sure that all the classes and component have been
>>>     generated/compiled but at runtime, they can't be found by the
>>>     application when I click on a link.
>>>     =-O
>>>
>>>
>>>     /WARN  02:46:29 (NSLog               :44):
>>>     WOBundle.lookForClassInAllBundles(AjaxUpdateLink) failed!//
>>>     //WARN  02:46:29 (NSLog               :44):
>>>     <er.extensions.appserver.ERXComponentRequestHandler>: Exception
>>>     occurred while handling request://
>>>     //com.webobjects.foundation.NSForwardException
>>>     [java.lang.ClassNotFoundException] Cannot find class or
>>>     component named AjaxUpdateLink in runtime or in a loadable
>>>     bundle:<com.webobjects.appserver._private.WOComponentDefinition:
>>>     Error parsing template for Component :
>>>     'file:/home/anon/git/wonder/Examples/Ajax/AjaxExample/Components/HelloAjaxWorld.wo'://
>>>     //java.lang.ClassNotFoundException: Cannot find class or
>>>     component named AjaxUpdateLink in runtime or in a loadable bundle//
>>>     //[2015-1-4 2:46:29 CET] <WorkerThread2>
>>>     com.webobjects.foundation.NSForwardException
>>>     [java.lang.ClassNotFoundException] Cannot find class or
>>>     component named AjaxUpdateLink in runtime or in a loadable
>>>     bundle:<com.webobjects.appserver._private.WOComponentDefinition:
>>>     Error parsing template for Component :
>>>     'file:/home/anon/git/wonder/Examples/Ajax/AjaxExample/Components/HelloAjaxWorld.wo'://
>>>     //java.lang.ClassNotFoundException: Cannot find class or
>>>     component named AjaxUpdateLink in runtime or in a loadable bundle//
>>>     //    at
>>>     com.webobjects.appserver._private.WOComponentDefinition.template(WOComponentDefinition.java:375)//
>>>     //    at
>>>     com.webobjects.appserver.WOComponent.template(WOComponent.java:499)//
>>>     //    at
>>>     com.webobjects.appserver.WOComponent.appendToResponse(WOComponent.java:1112)//
>>>     //    at HelloAjaxWorld.appendToResponse(HelloAjaxWorld.java:21)/
>>>         at
>>>     com.webobjects.appserver.WOSession.appendToResponse(WOSession.java:1385)
>>>         at
>>>     er.extensions.appserver.ERXSession.appendToResponse(ERXSession.java:571)
>>>         at
>>>     com.webobjects.appserver.WOApplication.appendToResponse(WOApplication.java:1794)
>>>         at
>>>     er.extensions.appserver.ERXApplication.appendToResponse(ERXApplication.java:2023)
>>>
>>>
>>>
>>>     On 04.01.2015 02:35, anon wrote:
>>>>     I have just found the problem.
>>>>     The ERMovies and the ERExtensions do have a build.xml
>>>>     symlinking -> ../../../Build/build/build.xml. Somehow eclipse
>>>>     was complaining about the structure of the xml "Content is not
>>>>     allowed in prolog" and the ant error was keeping the depending
>>>>     projects from compiling correctly. I could not get eclipse to
>>>>     ignore errors in those specifics ant files and I just deleted
>>>>     them.
>>>>     Now I can get the classes to be generated ...:-)
>>>>
>>>>     On 04.01.2015 02:19, Paul Yu wrote:
>>>>>     Did you load WOLips plugin?
>>>>>
>>>>>     Sent from my iPhone
>>>>>     Please excuse iOS autocomplete
>>>>>
>>>>>>     On Jan 3, 2015, at 7:20 PM, anon <[email protected]> wrote:
>>>>>>
>>>>>>     The only eclipse version that was able to work with wonder
>>>>>>     latest is the
>>>>>>     version that I have installed using the ubuntu package
>>>>>>     manager (sudo
>>>>>>     apt-get install eclipse). It did install eclipse 3.8.1.
>>>>>>     Now I am "almost" there but there is a weird thing happening
>>>>>>     with my
>>>>>>     eclipse not being able to load the main application class. I
>>>>>>     get the
>>>>>>     error: "Error: Could not find or load main class
>>>>>>     er.ajax.example2.Application". I figure that the compiler
>>>>>>     can't seem to
>>>>>>     be able to generate the class files in the output
>>>>>>     folder("target/classes") and I still have not found out the
>>>>>>     reason.
>>>>>>     Any idea?
>>>>>>
>>>>>>>     On 03.01.2015 21:15, Ricardo Rolon wrote:
>>>>>>>     Hi Anon,
>>>>>>>
>>>>>>>     Welcome back !
>>>>>>>
>>>>>>>     What I know, the WOLips version is linked with the Eclipse
>>>>>>>     version,
>>>>>>>     that is, if you're using WOLips version 3.7 you must use
>>>>>>>     Eclipse version 3.7
>>>>>>>
>>>>>>>     I believe the latest stable WOLips version at this point is
>>>>>>>     3.7.
>>>>>>>
>>>>>>>     Could you install Eclipse version 3.7 in Ubuntu?
>>>>>>>
>>>>>>>     - Ricardo
>>>>>>>
>>>>>>>>     On 2015-01-03, at 1:02 PM, anon wrote:
>>>>>>>>
>>>>>>>>     Hello Wonderful list,
>>>>>>>>     I left Webobjects 6 years ago and am back again after I
>>>>>>>>     have been
>>>>>>>>     disenchanted with what is going on out there. Now I would
>>>>>>>>     like to have
>>>>>>>>     Ubuntu, eclipse( the version 3.8.1 shipped with
>>>>>>>>     Ubuntu14.04) and maven
>>>>>>>>     play nice alongside Webobjects. I have been trying for 4
>>>>>>>>     hours to no
>>>>>>>>     avail. Here are my issues:
>>>>>>>>     - WOLips doesnt work with any version of eclipse which has
>>>>>>>>     been
>>>>>>>>     installed manually on ubuntu (The WOComponent editor cannot
>>>>>>>>     open) .
>>>>>>>>     Tried many different things from googling (firefox library
>>>>>>>>     linking,
>>>>>>>>     different versions of firefox + eclipse installed)... not
>>>>>>>>     working :-(
>>>>>>>>
>>>>>>>>     - Since I am stuck with the version of eclipse that is
>>>>>>>>     shipped with
>>>>>>>>     ubuntu, there is no maven plugin for that old version and I
>>>>>>>>     have to use
>>>>>>>>     the maven goal eclipse:eclipse to generate the classpath,
>>>>>>>>     and it works.
>>>>>>>>     yeah :-)
>>>>>>>>
>>>>>>>>     - Eclipse still cannot resolve the classpath of my
>>>>>>>>     maven-generated
>>>>>>>>     $M2_REPO/classes and is still showing error all over the
>>>>>>>>     place, which
>>>>>>>>     means that I cannot start the WOApplication. I suspect that
>>>>>>>>     the WOLisp
>>>>>>>>     compiler does not pick up the $M2_REPO classpath... sad. :-(
>>>>>>>>
>>>>>>>>     Is there anyone out there that is stuck with Ubuntu 14.04
>>>>>>>>     and was able
>>>>>>>>     to have maven, wolisp and eclipse3.8.1 to work nicely? Or
>>>>>>>>     may be to have
>>>>>>>>     a newer version of eclipse working with wolisp without
>>>>>>>>     having to link to
>>>>>>>>     some firefox external library?
>>>>>>>>
>>>>>>>>     Thanks.
>>>>>>>>
>>>>>>>>     ------------------------------------------------------------------------------
>>>>>>>>
>>>>>>>>     Dive into the World of Parallel Programming! The Go
>>>>>>>>     Parallel Website,
>>>>>>>>     sponsored by Intel and developed in partnership with
>>>>>>>>     Slashdot Media, is your
>>>>>>>>     hub for all things parallel software development, from
>>>>>>>>     weekly thought
>>>>>>>>     leadership blogs to news, videos, case studies, tutorials
>>>>>>>>     and more. Take a
>>>>>>>>     look and join the conversation now.
>>>>>>>>     http://goparallel.sourceforge.net
>>>>>>>>     _______________________________________________
>>>>>>>>     Wonder-disc mailing list
>>>>>>>>     [email protected]
>>>>>>>>     https://lists.sourceforge.net/lists/listinfo/wonder-disc
>>>>>>
>>>>>>     ------------------------------------------------------------------------------
>>>>>>
>>>>>>     Dive into the World of Parallel Programming! The Go Parallel
>>>>>>     Website,
>>>>>>     sponsored by Intel and developed in partnership with Slashdot
>>>>>>     Media, is your
>>>>>>     hub for all things parallel software development, from weekly
>>>>>>     thought
>>>>>>     leadership blogs to news, videos, case studies, tutorials and
>>>>>>     more. Take a
>>>>>>     look and join the conversation now.
>>>>>>     http://goparallel.sourceforge.net
>>>>>>     _______________________________________________
>>>>>>     Wonder-disc mailing list
>>>>>>     [email protected]
>>>>>>     https://lists.sourceforge.net/lists/listinfo/wonder-disc
>>>>>
>>>>
>>>
>>>     ------------------------------------------------------------------------------
>>>     Dive into the World of Parallel Programming! The Go Parallel
>>>     Website,
>>>     sponsored by Intel and developed in partnership with Slashdot
>>>     Media, is your
>>>     hub for all things parallel software development, from weekly
>>>     thought
>>>     leadership blogs to news, videos, case studies, tutorials and
>>>     more. Take a
>>>     look and join the conversation now.
>>>     http://goparallel.sourceforge.net_______________________________________________
>>>     Wonder-disc mailing list
>>>     [email protected]
>>>     <mailto:[email protected]>
>>>     https://lists.sourceforge.net/lists/listinfo/wonder-disc
>>
>


--------------040704020104070203040708
Content-Type: text/html; charset="windows-1252"
Content-Transfer-Encoding: quoted-printable

<html>
  <head>
    <meta content=3D"text/html=3B charset=3Dwindows-1252"
      http-equiv=3D"Content-Type">
  </head>
  <body bgcolor=3D"#FFFFFF" text=3D"#000000">
    This is the output=3B as you can see=2C the Ajax framework is included.=
<br>
    <br>
    <i>Classpath</i><i><br>
    </i><i>/home/anon/git/wonder/Frameworks/Core/ERExtensions/build/ERExten=
sions.framework/Resources/Java</i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/git/wonder/Examples/Ajax/AjaxExample/target/AjaxExamp=
le-6.1.3-SNAPSHOT.woa/Contents/Resources</i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/git/wonder/Examples/Ajax/AjaxExample/target/AjaxExamp=
le-6.1.3-SNAPSHOT.woa/Contents/WebServerResources</i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><b><i>/home/anon/git/wonder/Frameworks/Ajax/Ajax/target/Ajax.framew=
ork/Resources</i></b><b><i><br>
      </i></b><b><i>*** --&gt=3B Does not Exist!</i></b><b><i><br>
      </i></b><b><i>/home/anon/git/wonder/Frameworks/Ajax/Ajax/target/Ajax.=
framework/WebServerResources</i></b><b><i><br>
      </i></b><b><i>*** --&gt=3B Does not Exist!</i></b><i><br>
    </i><i>/home/anon/git/wonder/Frameworks/Ajax/Ajax/target/classes</i><i>=
<br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/.m2/repository/wonder/core/ERFoundation/1.0/ERFoundat=
ion-1.0.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/wonder/core/ERWebObjects/1.0/ERWebObje=
cts-1.0.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/git/wonder/Frameworks/Core/JavaWOExtensions/target/Ja=
vaWOExtensions.framework/Resources</i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/git/wonder/Frameworks/Core/JavaWOExtensions/target/Ja=
vaWOExtensions.framework/WebServerResources</i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/git/wonder/Frameworks/Core/JavaWOExtensions/target/cl=
asses</i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaFoundation/5.4.3/Ja=
vaFoundation-5.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaWebObjects/5.4.3/Ja=
vaWebObjects-5.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaXML/5.4.3/JavaXML-5=
.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaEOControl/5.4.3/Jav=
aEOControl-5.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaEOAccess/5.4.3/Java=
EOAccess-5.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaJDBCAdaptor/5.4.3/J=
avaJDBCAdaptor-5.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaWOJSPServlet/5.4.3/=
JavaWOJSPServlet-5.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/webobjects/JavaWebServicesSupport/=
5.4.3/JavaWebServicesSupport-5.4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/ibm/icu/icu4j/3.8/icu4j-3.8.jar</i=
><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar</i=
><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.=
7.5.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/joda-time/joda-time/2.3/joda-time-2.3.=
jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/org/apache/httpcomponents/httpclient/4=
.3.1/httpclient-4.3.1.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/org/apache/httpcomponents/httpcore/4.3=
/httpcore-4.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/commons-logging/commons-logging/1.1.3/=
commons-logging-1.1.3.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/commons-codec/commons-codec/1.6/common=
s-codec-1.6.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/commons-lang/commons-lang/2.6/commons-=
lang-2.6.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/junit/junit/4.8.1/junit-4.8.1.jar</i><=
i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/.m2/repository/com/google/code/jabsorb/1.2.2/jabsorb-=
1.2.2.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><i><br>
    </i><i>/home/anon/git/wonder/Examples/Ajax/AjaxExample/target/test-clas=
ses</i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/git/wonder/Examples/Ajax/AjaxExample/target/classes</=
i><i><br>
    </i><i>*** --&gt=3B Does not Exist!</i><i><br>
    </i><i>/home/anon/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-lo=
g4j12-1.7.5.jar</i><i><br>
    </i><i>=A0=A0=A0 --&gt=3B Exists</i><br>
    <br>
    <br>
    <br>
    <div class=3D"moz-cite-prefix">On 04.01.2015 20:15=2C Chuck Hill wrote:=
<br>
    </div>
    <blockquote cite=3D"mid:D0CED13D.12B35E%[email protected]"
      type=3D"cite">
      <meta http-equiv=3D"Content-Type" content=3D"text/html=3B
        charset=3Dwindows-1252">
      <div>Try logging out the class path to see what is really being
        used. =A0You can use this bit of code to log the properties too:</d=
iv>
      <div><br>
      </div>
      <div>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0=A0<span style=3D"color: #931a68">static</span>
          <span style=3D"color: #931a68">public</span> String
          dumpJVMConfiguration()</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 {</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 StringBuffer output =3D
          <span style=3D"color: #931a68">new</span> StringBuffer(<span
            style=3D"color: #3933ff">"\nSystem Properties Follow....\n"</sp=
an>)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B
          min-height: 15px=3B"><br>
        </p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 Properties systemProperties =3D System.getProperties(=
)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 Enumeration propertyNames =3D
          systemProperties.propertyNames()=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 <span style=3D"color: #931a68">
            while</span> (propertyNames.hasMoreElements())</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 {</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 String propertyName =3D (String)
          propertyNames.nextElement()=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 <span style=3D"color: #931a68">
            if</span> (propertyName.equals(<span style=3D"color: #3933ff">"=
java.class.path"</span>)
          || propertyName.equals(<span style=3D"color: #3933ff">"com.webobj=
ects.classpath"</span>))</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 {</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 output.append(<span style=3D"color: #=
3933ff">"Classpath\n"</span>)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 String pathSeparator =3D
          systemProperties.getProperty(<span style=3D"color: #3933ff">"path=
.separator"</span>)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B
          min-height: 15px=3B"><br>
        </p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 NSArray classPathComponents =3D
NSArray.componentsSeparatedByString(systemProperties.getProperty(propertyNa=
me)=2C</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =
=A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 pathSeparator)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 Enumeration classpathEnumeration =3D
          classPathComponents.objectEnumerator()=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 <span style=3D"color: #931a68">
            while</span> (classpathEnumeration.hasMoreElements())</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 {</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 String jarPath =3D (String)
          classpathEnumeration.nextElement()=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 output.append(jarPath +
          <span style=3D"color: #3933ff">"\n"</span>)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
          <span style=3D"color: #931a68">try</span></p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 {</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 File jarFile =3D
          <span style=3D"color: #931a68">new</span> File(jarPath)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 output.append((jarFil=
e.isFile() ?
          <span style=3D"color: #3933ff">"=A0 =A0 --&gt=3B Exists\n"</span>=
 : <span
            style=3D"color: #3933ff">
            "*** --&gt=3B Does not Exist!\n"</span>))=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 }</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0
          <span style=3D"color: #931a68">catch</span> (Throwable t)</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 {</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 output.append(<span s=
tyle=3D"color:
            #3933ff">"Exception validating classpath: "</span> + t +
          <span style=3D"color: #3933ff">"\n"</span>)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 }</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 }</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 }</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 <span style=3D"color: #931a68">
            else</span></p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 {</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 =A0 =A0 output.append(propertyName +
          <span style=3D"color: #3933ff">" =3D "</span> +
          systemProperties.getProperty(propertyName) +
          <span style=3D"color: #3933ff">"\n"</span>)=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 =A0 =A0 }</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 }</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B
          min-height: 15px=3B"><br>
        </p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 =A0 =A0 <span style=3D"color: #931a68">
            return</span> output.toString()=3B</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B">=A0
          =A0 }</p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B"><br>
        </p>
        <p style=3D"margin: 0px=3B font-size: 11px=3B font-family: Monaco=
=3B"><br>
        </p>
      </div>
      <div><br>
      </div>
      <span id=3D"OLK_SRC_BODY_SECTION">
        <div>
          <div>On 2015-01-04=2C 6:02 AM=2C "anon" wrote:</div>
        </div>
        <div><br>
        </div>
        <blockquote id=3D"MAC_OUTLOOK_ATTRIBUTION_BLOCKQUOTE"
          style=3D"BORDER-LEFT: #b5c4df 5 solid=3B PADDING:0 0 0 5=3B MARGI=
N:0
          0 0 5=3B">
          <div>
            <div bgcolor=3D"#FFFFFF" text=3D"#000000">I am on Ubuntu. The
              only thing missing is the Apple Developper Doc. But still=2C
              I am starting the application in eclipse with "run as
              WOApplication". I believe it should be looking for
              resources and classes locally.<br>
              <br>
              <img moz-do-not-send=3D"true"
                src=3D"cid:[email protected]" alt=3D""><br=
>
              <br>
              <div class=3D"moz-cite-prefix">On 04.01.2015 11:10=2C Amedeo
                Mantica wrote:<br>
              </div>
              <blockquote
                cite=3D"mid:[email protected]"
                type=3D"cite">Hi=2C
                <div class=3D""><br class=3D"">
                </div>
                <div class=3D"">Are u developing on Mac or Ubuntu ?</div>
                <div class=3D""><br class=3D"">
                </div>
                <div class=3D"">How did u set wolips.properties ?</div>
                <div class=3D""><br class=3D"">
                </div>
                <div class=3D""><img moz-do-not-send=3D"true"
                    apple-inline=3D"yes"
                    id=3D"E15C25A8-8BD4-4092-A46A-76B70F17326F"
                    apple-width=3D"yes" apple-height=3D"yes"
                    src=3D"cid:[email protected]"
                    class=3D"" height=3D"662" width=3D"911"></div>
                <div class=3D""><br class=3D"">
                </div>
                <div class=3D""><br class=3D"">
                </div>
                <div class=3D"">Amedeo</div>
                <div class=3D""><br class=3D"">
                </div>
                <div class=3D""><br class=3D"">
                  <div>
                    <blockquote type=3D"cite" class=3D"">
                      <div class=3D"">On 04/gen/2015=2C at 03:04=2C anon &l=
t=3B<a
                          moz-do-not-send=3D"true"
                          href=3D"mailto:[email protected]" class=3D""=
>[email protected]</a>&gt=3B
                        wrote:</div>
                      <br class=3D"Apple-interchange-newline">
                      <div class=3D"">
                        <div bgcolor=3D"#FFFFFF" text=3D"#000000" class=3D"=
">I
                          am getting this exception when I test the
                          AjaxExample=3B I can tell for sure that all the
                          classes and component have been
                          generated/compiled but at runtime=2C they can't
                          be found by the application when I click on a
                          link. <br class=3D"">
                          <span class=3D"moz-smiley-s8">=3D-O </span><br
                            class=3D"">
                          <br class=3D"">
                          <br class=3D"">
                          <i class=3D"">WARN=A0 02:46:29
                            (NSLog=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0 :44):=A0
                            WOBundle.lookForClassInAllBundles(AjaxUpdateLin=
k)
                            failed!</i><i class=3D""><br class=3D"">
                          </i><i class=3D"">WARN=A0 02:46:29
                            (NSLog=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=
=A0 :44):=A0
                            &lt=3Ber.extensions.appserver.ERXComponentReque=
stHandler&gt=3B:
                            Exception occurred while handling request:</i><=
i
                            class=3D""><br class=3D"">
                          </i><i class=3D"">com.webobjects.foundation.NSFor=
wardException
                            [java.lang.ClassNotFoundException] Cannot
                            find class or component named AjaxUpdateLink
                            in runtime or in a loadable
                            bundle:&lt=3Bcom.webobjects.appserver._private.=
WOComponentDefinition:
                            Error parsing template for Component : '<a
                              moz-do-not-send=3D"true"
                              class=3D"moz-txt-link-freetext"
href=3D"file:///home/anon/git/wonder/Examples/Ajax/AjaxExample/Components/H=
elloAjaxWorld.wo">file:/home/anon/git/wonder/Examples/Ajax/AjaxExample/Comp=
onents/HelloAjaxWorld.wo</a>':</i><i
                            class=3D""><br class=3D"">
                          </i><i class=3D"">java.lang.ClassNotFoundExceptio=
n:
                            Cannot find class or component named
                            AjaxUpdateLink in runtime or in a loadable
                            bundle</i><i class=3D""><br class=3D"">
                          </i><i class=3D"">[2015-1-4 2:46:29 CET]
                            &lt=3BWorkerThread2&gt=3B
                            com.webobjects.foundation.NSForwardException
                            [java.lang.ClassNotFoundException] Cannot
                            find class or component named AjaxUpdateLink
                            in runtime or in a loadable
                            bundle:&lt=3Bcom.webobjects.appserver._private.=
WOComponentDefinition:
                            Error parsing template for Component : '<a
                              moz-do-not-send=3D"true"
                              class=3D"moz-txt-link-freetext"
href=3D"file:///home/anon/git/wonder/Examples/Ajax/AjaxExample/Components/H=
elloAjaxWorld.wo">file:/home/anon/git/wonder/Examples/Ajax/AjaxExample/Comp=
onents/HelloAjaxWorld.wo</a>':</i><i
                            class=3D""><br class=3D"">
                          </i><i class=3D"">java.lang.ClassNotFoundExceptio=
n:
                            Cannot find class or component named
                            AjaxUpdateLink in runtime or in a loadable
                            bundle</i><i class=3D""><br class=3D"">
                          </i><i class=3D"">=A0=A0=A0 at
com.webobjects.appserver._private.WOComponentDefinition.template(WOComponen=
tDefinition.java:375)</i><i
                            class=3D""><br class=3D"">
                          </i><i class=3D"">=A0=A0=A0 at
                            com.webobjects.appserver.WOComponent.template(W=
OComponent.java:499)</i><i
                            class=3D""><br class=3D"">
                          </i><i class=3D"">=A0=A0=A0 at
com.webobjects.appserver.WOComponent.appendToResponse(WOComponent.java:1112=
)</i><i
                            class=3D""><br class=3D"">
                          </i><i class=3D"">=A0=A0=A0 at
                            HelloAjaxWorld.appendToResponse(HelloAjaxWorld.=
java:21)</i><br
                            class=3D"">
                          =A0=A0=A0 at
                          com.webobjects.appserver.WOSession.appendToRespon=
se(WOSession.java:1385)<br
                            class=3D"">
                          =A0=A0=A0 at
                          er.extensions.appserver.ERXSession.appendToRespon=
se(ERXSession.java:571)<br
                            class=3D"">
                          =A0=A0=A0 at
com.webobjects.appserver.WOApplication.appendToResponse(WOApplication.java:=
1794)<br
                            class=3D"">
                          =A0=A0=A0 at
er.extensions.appserver.ERXApplication.appendToResponse(ERXApplication.java=
:2023)<br
                            class=3D"">
                          <br class=3D"">
                          <br class=3D"">
                          <br class=3D"">
                          <div class=3D"moz-cite-prefix">On 04.01.2015
                            02:35=2C anon wrote:<br class=3D"">
                          </div>
                          <blockquote
                            cite=3D"mid:[email protected]"
                            type=3D"cite" class=3D"">I have just found the
                            problem.
                            <br class=3D"">
                            The ERMovies and the ERExtensions do have a=A0
                            build.xml symlinking -&gt=3B
                            ../../../Build/build/build.xml. Somehow
                            eclipse was complaining about the structure
                            of the xml "Content is not allowed in
                            prolog" and the ant error was keeping the
                            depending projects from compiling correctly.
                            I could not get eclipse to ignore errors in
                            those specifics ant files and I just deleted
                            them.
                            <br class=3D"">
                            Now I can get the classes to be generated
                            ...:-) <br class=3D"">
                            <br class=3D"">
                            On 04.01.2015 02:19=2C Paul Yu wrote: <br
                              class=3D"">
                            <blockquote type=3D"cite" class=3D"">Did you
                              load WOLips plugin? <br class=3D"">
                              <br class=3D"">
                              Sent from my iPhone <br class=3D"">
                              Please excuse iOS autocomplete <br
                                class=3D"">
                              <br class=3D"">
                              <blockquote type=3D"cite" class=3D"">On Jan 3=
=2C
                                2015=2C at 7:20 PM=2C anon <a
                                  moz-do-not-send=3D"true"
                                  class=3D"moz-txt-link-rfc2396E"
                                  href=3D"mailto:[email protected]">
                                  &[email protected]&gt=3B</a>
                                wrote: <br class=3D"">
                                <br class=3D"">
                                The only eclipse version that was able
                                to work with wonder latest is the <br
                                  class=3D"">
                                version that I have installed using the
                                ubuntu package manager (sudo <br
                                  class=3D"">
                                apt-get install eclipse). It did install
                                eclipse 3.8.1. <br class=3D"">
                                Now I am "almost" there but there is a
                                weird thing happening with my <br
                                  class=3D"">
                                eclipse not being able to load the main
                                application class. I get the <br
                                  class=3D"">
                                error: "Error: Could not find or load
                                main class <br class=3D"">
                                er.ajax.example2.Application". I figure
                                that the compiler can't seem to <br
                                  class=3D"">
                                be able to generate the class files in
                                the output <br class=3D"">
                                folder("target/classes") and I still
                                have not found out the reason. <br
                                  class=3D"">
                                Any idea? <br class=3D"">
                                <br class=3D"">
                                <blockquote type=3D"cite" class=3D"">On
                                  03.01.2015 21:15=2C Ricardo Rolon wrote:
                                  <br class=3D"">
                                  Hi Anon=2C <br class=3D"">
                                  <br class=3D"">
                                  Welcome back ! <br class=3D"">
                                  <br class=3D"">
                                  What I know=2C the WOLips version is
                                  linked with the Eclipse version=2C <br
                                    class=3D"">
                                  that is=2C if you're using WOLips
                                  version 3.7 you must use Eclipse
                                  version 3.7 <br class=3D"">
                                  <br class=3D"">
                                  I believe the latest stable WOLips
                                  version at this point is 3.7. <br
                                    class=3D"">
                                  <br class=3D"">
                                  Could you install Eclipse version 3.7
                                  in Ubuntu? <br class=3D"">
                                  <br class=3D"">
                                  - Ricardo <br class=3D"">
                                  <br class=3D"">
                                  <blockquote type=3D"cite" class=3D"">On
                                    2015-01-03=2C at 1:02 PM=2C anon wrote:
                                    <br class=3D"">
                                    <br class=3D"">
                                    Hello Wonderful list=2C <br class=3D"">
                                    I left Webobjects 6 years ago and am
                                    back again after I have been <br
                                      class=3D"">
                                    disenchanted with what is going on
                                    out there. Now I would like to have
                                    <br class=3D"">
                                    Ubuntu=2C eclipse( the version 3.8.1
                                    shipped with Ubuntu14.04) and maven
                                    <br class=3D"">
                                    play nice alongside Webobjects. I
                                    have been trying for 4 hours to no <br
                                      class=3D"">
                                    avail. Here are my issues: <br
                                      class=3D"">
                                    - WOLips doesnt work with any
                                    version of eclipse which has been <br
                                      class=3D"">
                                    installed manually on ubuntu (The
                                    WOComponent editor cannot open) . <br
                                      class=3D"">
                                    Tried many different things from
                                    googling (firefox library linking=2C <b=
r
                                      class=3D"">
                                    different versions of firefox +
                                    eclipse installed)... not working
                                    :-( <br class=3D"">
                                    <br class=3D"">
                                    - Since I am stuck with the version
                                    of eclipse that is shipped with <br
                                      class=3D"">
                                    ubuntu=2C there is no maven plugin for
                                    that old version and I have to use <br
                                      class=3D"">
                                    the maven goal eclipse:eclipse to
                                    generate the classpath=2C and it
                                    works. <br class=3D"">
                                    yeah :-) <br class=3D"">
                                    <br class=3D"">
                                    - Eclipse still cannot resolve the
                                    classpath of my maven-generated <br
                                      class=3D"">
                                    $M2_REPO/classes and is still
                                    showing error all over the place=2C
                                    which <br class=3D"">
                                    means that I cannot start the
                                    WOApplication. I suspect that the
                                    WOLisp <br class=3D"">
                                    compiler does not pick up the
                                    $M2_REPO classpath... sad. :-( <br
                                      class=3D"">
                                    <br class=3D"">
                                    Is there anyone out there that is
                                    stuck with Ubuntu 14.04 and was able
                                    <br class=3D"">
                                    to have maven=2C wolisp and
                                    eclipse3.8.1 to work nicely? Or may
                                    be to have <br class=3D"">
                                    a newer version of eclipse working
                                    with wolisp without having to link
                                    to <br class=3D"">
                                    some firefox external library? <br
                                      class=3D"">
                                    <br class=3D"">
                                    Thanks. <br class=3D"">
                                    <br class=3D"">
                                    ---------------------------------------=
---------------------------------------
                                    <br class=3D"">
                                    Dive into the World of Parallel
                                    Programming! The Go Parallel
                                    Website=2C <br class=3D"">
                                    sponsored by Intel and developed in
                                    partnership with Slashdot Media=2C is
                                    your <br class=3D"">
                                    hub for all things parallel software
                                    development=2C from weekly thought <br
                                      class=3D"">
                                    leadership blogs to news=2C videos=2C
                                    case studies=2C tutorials and more.
                                    Take a <br class=3D"">
                                    look and join the conversation now.
                                    <a moz-do-not-send=3D"true"
                                      class=3D"moz-txt-link-freetext"
                                      href=3D"http://goparallel.sourceforge=
.net/">
                                      http://goparallel.sourceforge.net</a>
                                    <br class=3D"">
                                    _______________________________________=
________
                                    <br class=3D"">
                                    Wonder-disc mailing list <br
                                      class=3D"">
                                    <a moz-do-not-send=3D"true"
                                      class=3D"moz-txt-link-abbreviated"
                                      href=3D"mailto:[email protected]=
ceforge.net">[email protected]</a><br
                                      class=3D"">
                                    <a moz-do-not-send=3D"true"
                                      class=3D"moz-txt-link-freetext"
                                      href=3D"https://lists.sourceforge.net=
/lists/listinfo/wonder-disc">https://lists.sourceforge.net/lists/listinfo/w=
onder-disc</a><br
                                      class=3D"">
                                  </blockquote>
                                </blockquote>
                                <br class=3D"">
                                -------------------------------------------=
-----------------------------------
                                <br class=3D"">
                                Dive into the World of Parallel
                                Programming! The Go Parallel Website=2C <br
                                  class=3D"">
                                sponsored by Intel and developed in
                                partnership with Slashdot Media=2C is your
                                <br class=3D"">
                                hub for all things parallel software
                                development=2C from weekly thought <br
                                  class=3D"">
                                leadership blogs to news=2C videos=2C case
                                studies=2C tutorials and more. Take a <br
                                  class=3D"">
                                look and join the conversation now. <a
                                  moz-do-not-send=3D"true"
                                  class=3D"moz-txt-link-freetext"
                                  href=3D"http://goparallel.sourceforge.net=
/">
                                  http://goparallel.sourceforge.net</a>
                                <br class=3D"">
                                ___________________________________________=
____
                                <br class=3D"">
                                Wonder-disc mailing list <br class=3D"">
                                <a moz-do-not-send=3D"true"
                                  class=3D"moz-txt-link-abbreviated"
                                  href=3D"mailto:[email protected]=
rge.net">[email protected]</a><br
                                  class=3D"">
                                <a moz-do-not-send=3D"true"
                                  class=3D"moz-txt-link-freetext"
                                  href=3D"https://lists.sourceforge.net/lis=
ts/listinfo/wonder-disc">https://lists.sourceforge.net/lists/listinfo/wonde=
r-disc</a><br
                                  class=3D"">
                              </blockquote>
                              <br class=3D"">
                            </blockquote>
                            <br class=3D"">
                          </blockquote>
                          <br class=3D"">
                        </div>
---------------------------------------------------------------------------=
---<br
                          class=3D"">
                        Dive into the World of Parallel Programming! The
                        Go Parallel Website=2C<br class=3D"">
                        sponsored by Intel and developed in partnership
                        with Slashdot Media=2C is your<br class=3D"">
                        hub for all things parallel software
                        development=2C from weekly thought<br class=3D"">
                        leadership blogs to news=2C videos=2C case studies=
=2C
                        tutorials and more. Take a<br class=3D"">
                        look and join the conversation now. <a
                          moz-do-not-send=3D"true"
href=3D"http://goparallel.sourceforge.net__________________________________=
_____________"
                          class=3D"">
http://goparallel.sourceforge.net__________________________________________=
_____</a><br
                          class=3D"">
                        Wonder-disc mailing list<br class=3D"">
                        <a moz-do-not-send=3D"true"
                          href=3D"mailto:[email protected]"
                          class=3D"">[email protected]</a><=
br
                          class=3D"">
                        <a moz-do-not-send=3D"true"
                          class=3D"moz-txt-link-freetext"
                          href=3D"https://lists.sourceforge.net/lists/listi=
nfo/wonder-disc">https://lists.sourceforge.net/lists/listinfo/wonder-disc</=
a><br
                          class=3D"">
                      </div>
                    </blockquote>
                  </div>
                  <br class=3D"">
                </div>
              </blockquote>
              <br>
            </div>
          </div>
        </blockquote>
      </span>
    </blockquote>
    <br>
  </body>
</html>

--------------040704020104070203040708--


--===============7103087303247221618==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

------------------------------------------------------------------------------
Dive into the World of Parallel Programming! The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net
--===============7103087303247221618==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Wonder-disc mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wonder-disc

--===============7103087303247221618==--