Mohan Kumar M | 8 Aug 2006 12:09
Picon

[ANNOUNCE] sysfsutils-2.1.0-RC

Hi,

sysfsutils-2.1.0-Release Candidate is available for download.

RPMs for source, i386, PPC64 and source tarball are available at
	http://linux-diag.sourceforge.net/Sysfsutils.html

This release includes:
* sysfs_open_link API
* sysfs_open_device_tree API
* C++ Compilation support
* subsystem link support in sysfs_device structure
and some minor fixups.

Comments, suggestions and feedback are welcome.

If there is no issue in 2.1.0-RC, I am planning to release it by next
week.

Regards,
Mohan.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Jian CJ Chen | 9 Aug 2006 07:58
Picon
Favicon

questions about test_sysfs_get_classdev_driver of sysfsutils testsuites


Hi guys, I am now running sysfsutils test suites under sles10. However, I got a test case failure message, look at following:
test_sysfs_get_classdev_driver: FAILED with flag = 0 errno = 2
Definition are like the following in libsysfs.conf.
VALID_CLASS=net
VALID_CLASS_DEVICE=eth0
VALID_CLASS_DEVICE_PATH=/sys/class/net/eth0
VALID_CLASS_DEV_ATTR=type

After adding some printfs in lib/sysfs_class.c sysfs_get_classdev_driver():
        369         safestrcpy(drvpath, clsdev->path);
        370         safestrcat(drvpath, "/driver");
        371         printf("cj: drvpath=%s\n", drvpath);
        372         if ((sysfs_path_is_link(drvpath)) != 0) {
        373                 if (clsdev->driver != NULL) {
        374                         sysfs_close_driver(clsdev->driver);
        375                         clsdev->driver = NULL;
        376                 }
        377                 printf("cj: out from %s\n", "sysfs_path_is_link");
        378                 return NULL;
        379         }
I got the following output:
   cj: drvpath=/sys/class/net/eth0/driver
   cj: out from sysfs_path_is_link
But /sys/class/net/eth0/driver does not exist in sysfs.
[root <at> localhost sysfsutils-1.3.0]# ls /sys/class/net/eth0/
addr_len  broadcast  device   features  ifindex  link_mode  operstate   tx_queue_len  uevent
address   carrier    dormant  flags     iflink   mtu        statistics  type          weight

This case is planning to get net/eth0's driver object; but just as above, it returned NULL because it found that /sys/class/net/eth0/driver is not a link and is not created in sysfs. However, I does notice that /sys/class/net/eth0/device/driver is a link and exists.

So here is my question:
Is driver expected to be created under /sys/class/net/eth0 or /sys/class/net/eth0/device?
If former case, then network drivers did not follow this spec. I notice that no driver is created under other devices like /sys/class/usb_device/usbdev2.1/ etc.

If latter case, why sysfs_get_classdev_driver() use safestrcat(drvpath, "/driver") instead of safestrcat(drvpath, "device/driver")? I do not think the case should set VALID_CLASS_DEVICE_PATH=/sys/class/net/eth0/device. Is it a bug sysfsutils?

Best Regards!

Chen Jian(陈剑)

MCP Test, Linux Technology Center, China Systems & Technology Lab
China Development Labs, Beijing      Email: chenjian <at> cn.ibm.com
Tel: 8610-82782244-3578   T/L: 915-2244,ext:3578    Fax: 8610-82782244-3251
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Linux-diag-devel mailing list
Linux-diag-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-diag-devel
Mohan Kumar M | 9 Aug 2006 13:52
Picon

Re: questions about test_sysfs_get_classdev_driver of sysfsutils testsuites

On Wed, Aug 09, 2006 at 01:58:24PM +0800, Jian CJ Chen wrote:
> Hi guys, I am now running sysfsutils test suites under sles10. However, I 
> got a test case failure message, look at following:
> test_sysfs_get_classdev_driver: FAILED with flag = 0 errno = 2
>

Hi Chen,

I think you use sysfsutils-1.3.0 shipped with SLES10.

Please download latest sysfsutils-2.1.0 (or sysfsutils-2.1.0-RC) from
sysfsutils website.
	http://linux-diag.sourceforge.net/Sysfsutils.html

There is plan to merge sysfs class to sysfs device.

Lots of changes are introduced in sysfsutils-2.0.0 release.

Please try to check with the latest sysfsutils and let me know your
comments.

Regards,
Mohan.

Note:
sysfsutils-2.x does not have sysfs_get_classdev_driver() API.

> So here is my question:
> Is driver expected to be created under /sys/class/net/eth0 or 
> /sys/class/net/eth0/device?
> If former case, then network drivers did not follow this spec. I notice 
> that no driver is created under other devices like 
> /sys/class/usb_device/usbdev2.1/ etc.
> 
> If latter case, why sysfs_get_classdev_driver() use safestrcat(drvpath, 
> "/driver") instead of safestrcat(drvpath, "device/driver")? I do not think 
> the case should set VALID_CLASS_DEVICE_PATH=/sys/class/net/eth0/device. Is 
> it a bug sysfsutils?
> 
> Best Regards!
> 
> Chen Jian(陈剑)
> 
> MCP Test, Linux Technology Center, China Systems & Technology Lab
> China Development Labs, Beijing      Email: chenjian <at> cn.ibm.com
> Tel: 8610-82782244-3578   T/L: 915-2244,ext:3578    Fax: 
> 8610-82782244-3251

> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Linux-diag-devel mailing list
> Linux-diag-devel <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux-diag-devel

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Linux-diag-devel mailing list
Linux-diag-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-diag-devel
Mohan Kumar M | 23 Aug 2006 13:48
Picon

[ANNOUNCE] Libsysfs 2.1.0 Release

Hi,

Libsysfs 2.1.0 is available for download at:

	http://linux-diag.sourceforge.net/Sysfsutils.html

This release includes new API inclusions, minor fixes and sysfs_device
structure update.

Comments, suggestions and feedback are always welcome.

Regards,
Mohan.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Reeve Yang | 23 Aug 2006 23:55
Picon

sysfs shows blank screen

I'm using sysfsutils-2.0.0 with kernel version 2.6.14 on target machine with MPC 8245 CPU. I found whenever I try to read something from sysfs, it prints out half screen of blanks, and first a few lines are cut in middle. Folowing is the output example, does anyone have similiar problem? And how to fix it if not possible?

Thanks!

- Reeve

/ # systool -c hwmon -v
Class = "hwmon"

  Class Device = "hwmon0"
  Class Device path = "/sys/class/hwmon/hwmon0"

    Device = "0-002c"
    Device path = "/sys/devices/platform/fsl-i2c.1/i2c-0/0-002c"




































      alarms              = "0"
      aout_output         = "1250"
      chassis_clear       = <store method only>
      cpu0_vid            = "0"
      dac                 = "255"
      fan1_div            = "8"
      fan1_input          = "6250"
      fan1_min            = "664"
      fan2_div            = "8"
      fan2_input          = "6027"
      fan2_min            = "664"
      in0_input           = "2487"
      in0_max
        = "3320"

      in0_min
            = "0
"
      in1_inp
ut           = "
2995"
      in1
_max
 = "3586"

 in1_min
     = "0"

  in2_input
      = "3266"

      in2_max
          = "438
3"
      in2_mi
n             =
"0"
      in3_i
nput           =
 "5000"
      i
n3_max
   = "6641"

   in3_min
       = "0"

    in4_input
        = "11563
"
      in4_max
             = "
15938"
      in
4_min
  = "0"
      i
n5_input
   = "1223"

   in5_max
       = "3586"

      in5_min
           = "0"
      int1_mask           = "147"
      int2_mask           = "147"
      name                = "lm81"
      ps_vid              = "31"
      temp1_input         = "24000"
      temp1_max_hyst      = "55000"
      temp1_max           = "60000"
      temp_config         = "1"


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Linux-diag-devel mailing list
Linux-diag-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-diag-devel
Ruth Ha | 24 Aug 2006 00:10

rauyx

your meds directly from the manufacturer,
see attach for details
a smile returned. Now you must be tired. You will be shown to your
there is nothing we can do about it now. A thing of the past. Best
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Linux-diag-devel mailing list
Linux-diag-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-diag-devel
Mohan Kumar M | 24 Aug 2006 12:11
Picon

Re: sysfs shows blank screen

On Wed, Aug 23, 2006 at 09:55:28PM +0000, Reeve Yang wrote:
> I'm using sysfsutils-2.0.0 with kernel version 2.6.14 on target machine with
> MPC 8245 CPU. I found whenever I try to read something from sysfs, it prints
> out half screen of blanks, and first a few lines are cut in middle. Folowing
> is the output example, does anyone have similiar problem? And how to fix it
> if not possible?
>
Hi Reeve,

Can you reproduce this with some other class like net, ram etc?

I tried with the following classes "net", "misc", "ram". The output is
okay.

Regards,
Mohan.

> Thanks!
> 
> - Reeve
> 
> / # systool -c hwmon -v
> Class = "hwmon"
> 
>  Class Device = "hwmon0"
>  Class Device path = "/sys/class/hwmon/hwmon0"
> 
>    Device = "0-002c"
>    Device path = "/sys/devices/platform/fsl-i2c.1/i2c-0/0-002c"
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
>      alarms              = "0"
>      aout_output         = "1250"
>      chassis_clear       = <store method only>
>      cpu0_vid            = "0"
>      dac                 = "255"
>      fan1_div            = "8"
>      fan1_input          = "6250"
>      fan1_min            = "664"
>      fan2_div            = "8"
>      fan2_input          = "6027"
>      fan2_min            = "664"
>      in0_input           = "2487"
>      in0_max
>        = "3320"
> 
>      in0_min
>            = "0
> "
>      in1_inp
> ut           = "
> 2995"
>      in1
> _max
> = "3586"
> 
> in1_min
>     = "0"
> 
>  in2_input
>      = "3266"
> 
>      in2_max
>          = "438
> 3"
>      in2_mi
> n             =
> "0"
>      in3_i
> nput           =
> "5000"
>      i
> n3_max
>   = "6641"
> 
>   in3_min
>       = "0"
> 
>    in4_input
>        = "11563
> "
>      in4_max
>             = "
> 15938"
>      in
> 4_min
>  = "0"
>      i
> n5_input
>   = "1223"
> 
>   in5_max
>       = "3586"
> 
>      in5_min
>           = "0"
>      int1_mask           = "147"
>      int2_mask           = "147"
>      name                = "lm81"
>      ps_vid              = "31"
>      temp1_input         = "24000"
>      temp1_max_hyst      = "55000"
>      temp1_max           = "60000"
>      temp_config         = "1"

> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Linux-diag-devel mailing list
> Linux-diag-devel <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux-diag-devel

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Reeve Yang | 24 Aug 2006 23:28
Picon

Re: sysfs shows blank screen

Hi Mohan,

Thanks for paying attention to this. I tried class net, which didn't show blanks but first many lines are cut in middle too (see following). Is this a driver problem? By the way, the same version of sysfsutils on my host machine(running debian) outputs everything correctly.

Regards,

- Reeve


/ # systool -c net -v
Class = "net"

  Class Device =
 "gre0"
  Class
 Device path = "
/sys/class/net/g
re0"







    addr_len
        = "4"

   address
       = "00:00:
00:00"
    broa
dcast
= "00:00:00:00"

    features
         = "0x0"

    flags
          = "0x8
0"
    ifindex
            = "3
"
    iflink
           = "3"

    mtu
          = "147
6"
    tx_queue
_len        = "0
"
    type
           = "77
8"
    weight
            = "0
"


  Class D
evice = "lo"

Class Device pat
h = "/sys/class/
net/lo"
    add
r_len
 = "6"
    addr
ess
= "00:00:00:00:0
0:00"
    broad
cast           =
 "00:00:00:00:00
:00"
    featur
es            =
"0x1065"
    fl
ags
  = "0x8"
    i
findex
   = "1"
    if
link
  = "1"
    mtu

 = "16436"
    tx_queue_len        = "0"
    type                = "772"
    weight              = "0"



On 8/24/06, Mohan Kumar M <mohan <at> in.ibm.com> wrote:
On Wed, Aug 23, 2006 at 09:55:28PM +0000, Reeve Yang wrote:
> I'm using sysfsutils-2.0.0 with kernel version 2.6.14 on target machine with
> MPC 8245 CPU. I found whenever I try to read something from sysfs, it prints
> out half screen of blanks, and first a few lines are cut in middle. Folowing
> is the output example, does anyone have similiar problem? And how to fix it
> if not possible?
>
Hi Reeve,

Can you reproduce this with some other class like net, ram etc?

I tried with the following classes "net", "misc", "ram". The output is
okay.

Regards,
Mohan.

> Thanks!
>
> - Reeve
>
> / # systool -c hwmon -v
> Class = "hwmon"
>
>  Class Device = "hwmon0"
>  Class Device path = "/sys/class/hwmon/hwmon0"
>
>    Device = "0-002c"
>    Device path = "/sys/devices/platform/fsl-i2c.1/i2c-0/0-002c"
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>      alarms              = "0"
>      aout_output         = "1250"
>      chassis_clear       = <store method only>
>      cpu0_vid            = "0"
>      dac                 = "255"
>      fan1_div            = "8"
>      fan1_input          = "6250"
>      fan1_min            = "664"
>      fan2_div            = "8"
>      fan2_input          = "6027"
>      fan2_min            = "664"
>      in0_input           = "2487"
>      in0_max
>        = "3320"
>
>      in0_min
>            = "0
> "
>      in1_inp
> ut           = "
> 2995"
>      in1
> _max
> = "3586"
>
> in1_min
>     = "0"
>
>  in2_input
>      = "3266"
>
>      in2_max
>          = "438
> 3"
>      in2_mi
> n             =
> "0"
>      in3_i
> nput           =
> "5000"
>      i
> n3_max
>   = "6641"
>
>   in3_min
>       = "0"
>
>    in4_input
>        = "11563
> "
>      in4_max
>             = "
> 15938"
>      in
> 4_min
>  = "0"
>      i
> n5_input
>   = "1223"
>
>   in5_max
>       = "3586"
>
>      in5_min
>           = "0"
>      int1_mask           = "147"
>      int2_mask           = "147"
>      name                = "lm81"
>      ps_vid              = "31"
>      temp1_input         = "24000"
>      temp1_max_hyst      = "55000"
>      temp1_max           = "60000"
>      temp_config         = "1"

> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Linux-diag-devel mailing list
> Linux-diag-devel <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux-diag-devel


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Linux-diag-devel mailing list
Linux-diag-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-diag-devel
Mohan Kumar M | 28 Aug 2006 14:35
Picon

Re: sysfs shows blank screen

On Thu, Aug 24, 2006 at 09:28:44PM +0000, Reeve Yang wrote:
> Hi Mohan,
> 
> Thanks for paying attention to this. I tried class net, which didn't show
> blanks but first many lines are cut in middle too (see following). Is this a
> driver problem? By the way, the same version of sysfsutils on my host
> machine(running debian) outputs everything correctly.
>

Hi Reeve,

I am not able to reproduce this problem here. Can you give me your
platform details, console details etc?

Regards,
Mohan.

> Regards,
> 
> - Reeve
> 
> 
> / # systool -c net -v
> Class = "net"
> 
>  Class Device =
> "gre0"
>  Class
> Device path = "
> /sys/class/net/g
> re0"
> 
> 
> 
> 
> 
> 
> 
>    addr_len
>        = "4"
> 
>   address
>       = "00:00:
> 00:00"
>    broa
> dcast
> = "00:00:00:00"
> 
>    features
>         = "0x0"
> 
>    flags
>          = "0x8
> 0"
>    ifindex
>            = "3
> "
>    iflink
>           = "3"
> 
>    mtu
>          = "147
> 6"
>    tx_queue
> _len        = "0
> "
>    type
>           = "77
> 8"
>    weight
>            = "0
> "
> 
> 
>  Class D
> evice = "lo"
> 
> Class Device pat
> h = "/sys/class/
> net/lo"
>    add
> r_len
> = "6"
>    addr
> ess
> = "00:00:00:00:0
> 0:00"
>    broad
> cast           =
> "00:00:00:00:00
> :00"
>    featur
> es            =
> "0x1065"
>    fl
> ags
>  = "0x8"
>    i
> findex
>   = "1"
>    if
> link
>  = "1"
>    mtu
> 
> = "16436"
>    tx_queue_len        = "0"
>    type                = "772"
>    weight              = "0"
> 
> 
> 
> On 8/24/06, Mohan Kumar M <mohan <at> in.ibm.com> wrote:
> >
> >On Wed, Aug 23, 2006 at 09:55:28PM +0000, Reeve Yang wrote:
> >> I'm using sysfsutils-2.0.0 with kernel version 2.6.14 on target machine
> >with
> >> MPC 8245 CPU. I found whenever I try to read something from sysfs, it
> >prints
> >> out half screen of blanks, and first a few lines are cut in middle.
> >Folowing
> >> is the output example, does anyone have similiar problem? And how to fix
> >it
> >> if not possible?
> >>
> >Hi Reeve,
> >
> >Can you reproduce this with some other class like net, ram etc?
> >
> >I tried with the following classes "net", "misc", "ram". The output is
> >okay.
> >
> >Regards,
> >Mohan.
> >
> >> Thanks!
> >>
> >> - Reeve
> >>
> >> / # systool -c hwmon -v
> >> Class = "hwmon"
> >>
> >>  Class Device = "hwmon0"
> >>  Class Device path = "/sys/class/hwmon/hwmon0"
> >>
> >>    Device = "0-002c"
> >>    Device path = "/sys/devices/platform/fsl-i2c.1/i2c-0/0-002c"
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>      alarms              = "0"
> >>      aout_output         = "1250"
> >>      chassis_clear       = <store method only>
> >>      cpu0_vid            = "0"
> >>      dac                 = "255"
> >>      fan1_div            = "8"
> >>      fan1_input          = "6250"
> >>      fan1_min            = "664"
> >>      fan2_div            = "8"
> >>      fan2_input          = "6027"
> >>      fan2_min            = "664"
> >>      in0_input           = "2487"
> >>      in0_max
> >>        = "3320"
> >>
> >>      in0_min
> >>            = "0
> >> "
> >>      in1_inp
> >> ut           = "
> >> 2995"
> >>      in1
> >> _max
> >> = "3586"
> >>
> >> in1_min
> >>     = "0"
> >>
> >>  in2_input
> >>      = "3266"
> >>
> >>      in2_max
> >>          = "438
> >> 3"
> >>      in2_mi
> >> n             =
> >> "0"
> >>      in3_i
> >> nput           =
> >> "5000"
> >>      i
> >> n3_max
> >>   = "6641"
> >>
> >>   in3_min
> >>       = "0"
> >>
> >>    in4_input
> >>        = "11563
> >> "
> >>      in4_max
> >>             = "
> >> 15938"
> >>      in
> >> 4_min
> >>  = "0"
> >>      i
> >> n5_input
> >>   = "1223"
> >>
> >>   in5_max
> >>       = "3586"
> >>
> >>      in5_min
> >>           = "0"
> >>      int1_mask           = "147"
> >>      int2_mask           = "147"
> >>      name                = "lm81"
> >>      ps_vid              = "31"
> >>      temp1_input         = "24000"
> >>      temp1_max_hyst      = "55000"
> >>      temp1_max           = "60000"
> >>      temp_config         = "1"
> >
> >>
> >-------------------------------------------------------------------------
> >> Using Tomcat but need to do more? Need to support web services,
> >security?
> >> Get stuff done quickly with pre-integrated technology to make your job
> >easier
> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> >Geronimo
> >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >> _______________________________________________
> >> Linux-diag-devel mailing list
> >> Linux-diag-devel <at> lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/linux-diag-devel
> >
> >

> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Linux-diag-devel mailing list
> Linux-diag-devel <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/linux-diag-devel

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

Gmane