ASPNET to work on Citrix

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
is no message. I did suspected that is it relate to security for ASPNet User.
 
The Citrix control is like Terminal Server/VPN/Remote Desktop.

http://www.citrix.com/lang/English/home.asp

It allows you to sit at the console of the machine running Citirx,
and run apps as if you were there.

Since ASP.NET delivers HTML, I don't think it's
the right thing to do to run ASP.NET under Citrix.

OTOH, I could see its use to configure IIS/ASP.NET and the
server itself, but never to run the ASP.NET apps through it.

You run your ASP.NET apps via a browser.




Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
 
Basically, i just need to browse the web site hosted at client site (citrix
login page appear). then i need to login. After login basically it wil be
Terminal service client
and from here i can browse the AspNet application through browser (LAN) to
AspNet Server.
 
re:
Basically, i just need to browse the web site hosted at client site

If the site is in an intranet, you'd have to use Citrix or similar.

If the site is publicly accessible, you could browse
it either via its DNS name or its IP address.

re:
The problem is when browsing the page, it could not be loaded.
and there is no message.

Can you ping the server's IP address ?




Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
 
Yes you are right, it's Intranet which is why they use Citrix.
I could see other machine name in the Network.
Basically when i use IE to browse i can see my login screen and those screen
built using html / js / aspx. But i have problem load the ASPNet web form
which was written as a user control component.
 
re:
Basically when i use IE to browse i can see my login screen
and those screen built using html / js / aspx.

OK, so you don't have connectivity problems when browsing.

re:
But i have problem load the ASPNet web form
which was written as a user control component.

Does that user control load correctly when you browse through Citrix ?

That might simply be a coding problem.

If it's not too large a file, and you don't break company rules for doing it,
post the user control code, and the directive on the aspx page which
loads the user control.

Maybe a sharp eye here can spot a problem and find a splution.



Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
 
i think i found the problem, but still need to test it.
Basically i found that the Citrix Server is not installed with .Net Framework.
i would say it may cause the problem, could not view the page.
 
Back
Top