Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

XML .. system requirments

Hi all
I wanted to develop XML files on my computer and run it on the same m/c.
do anybody know what s/w do i need and do i need to change H/W ? currently
i have windows 98 running on my P3 1 ghz microprocessor with HD 40 gb , 128
MB RAM
Thanks
kedar
[294 byte] By [kedar] at [2007-11-9 15:25:59]
# 1 Re: XML .. system requirments
Hi Kedar,

First, unless you are performing XML intensive operations such as programmatic
transformations or processing, you don't need any additional hardware.

XML files are text files. So, if you are familiar with XML, it's structure
and semantics, any text editor like notepad should work just fine. You may
also use GUI editors like XML Spy or XML Authority to generate XML files.
You may also use Internet Explorer (possibly 4.0+) to view the XML structure.

Vijay

"kedar " <kedarpathak@yahoo.com> wrote:
>
>Hi all
>
>I wanted to develop XML files on my computer and run it on the same m/c.
>
>do anybody know what s/w do i need and do i need to change H/W ? currently
>i have windows 98 running on my P3 1 ghz microprocessor with HD 40 gb ,
128
>MB RAM
>
>Thanks
>
>kedar
Vijay Gummadi at 2007-11-11 23:30:02 >
# 2 Re: XML .. system requirments
Thanks

kedar

"Vijay Gummadi" <ae5110@wayne.edu> wrote:
>
>Hi Kedar,
>
> First, unless you are performing XML intensive operations such as programmatic
>transformations or processing, you don't need any additional hardware.
>
> XML files are text files. So, if you are familiar with XML, it's structure
>and semantics, any text editor like notepad should work just fine. You may
>also use GUI editors like XML Spy or XML Authority to generate XML files.
>You may also use Internet Explorer (possibly 4.0+) to view the XML structure.
>
>Vijay
>
>"kedar " <kedarpathak@yahoo.com> wrote:
>>
>>Hi all
>>
>>I wanted to develop XML files on my computer and run it on the same m/c.
>>
>>do anybody know what s/w do i need and do i need to change H/W ? currently
>>i have windows 98 running on my P3 1 ghz microprocessor with HD 40 gb ,
>128
>>MB RAM
>>
>>Thanks
>>
>>kedar
>
kedar at 2007-11-11 23:31:02 >
# 3 Re: XML .. system requirments
We have used DOM parsing of large XML files and 128 MB isnt good for much.

Depends on the parser but the standard Apache parser Xerces need about 15
times more memory than the size of the file. Dont know which performance
Microsofts parsers has but Explorer 5 uses about 80 times more memory than
the file size!!!!

If you are to parse large files - use the SAX methos to parse. You will need
at least 512 MB for large files using DOM method.

Best
Fredrik Svensson

"kedar " <kedarpathak@yahoo.com> escribi en el mensaje
news:3d5150f4$1@10.1.10.29...
>
> Hi all
>
> I wanted to develop XML files on my computer and run it on the same m/c.
>
> do anybody know what s/w do i need and do i need to change H/W ? currently
> i have windows 98 running on my P3 1 ghz microprocessor with HD 40 gb ,
128
> MB RAM
>
> Thanks
>
> kedar
Fredrik at 2007-11-11 23:32:07 >