473,609 Members | 1,868 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Citrix

Hi,

I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office). I can
store it on a file server, but this raises the problem of a home user needing
the .net framework.

I seem to have 2 choices, and have no experience in either.

First, since we use Citrix here, I could publish it as a Citrix application.
However I have no clue how to do that.

Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help getting
started. I've written some HTML and Java Script a few years ago. I've never
written ASP.Net and am not really sure how to start, or what I'll need.

Does anyone have any suggestions? Sorry if it sounds like I'm lost, but I am.

Thanks.
Aug 5 '08 #1
12 2082
Art,

Why would home users needing the .Net framework be a problem? Or do some
users use non-Windows machines at home?

Kerry Moorman
"Art" wrote:
Hi,

I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office). I can
store it on a file server, but this raises the problem of a home user needing
the .net framework.

I seem to have 2 choices, and have no experience in either.

First, since we use Citrix here, I could publish it as a Citrix application.
However I have no clue how to do that.

Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help getting
started. I've written some HTML and Java Script a few years ago. I've never
written ASP.Net and am not really sure how to start, or what I'll need.

Does anyone have any suggestions? Sorry if it sounds like I'm lost, but I am.

Thanks.
Aug 5 '08 #2
Kerry,

A good, but unfortunate question. Since the framework is not necessarily
already on their machines, they would have to download it. Most of these
people are not very adventurous users. Also, this is part of a Disaster
Recovery scenario, so people are likely not to be in the best of moods should
they need it.

I'd like to make this as painless (not for me of course) as possible.

"Kerry Moorman" wrote:
Art,

Why would home users needing the .Net framework be a problem? Or do some
users use non-Windows machines at home?

Kerry Moorman
"Art" wrote:
Hi,

I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office). I can
store it on a file server, but this raises the problem of a home user needing
the .net framework.

I seem to have 2 choices, and have no experience in either.

First, since we use Citrix here, I could publish it as a Citrix application.
However I have no clue how to do that.

Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help getting
started. I've written some HTML and Java Script a few years ago. I've never
written ASP.Net and am not really sure how to start, or what I'll need.

Does anyone have any suggestions? Sorry if it sounds like I'm lost, but I am.

Thanks.
Aug 5 '08 #3

"Art" <Ar*@discussion s.microsoft.com wrote in message
news:D4******** *************** ***********@mic rosoft.com...
Hi,

I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office). I
can
store it on a file server, but this raises the problem of a home user
needing
the .net framework.
>
I seem to have 2 choices, and have no experience in either.

First, since we use Citrix here, I could publish it as a Citrix
application.
However I have no clue how to do that.
That raises the question of support as the user's client machine must have
Citrix terminal client software installed on their machine and given
user-id(s) and psw(s) to even login to a server to be in a session with a
server that's running Citrix terminal server terminal. Citrix is a VPN
terminal server solution which is not meant for the home user sector in
regards to the consumer or corporate home user sector. That's a bad choice
period.
Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help
getting
started. I've written some HTML and Java Script a few years ago. I've
never
written ASP.Net and am not really sure how to start, or what I'll need.

Does anyone have any suggestions? Sorry if it sounds like I'm lost, but I
am.
You need to be using an ASP.Net solution running on a Web server, a possible
Web portal solution, which is a Web solution that allows user outside the
corporate LAN and outside the corporate firewall to login to the ASP.NET
solution using a browser, while on the other hand, when they are on the
corporate LAN behind the firewall with a machine and using a browser to
access the solution and allowing the user to login that way.

1) You need to be using ASP.Net and understand how to use it securely for an
ASP.Net solution that's facing the public Internet.

2) You need to understand VB.Net

3) You need to understand how to write an ASP.Net solution that's an
Internet/Intranet Web portal facing solution.

4) You need to find some books, and all that information is out there on
Google or Dogpile.com, because it makes no sense to toss out a hackable
solution that's facing the Internet.
Aug 5 '08 #4
Thanks for your thoughts.

Our company has a web server. We also have a web page with a button that
directs the users to a logon screen. Once they logon on they will have a
menu of choices, one of which currently sends them to a secure Citrix screen.
There, they have the option of selecting whatever application they want, and
running it through Citrix.

In this particular case, we'd likely add an additional initial choice that
would get them to a Citrix screen, with only one application... the one I'm
working on.

As you point out, since I'm not familiar with ASP.Net, I'm quite hesitant to
go in that direction.

Thanks again.

"Mr. Arnold" wrote:
>
"Art" <Ar*@discussion s.microsoft.com wrote in message
news:D4******** *************** ***********@mic rosoft.com...
Hi,

I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office). I
can
store it on a file server, but this raises the problem of a home user
needing
the .net framework.

I seem to have 2 choices, and have no experience in either.

First, since we use Citrix here, I could publish it as a Citrix
application.
However I have no clue how to do that.
That raises the question of support as the user's client machine must have
Citrix terminal client software installed on their machine and given
user-id(s) and psw(s) to even login to a server to be in a session with a
server that's running Citrix terminal server terminal. Citrix is a VPN
terminal server solution which is not meant for the home user sector in
regards to the consumer or corporate home user sector. That's a bad choice
period.
Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help
getting
started. I've written some HTML and Java Script a few years ago. I've
never
written ASP.Net and am not really sure how to start, or what I'll need.

Does anyone have any suggestions? Sorry if it sounds like I'm lost, but I
am.

You need to be using an ASP.Net solution running on a Web server, a possible
Web portal solution, which is a Web solution that allows user outside the
corporate LAN and outside the corporate firewall to login to the ASP.NET
solution using a browser, while on the other hand, when they are on the
corporate LAN behind the firewall with a machine and using a browser to
access the solution and allowing the user to login that way.

1) You need to be using ASP.Net and understand how to use it securely for an
ASP.Net solution that's facing the public Internet.

2) You need to understand VB.Net

3) You need to understand how to write an ASP.Net solution that's an
Internet/Intranet Web portal facing solution.

4) You need to find some books, and all that information is out there on
Google or Dogpile.com, because it makes no sense to toss out a hackable
solution that's facing the Internet.
Aug 5 '08 #5

"Art" <Ar*@discussion s.microsoft.com wrote in message
news:30******** *************** ***********@mic rosoft.com...
Thanks for your thoughts.

Our company has a web server. We also have a web page with a button that
directs the users to a logon screen. Once they logon on they will have a
menu of choices, one of which currently sends them to a secure Citrix
screen.
There, they have the option of selecting whatever application they want,
and
running it through Citrix.

In this particular case, we'd likely add an additional initial choice that
would get them to a Citrix screen, with only one application... the one
I'm
working on.

As you point out, since I'm not familiar with ASP.Net, I'm quite hesitant
to
go in that direction.
Well, the solution wouldn't be a Web/ASP.Net solution. It would be a Windows
Desktop solution that's running out there on the Citrix Terminal server
desktop.

The components of the solution such as the .Net Framework, exe, and DLL(s)
would be deployed to the Citrix server.

The client's machine wouldn't be running the solution at their client
machine, so no need for the .Net Framework being installed on a user's
machine, since the solution is not running at the client's machine, with the
client's machine in a Citrix VPN Web server desktop session with a browser
on the client side.

I have seen Citrix being used across multiple separate LAN(s) owned by a
corporation connecting to the main corporate LAN where the Citrix Terminal
Server Farm was located using a T1 connection, reasonable speed in paint the
screen being duplicated at the client's end. A lot and I mean a lot of
screen painting data is being transmitted that is binary and is not HTML.

I have also seen dial-up connections being used with a Citrix Terminal
server session with a client machine and screen painting being done with
data sent over the wire, a very slow process. BB and DSL clients in session
with a Citrix terminal server and screen painting speed, I can't tell you.

As opposed to using ASP.Net with HTML and Javascript and transmission speed
over the wire.

Aug 5 '08 #6
We never assume internet connectivity in disaster recovery, so that comment
has me curious to the scenario you are considering...

With laptop computers less than $600, you might look at the cost of
preconfigured, company supplied computers versus the development cost. For
small companies, I think you will find the hardware is cheaper.

"Art" <Ar*@discussion s.microsoft.com wrote in message
news:B4******** *************** ***********@mic rosoft.com...
Kerry,

A good, but unfortunate question. Since the framework is not necessarily
already on their machines, they would have to download it. Most of these
people are not very adventurous users. Also, this is part of a Disaster
Recovery scenario, so people are likely not to be in the best of moods
should
they need it.

I'd like to make this as painless (not for me of course) as possible.

"Kerry Moorman" wrote:
>Art,

Why would home users needing the .Net framework be a problem? Or do some
users use non-Windows machines at home?

Kerry Moorman
"Art" wrote:
Hi,

I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office).
I can
store it on a file server, but this raises the problem of a home user
needing
the .net framework.

I seem to have 2 choices, and have no experience in either.

First, since we use Citrix here, I could publish it as a Citrix
application.
However I have no clue how to do that.

Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help
getting
started. I've written some HTML and Java Script a few years ago. I've
never
written ASP.Net and am not really sure how to start, or what I'll need.

Does anyone have any suggestions? Sorry if it sounds like I'm lost,
but I am.

Thanks.
Aug 6 '08 #7
FTM,

The scenario involves reaching data stored on a network, so with no
connectivity there's really no need for the computers -- in our situation.
We have redundancy (multiple locations) for our data. Our web server is not
yet redundant -- this is an ongoing process. However our web server is in a
data center with redundant everything (not ours, we lease a couple of racks).

The application that I'm talking about is just a way to help organize the
information that people may need to handle various tasks. It's pretty basic.

However, I gather that you're suggesting that we supply laptops, pre-loaded
with the base information people will need to get started. I hadn't really
thought of that -- it's an interesting idea. As you suggest, while it's not
cheap, in the scheme of things it could make sense.

Along those lines, what would you think of a U3 Flash drive?


"Family Tree Mike" wrote:
We never assume internet connectivity in disaster recovery, so that comment
has me curious to the scenario you are considering...

With laptop computers less than $600, you might look at the cost of
preconfigured, company supplied computers versus the development cost. For
small companies, I think you will find the hardware is cheaper.

"Art" <Ar*@discussion s.microsoft.com wrote in message
news:B4******** *************** ***********@mic rosoft.com...
Kerry,

A good, but unfortunate question. Since the framework is not necessarily
already on their machines, they would have to download it. Most of these
people are not very adventurous users. Also, this is part of a Disaster
Recovery scenario, so people are likely not to be in the best of moods
should
they need it.

I'd like to make this as painless (not for me of course) as possible.

"Kerry Moorman" wrote:
Art,

Why would home users needing the .Net framework be a problem? Or do some
users use non-Windows machines at home?

Kerry Moorman
"Art" wrote:

Hi,

I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office).
I can
store it on a file server, but this raises the problem of a home user
needing
the .net framework.

I seem to have 2 choices, and have no experience in either.

First, since we use Citrix here, I could publish it as a Citrix
application.
However I have no clue how to do that.

Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help
getting
started. I've written some HTML and Java Script a few years ago. I've
never
written ASP.Net and am not really sure how to start, or what I'll need.

Does anyone have any suggestions? Sorry if it sounds like I'm lost,
but I am.

Thanks.
Aug 6 '08 #8
Mr. Arnold,

That's kind of what I was thinking. It's just that I've never deployed
anything to a Citrix server before and was trolling for hints.

We've seen pretty good speed from home, for those few users that currently
do log in remotely. All of them have broadband of some flavor.

Citrix seems to be a good solution for lots of things. Unfortunately it
reminds me of the old mainframe days.

"Mr. Arnold" wrote:
>
"Art" <Ar*@discussion s.microsoft.com wrote in message
news:30******** *************** ***********@mic rosoft.com...
Thanks for your thoughts.

Our company has a web server. We also have a web page with a button that
directs the users to a logon screen. Once they logon on they will have a
menu of choices, one of which currently sends them to a secure Citrix
screen.
There, they have the option of selecting whatever application they want,
and
running it through Citrix.

In this particular case, we'd likely add an additional initial choice that
would get them to a Citrix screen, with only one application... the one
I'm
working on.

As you point out, since I'm not familiar with ASP.Net, I'm quite hesitant
to
go in that direction.

Well, the solution wouldn't be a Web/ASP.Net solution. It would be a Windows
Desktop solution that's running out there on the Citrix Terminal server
desktop.

The components of the solution such as the .Net Framework, exe, and DLL(s)
would be deployed to the Citrix server.

The client's machine wouldn't be running the solution at their client
machine, so no need for the .Net Framework being installed on a user's
machine, since the solution is not running at the client's machine, with the
client's machine in a Citrix VPN Web server desktop session with a browser
on the client side.

I have seen Citrix being used across multiple separate LAN(s) owned by a
corporation connecting to the main corporate LAN where the Citrix Terminal
Server Farm was located using a T1 connection, reasonable speed in paint the
screen being duplicated at the client's end. A lot and I mean a lot of
screen painting data is being transmitted that is binary and is not HTML.

I have also seen dial-up connections being used with a Citrix Terminal
server session with a client machine and screen painting being done with
data sent over the wire, a very slow process. BB and DSL clients in session
with a Citrix terminal server and screen painting speed, I can't tell you.

As opposed to using ASP.Net with HTML and Javascript and transmission speed
over the wire.

Aug 6 '08 #9
The flash drive would seem fine for people to use. This would again have to
depend on the people having at home a PC, not a Linux box, for example.

"Art" wrote:
FTM,

The scenario involves reaching data stored on a network, so with no
connectivity there's really no need for the computers -- in our situation.
We have redundancy (multiple locations) for our data. Our web server is not
yet redundant -- this is an ongoing process. However our web server is in a
data center with redundant everything (not ours, we lease a couple of racks).

The application that I'm talking about is just a way to help organize the
information that people may need to handle various tasks. It's pretty basic.

However, I gather that you're suggesting that we supply laptops, pre-loaded
with the base information people will need to get started. I hadn't really
thought of that -- it's an interesting idea. As you suggest, while it's not
cheap, in the scheme of things it could make sense.

Along those lines, what would you think of a U3 Flash drive?


"Family Tree Mike" wrote:
We never assume internet connectivity in disaster recovery, so that comment
has me curious to the scenario you are considering...

With laptop computers less than $600, you might look at the cost of
preconfigured, company supplied computers versus the development cost. For
small companies, I think you will find the hardware is cheaper.

"Art" <Ar*@discussion s.microsoft.com wrote in message
news:B4******** *************** ***********@mic rosoft.com...
Kerry,
>
A good, but unfortunate question. Since the framework is not necessarily
already on their machines, they would have to download it. Most of these
people are not very adventurous users. Also, this is part of a Disaster
Recovery scenario, so people are likely not to be in the best of moods
should
they need it.
>
I'd like to make this as painless (not for me of course) as possible.
>
"Kerry Moorman" wrote:
>
>Art,
>>
>Why would home users needing the .Net framework be a problem? Or do some
>users use non-Windows machines at home?
>>
>Kerry Moorman
>>
>>
>"Art" wrote:
>>
Hi,
>
I'm putting together an application in vb.net. I will ultimately need
people to be able to run it from home (Normally we're in one office).
I can
store it on a file server, but this raises the problem of a home user
needing
the .net framework.
>
I seem to have 2 choices, and have no experience in either.
>
First, since we use Citrix here, I could publish it as a Citrix
application.
However I have no clue how to do that.
>
Second, I could make this a web application. However, as with my other
choice, I've never written a web application and could use some help
getting
started. I've written some HTML and Java Script a few years ago. I've
never
written ASP.Net and am not really sure how to start, or what I'll need.
>
Does anyone have any suggestions? Sorry if it sounds like I'm lost,
but I am.
>
Thanks.
Aug 6 '08 #10

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

Similar topics

0
4737
by: James Ng | last post by:
I have posted this to the Citrix Developers' forum and have not heard anything yet. So I'd like to see if any other Java developers have experience this problem with their Java application in a Citrix Published application environment. We are running Citrix XP enterprise feature release 2 on windows 2000 server sp4. We developed a Java application which can catch the "PrintScreen" key event released event correctly in our PC but could...
12
9891
by: Corey Burnett | last post by:
I have a client that has a split database (front-end/back-end). They are also using Access security - MDW file. The front end MDE file, the back end MDB file, and the MDW file are all located on a shared folder on the file server. They have two populations of users - local and remote. *ALL* users currently get to the system via a Citrix login. They log in to Citrix and get a Citrix desktop. Then they start the application via a...
7
8140
by: Rob | last post by:
I am an Access developer and have done many Access databases in the standard Front-end on the workstations, backend on the server (over a LAN) but have never worked with Access over Citrix, though that situation is coming up for me shortly. Question: When you run the front-end on the Server, does Citrix clone the front end application database file for each user that connects or do they all connect to physically the same front-end...
33
3250
by: DFS | last post by:
An application I wrote has been deployed on Citrix, and the Citrix admin tells me all users run the same .mde file. There aren't a lot of concurrent users, but even 2 could be cause for concern. I think the use of globals is worrisome in this case. Anybody have any experience with Access on Citrix? (Al Kallal already griped me out about globals, but if he has anything new to add I'm all ears).
7
2517
by: SK | last post by:
Hi, Would appreciate if anyone could help me on this. Basically my client having few branches across state. And they used Citrix in which to connect to the server side for accessing application running on ASPNET (C# code behind). Basically, all my form was coded as user control and loaded as component to the IFrame. The problem is when browsing the page, it could not be loaded. and there
5
11279
by: Art | last post by:
Hi, We have some applications that run on a Citrix server. I would like to run one of them, a reporting app, from within a VB.net application. If I log into the Citrix server with remote desktop, I can type a command line that will do what I want. My VB.net application is not on that Citrix server. I'm afraid that if I map a drive to the Citrix box and shell out to the reporting app that I'll take it over -- that is, my use of the...
7
4992
by: Paul | last post by:
I have a VB.NET form with a DataGrid. When I toggle to Excel (for example) and then back to my application the repaint of the DataGrid is really slow. You can see the repainting happening. When I toggle back to Excel, it does not do that. The repaint is quick. I'm running this within a Citrix environment. The scrolling of the DataGrid is slow also. Would anyone know how I can fix or even determine what is going on? Thank you!
0
1876
by: roneon | last post by:
This is the problem that the topic starter posted: "we installed Oracle-Client 8.1.7 on a server with Windows 2000 Terminal-Services and Citrix Metaframe Xp. The Forms-Applications we wrote are on a fileserver.
4
3516
by: Peter | last post by:
I have the following code which works fine in IE6 and IE7 and FireFox, but when I run IE6 on Citrix I get "The page cannot be displayed" in the iframe. We don't have IE7 on Citrix so I can't try it. <span id="ShowReport" disabled="disabled" style="display:inline-block;height:1200px;width:880px;"> <div> <iframe src=../../WsiLogo.gif<frame src=../../WsiLogo.gif> <embed src=../../WsiLogo.gif</iframe> </div>
0
8091
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8579
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8232
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8408
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6064
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5524
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4098
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2540
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1403
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.