473,396 Members | 1,894 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Report Engine (Design Question)

I am in process of designing a report generation application.
Now here is breif background about my workplace ......

my system admin is a big microsoft hater .... so does not allow any
microsoft technologies.
God knows how i am able to survive ... but anyway I have to come up with a
report generation application which will generate report on a daily basis.

I haven't started the design yet .... I was thinking of creating a console
..NET app which will run everyday with some command line parameters and
create the reports and export it somehwere on the server.

Now can you guys think of any other approach which might appeal to my system
admin as he is open to XML and web service option. Any insight as to how I
can make this as a XML web service will help me a lot. If I am not wrong I
will be needing IIS inorder to create a XML web service. I will have to
convince my sys admin on that.

Well bottom line .... I need some advice as to what different approaches I
can take inorder to create my report generation application which will be
freindlier to my sys admin too.

Abhi
Jul 21 '05 #1
8 1775

"Abhi" <so***********@hotmail.com> wrote in message
news:Oj***************@TK2MSFTNGP10.phx.gbl...
I am in process of designing a report generation application.
Now here is breif background about my workplace ......

my system admin is a big microsoft hater .... so does not allow any
microsoft technologies.
God knows how i am able to survive ... but anyway I have to come up with a
report generation application which will generate report on a daily basis.

I haven't started the design yet .... I was thinking of creating a console
.NET app which will run everyday with some command line parameters and
create the reports and export it somehwere on the server.

Now can you guys think of any other approach which might appeal to my system admin as he is open to XML and web service option. Any insight as to how I
can make this as a XML web service will help me a lot. If I am not wrong I
will be needing IIS inorder to create a XML web service. I will have to
convince my sys admin on that.

Well bottom line .... I need some advice as to what different approaches I
can take inorder to create my report generation application which will be
freindlier to my sys admin too.

Hmm, your question isn't too clear in one respect: Exactly how do you need
to access the report? Do you need to provide a webservice and expose it on
the fly? Eoes it even have to be available via http? Or do you just have to
write to \\somemachine\someshare\somefile?
If you just need to write a file that something else will load, any .NET
executable can generate XML documents with the System.Xml namespace classes.
Furthermore, for console work, you can probably get away with using Mono
(go-mono.com) instead of the MS framework. Your sysadmin may be more open to
that.
Abhi

Jul 21 '05 #2

"Abhi" <so***********@hotmail.com> wrote in message
news:Oj***************@TK2MSFTNGP10.phx.gbl...
I am in process of designing a report generation application.
Now here is breif background about my workplace ......

my system admin is a big microsoft hater .... so does not allow any
microsoft technologies.
God knows how i am able to survive ... but anyway I have to come up with a
report generation application which will generate report on a daily basis.

I haven't started the design yet .... I was thinking of creating a console
.NET app which will run everyday with some command line parameters and
create the reports and export it somehwere on the server.

Now can you guys think of any other approach which might appeal to my system admin as he is open to XML and web service option. Any insight as to how I
can make this as a XML web service will help me a lot. If I am not wrong I
will be needing IIS inorder to create a XML web service. I will have to
convince my sys admin on that.

Well bottom line .... I need some advice as to what different approaches I
can take inorder to create my report generation application which will be
freindlier to my sys admin too.

Hmm, your question isn't too clear in one respect: Exactly how do you need
to access the report? Do you need to provide a webservice and expose it on
the fly? Eoes it even have to be available via http? Or do you just have to
write to \\somemachine\someshare\somefile?
If you just need to write a file that something else will load, any .NET
executable can generate XML documents with the System.Xml namespace classes.
Furthermore, for console work, you can probably get away with using Mono
(go-mono.com) instead of the MS framework. Your sysadmin may be more open to
that.
Abhi

Jul 21 '05 #3
End result is that the management needs to see the report. I am currently
planning to create the reports and export it as HTML/PDF files and store it
on a share drive.

Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:0K9ib.543398$Oz4.453056@rwcrnsc54...

"Abhi" <so***********@hotmail.com> wrote in message
news:Oj***************@TK2MSFTNGP10.phx.gbl...
I am in process of designing a report generation application.
Now here is breif background about my workplace ......

my system admin is a big microsoft hater .... so does not allow any
microsoft technologies.
God knows how i am able to survive ... but anyway I have to come up with a report generation application which will generate report on a daily basis.
I haven't started the design yet .... I was thinking of creating a console .NET app which will run everyday with some command line parameters and
create the reports and export it somehwere on the server.

Now can you guys think of any other approach which might appeal to my system
admin as he is open to XML and web service option. Any insight as to how I can make this as a XML web service will help me a lot. If I am not wrong I will be needing IIS inorder to create a XML web service. I will have to
convince my sys admin on that.

Well bottom line .... I need some advice as to what different approaches I can take inorder to create my report generation application which will be freindlier to my sys admin too.


Hmm, your question isn't too clear in one respect: Exactly how do you need
to access the report? Do you need to provide a webservice and expose it on
the fly? Eoes it even have to be available via http? Or do you just have

to write to \\somemachine\someshare\somefile?
If you just need to write a file that something else will load, any .NET
executable can generate XML documents with the System.Xml namespace classes. Furthermore, for console work, you can probably get away with using Mono
(go-mono.com) instead of the MS framework. Your sysadmin may be more open to that.
Abhi


Jul 21 '05 #4
End result is that the management needs to see the report. I am currently
planning to create the reports and export it as HTML/PDF files and store it
on a share drive.

Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:0K9ib.543398$Oz4.453056@rwcrnsc54...

"Abhi" <so***********@hotmail.com> wrote in message
news:Oj***************@TK2MSFTNGP10.phx.gbl...
I am in process of designing a report generation application.
Now here is breif background about my workplace ......

my system admin is a big microsoft hater .... so does not allow any
microsoft technologies.
God knows how i am able to survive ... but anyway I have to come up with a report generation application which will generate report on a daily basis.
I haven't started the design yet .... I was thinking of creating a console .NET app which will run everyday with some command line parameters and
create the reports and export it somehwere on the server.

Now can you guys think of any other approach which might appeal to my system
admin as he is open to XML and web service option. Any insight as to how I can make this as a XML web service will help me a lot. If I am not wrong I will be needing IIS inorder to create a XML web service. I will have to
convince my sys admin on that.

Well bottom line .... I need some advice as to what different approaches I can take inorder to create my report generation application which will be freindlier to my sys admin too.


Hmm, your question isn't too clear in one respect: Exactly how do you need
to access the report? Do you need to provide a webservice and expose it on
the fly? Eoes it even have to be available via http? Or do you just have

to write to \\somemachine\someshare\somefile?
If you just need to write a file that something else will load, any .NET
executable can generate XML documents with the System.Xml namespace classes. Furthermore, for console work, you can probably get away with using Mono
(go-mono.com) instead of the MS framework. Your sysadmin may be more open to that.
Abhi


Jul 21 '05 #5

"Abhi" <so***********@hotmail.com> wrote in message
news:Of**************@TK2MSFTNGP12.phx.gbl...
End result is that the management needs to see the report. I am currently
planning to create the reports and export it as HTML/PDF files and store it on a share drive.
In that case you probably don't need a webserivce(unless the report data
needs to be accessible from a number of places for other reasons). You
should be able to simply write out xml files with your .NET app. Mono should
support the functionality you need if you need to deploy on a Linux machine,
dump out your xml files, and be done with it. Will that be sufficent?
If not, leave mre information and I'll see if I can think up anything else. Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:0K9ib.543398$Oz4.453056@rwcrnsc54...

"Abhi" <so***********@hotmail.com> wrote in message
news:Oj***************@TK2MSFTNGP10.phx.gbl...
I am in process of designing a report generation application.
Now here is breif background about my workplace ......

my system admin is a big microsoft hater .... so does not allow any
microsoft technologies.
God knows how i am able to survive ... but anyway I have to come up with
a
report generation application which will generate report on a daily basis.
I haven't started the design yet .... I was thinking of creating a console .NET app which will run everyday with some command line parameters and
create the reports and export it somehwere on the server.

Now can you guys think of any other approach which might appeal to my system
admin as he is open to XML and web service option. Any insight as to
how I can make this as a XML web service will help me a lot. If I am not
wrong
I will be needing IIS inorder to create a XML web service. I will have
to convince my sys admin on that.

Well bottom line .... I need some advice as to what different
approaches
I can take inorder to create my report generation application which will be freindlier to my sys admin too.

Hmm, your question isn't too clear in one respect: Exactly how do you

need to access the report? Do you need to provide a webservice and expose it on the fly? Eoes it even have to be available via http? Or do you just have

to
write to \\somemachine\someshare\somefile?
If you just need to write a file that something else will load, any .NET
executable can generate XML documents with the System.Xml namespace

classes.
Furthermore, for console work, you can probably get away with using Mono
(go-mono.com) instead of the MS framework. Your sysadmin may be more

open to
that.
Abhi



Jul 21 '05 #6

"Abhi" <so***********@hotmail.com> wrote in message
news:Of**************@TK2MSFTNGP12.phx.gbl...
End result is that the management needs to see the report. I am currently
planning to create the reports and export it as HTML/PDF files and store it on a share drive.
In that case you probably don't need a webserivce(unless the report data
needs to be accessible from a number of places for other reasons). You
should be able to simply write out xml files with your .NET app. Mono should
support the functionality you need if you need to deploy on a Linux machine,
dump out your xml files, and be done with it. Will that be sufficent?
If not, leave mre information and I'll see if I can think up anything else. Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:0K9ib.543398$Oz4.453056@rwcrnsc54...

"Abhi" <so***********@hotmail.com> wrote in message
news:Oj***************@TK2MSFTNGP10.phx.gbl...
I am in process of designing a report generation application.
Now here is breif background about my workplace ......

my system admin is a big microsoft hater .... so does not allow any
microsoft technologies.
God knows how i am able to survive ... but anyway I have to come up with
a
report generation application which will generate report on a daily basis.
I haven't started the design yet .... I was thinking of creating a console .NET app which will run everyday with some command line parameters and
create the reports and export it somehwere on the server.

Now can you guys think of any other approach which might appeal to my system
admin as he is open to XML and web service option. Any insight as to
how I can make this as a XML web service will help me a lot. If I am not
wrong
I will be needing IIS inorder to create a XML web service. I will have
to convince my sys admin on that.

Well bottom line .... I need some advice as to what different
approaches
I can take inorder to create my report generation application which will be freindlier to my sys admin too.

Hmm, your question isn't too clear in one respect: Exactly how do you

need to access the report? Do you need to provide a webservice and expose it on the fly? Eoes it even have to be available via http? Or do you just have

to
write to \\somemachine\someshare\somefile?
If you just need to write a file that something else will load, any .NET
executable can generate XML documents with the System.Xml namespace

classes.
Furthermore, for console work, you can probably get away with using Mono
(go-mono.com) instead of the MS framework. Your sysadmin may be more

open to
that.
Abhi



Jul 21 '05 #7
Thanks Daniel for your input.
I was thinking of doing something so that in the future I can even built
interface for the PDA's so that it will be accessible from there too.
Currently the management wants some kind of interface where a person will
sit and run the reports everyday. But I wanted to go one step further where
the person doens't need to do anything because the reports are very standard
and can be programmed so that it doesn't need any interface.

I was more inclinde towards a web service because my sys admin seems to be
liking pearl, so I thought may be I can built a web service and then he can
create a pearl.NET cosumer. I dont know if that is possible.

Another thought came to my mind as to make a fat client and install it on
the client computer, but I dont think so that is the right thing.
Web application seems impossible because my sys admin hates IIS, I mean he
simple hates IIS.
Anyway I can convince him or any other alternative for that route, becaue I
think web is the ideal way to go.

Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:kK********************@rwcrnsc52.ops.asp.att. net...

"Abhi" <so***********@hotmail.com> wrote in message
news:Of**************@TK2MSFTNGP12.phx.gbl...
End result is that the management needs to see the report. I am currently
planning to create the reports and export it as HTML/PDF files and store it
on a share drive.

In that case you probably don't need a webserivce(unless the report data
needs to be accessible from a number of places for other reasons). You
should be able to simply write out xml files with your .NET app. Mono

should support the functionality you need if you need to deploy on a Linux machine, dump out your xml files, and be done with it. Will that be sufficent?
If not, leave mre information and I'll see if I can think up anything else.
Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:0K9ib.543398$Oz4.453056@rwcrnsc54...

"Abhi" <so***********@hotmail.com> wrote in message
news:Oj***************@TK2MSFTNGP10.phx.gbl...
> I am in process of designing a report generation application.
> Now here is breif background about my workplace ......
>
> my system admin is a big microsoft hater .... so does not allow any
> microsoft technologies.
> God knows how i am able to survive ... but anyway I have to come up with
a
> report generation application which will generate report on a daily

basis.
>
> I haven't started the design yet .... I was thinking of creating a

console
> .NET app which will run everyday with some command line parameters and > create the reports and export it somehwere on the server.
>
> Now can you guys think of any other approach which might appeal to my system
> admin as he is open to XML and web service option. Any insight as to

how
I
> can make this as a XML web service will help me a lot. If I am not

wrong
I
> will be needing IIS inorder to create a XML web service. I will have

to > convince my sys admin on that.
>
> Well bottom line .... I need some advice as to what different approaches
I
> can take inorder to create my report generation application which will be
> freindlier to my sys admin too.
>

Hmm, your question isn't too clear in one respect: Exactly how do you need to access the report? Do you need to provide a webservice and expose
it on the fly? Eoes it even have to be available via http? Or do you just

have to
write to \\somemachine\someshare\somefile?
If you just need to write a file that something else will load, any

..NET executable can generate XML documents with the System.Xml namespace

classes.
Furthermore, for console work, you can probably get away with using Mono (go-mono.com) instead of the MS framework. Your sysadmin may be more

open
to
that.

> Abhi
>
>



Jul 21 '05 #8

"Abhi" <so***********@hotmail.com> wrote in message
news:Oe**************@TK2MSFTNGP11.phx.gbl...
Thanks Daniel for your input.
I was thinking of doing something so that in the future I can even built
interface for the PDA's so that it will be accessible from there too.
Currently the management wants some kind of interface where a person will
sit and run the reports everyday. But I wanted to go one step further where the person doens't need to do anything because the reports are very standard and can be programmed so that it doesn't need any interface.

I was more inclinde towards a web service because my sys admin seems to be
liking pearl, so I thought may be I can built a web service and then he can create a pearl.NET cosumer. I dont know if that is possible.

Another thought came to my mind as to make a fat client and install it on
the client computer, but I dont think so that is the right thing.
Web application seems impossible because my sys admin hates IIS, I mean he
simple hates IIS.
Anyway I can convince him or any other alternative for that route, becaue I think web is the ideal way to go.
Well, don't quote me on it, but research mono, I seem to recall hearing
about a ASP.NET host for Apache...you'll have to look however.

Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:kK********************@rwcrnsc52.ops.asp.att. net...

"Abhi" <so***********@hotmail.com> wrote in message
news:Of**************@TK2MSFTNGP12.phx.gbl...
End result is that the management needs to see the report. I am currently planning to create the reports and export it as HTML/PDF files and store
it
on a share drive.

In that case you probably don't need a webserivce(unless the report data
needs to be accessible from a number of places for other reasons). You
should be able to simply write out xml files with your .NET app. Mono

should
support the functionality you need if you need to deploy on a Linux

machine,
dump out your xml files, and be done with it. Will that be sufficent?
If not, leave mre information and I'll see if I can think up anything

else.
Abhi
"Daniel O'Connell" <onyxkirx@--NOSPAM--comcast.net> wrote in message
news:0K9ib.543398$Oz4.453056@rwcrnsc54...
>
> "Abhi" <so***********@hotmail.com> wrote in message
> news:Oj***************@TK2MSFTNGP10.phx.gbl...
> > I am in process of designing a report generation application.
> > Now here is breif background about my workplace ......
> >
> > my system admin is a big microsoft hater .... so does not allow
any > > microsoft technologies.
> > God knows how i am able to survive ... but anyway I have to come up
with
a
> > report generation application which will generate report on a
daily basis.
> >
> > I haven't started the design yet .... I was thinking of creating a
console
> > .NET app which will run everyday with some command line parameters

and > > create the reports and export it somehwere on the server.
> >
> > Now can you guys think of any other approach which might appeal to my > system
> > admin as he is open to XML and web service option. Any insight as
to how
I
> > can make this as a XML web service will help me a lot. If I am not

wrong
I
> > will be needing IIS inorder to create a XML web service. I will
have to
> > convince my sys admin on that.
> >
> > Well bottom line .... I need some advice as to what different

approaches
I
> > can take inorder to create my report generation application which will be
> > freindlier to my sys admin too.
> >
>
> Hmm, your question isn't too clear in one respect: Exactly how do
you need
> to access the report? Do you need to provide a webservice and expose

it
on
> the fly? Eoes it even have to be available via http? Or do you just

have to
> write to \\somemachine\someshare\somefile?
> If you just need to write a file that something else will load, any .NET > executable can generate XML documents with the System.Xml namespace
classes.
> Furthermore, for console work, you can probably get away with using Mono > (go-mono.com) instead of the MS framework. Your sysadmin may be more

open
to
> that.
>
> > Abhi
> >
> >
>
>



Jul 21 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Stephan | last post by:
Hi, I'm using Visual Studio 2003 (C#) with the integrated Crystal Report software and have the following question: How can I assign a value (string) to an unbound (string) field in Crystal...
0
by: Hero Ngan | last post by:
The following code is export the Crystal Report to PDF format on the server side, then display on the client browser. Question: How can prompt the PDF's "Print" dialog box, when the PDF was open...
0
by: Corbin | last post by:
I've been going in circles on this for a week. Please help: I'm running a web app with ASP.NET 1.1 and Crystal Reports for .NET. The app has three reports, two of which are reliable both on my...
5
by: Abhi | last post by:
I am in process of designing a report generation application. Now here is breif background about my workplace ...... my system admin is a big microsoft hater .... so does not allow any microsoft...
1
by: vipindev.s | last post by:
hi all i am not much expert in asp.net. i am using crystal rpt for report generation. is any other report generation method is available??? i use push method to creat report, and it is working...
1
by: Baski | last post by:
Hi, I am suppose to look into the possibility of using alphablox to build reporting application. There is a specific question. Can I build reports and display reports only using Alphablox...
0
by: David P. Donahue | last post by:
This is the first time I've had any problems viewing a report in any of my applications, so I'm not sure where to begin. But when I try to render my report in a report viewer, the application...
1
by: =?Utf-8?B?QW5kcmVhcw==?= | last post by:
Our company have one asp.net 2.0 web application using c# as code behind and one C++ windows application. Both applications are using Crystal Reports (v 10) as report engine. The web app. just...
0
by: gsuns82 | last post by:
Hi all, * I am working on jasper reports,I have successfully generated sample pdf report from a java program. * But i am getting problems when i tend to call that report genarating...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.