Web Forms :: Integrate Windows Application Into Web Application?

May 19, 2012

is it possible to call or integrate the windows application into asp.net web application? is it yes then tell me how to do it.

View 1 Replies


Similar Messages:

Installation :: How To Integrate Web And Windows Application

Sep 24, 2010

i am developed windows based application as well as web based application,but now what i want is after logging into my web application only,the windows application will open and run.first how to create single setup for both application .

View 2 Replies

Security :: How To Integrate Application In Windows Login Screen

Jun 20, 2010

how to integrate a asp.net application in windows user Login screen?

I have a asp.net 2.0 application. Users can able to run this application from windows login screen before they login.

View 1 Replies

MailMessage Sent To Any Adress From Windows Forms Application, But Not From Asp.net Application, After Both Are Using The Same SMTP-server?

Jan 27, 2010

I'm experiencing a to me mysterious error when sending e-mails through a SMTP-server from an ASP.NET web application. I get the famous error "unable to relay for xxx@yyy.zzz". What's mysterious to me is that when I cut and paste the exact same code that sends the e-mail into an usual .NET Windows Forms application, send the e-mail with this application, it all works just fine. This made me think that perhaps the problem is that the ASP.NET application runs as NETWORK SERVICE while the Windows Forms application runs on a domain user account, but it turns out that I have another ASP.NET application sending e-mail through the same SMTP-server running under NETWORK SERVER at the same IIS, and this application does not experience this problem.

I've further tried to send e-mails through the SMTP-server manually by telnet the smtp-server on port 25 and running the SMTP-protocol manually, and it all works fine. The SMTP-server is not configured with any kind of authentication or SSL.

Another mysterious fact is that the ASP.NET application can send e-mails from an adress within the same domain to an e-mail adress within the same domain, but not to any adress outside of the domain. But the Windows Forms application, that uses the exact same code, can send e-mails from any adress to any adress both within AND outside of the domain.

So to summarize:

The ASP.NET application can send
e-mails from addresses within the
domain to adresses within the domain,
but not to addresses outside of the
domain.
A Windows Forms application running
the same code on the same computer
can send e-mails from ANY address to
ANY address.
Another ASP.NET application on the
same IIS running under the same
account (NETWORK SERVICE) can send
e-mails using the same SMTP-server
from ANY adress to ANY adress.
There is no authentication configured
on the SMTP-Server.
Both the ASP.NET application and the
Windows Forms application utilizes
the System.Net.Mail.SmtpClient class
to send a
System.Net.Mail.MailMessage.

The code that sends the e-mail massage is:

private void button1_Click(object sender, EventArgs e)
{
MailMessage mesasge = new MailMessage(txtFrom.Text, txtTo.Text, "Test mail", txtBody.Text);
SmtpClient client = new SmtpClient();
if (!(string.IsNullOrEmpty(txtUserName.Text))) //Is false since txtUserName.Text is empty
client.Credentials = new System.Net.NetworkCredential(txtUserName.Text, txtPassword.Text);
client.EnableSsl = false;
client.Host = txtServer.Text;
client.Port = 25;
try
{
client.Send(mesasge);
}
catch (Exception ex)
{
txtResponse.Text = ex.Message;
}
}

As far as I can understand, this should be a matter of configuration rather than coding issues.

View 2 Replies

Get Application File Path In Windows Forms Application?

Nov 3, 2010

I have a simple windows form app that I need to get the file path for. I am placing a config file in the same directory and I need to be able to get the path to that file.

I have used
Application.CommonAppDataPath
but that returns the path with 1.0.0.0 at the end.

and
Applicaiton.StartupPath
but that returns the path with indebug at the end

Is there anyway to get the path to just the main file directory without anything appended to the end?

View 3 Replies

Web Forms :: Same Codes From Windows Application But Can't Compile The Same Way In Web Application

Jan 25, 2011

why is it that the exact same codes that i use to create a Windows application, which is able to work, does not work on a Web application? i created a windows application using c# and socket programming language. i will be connected to a remote server and through the windows application, and i will be able to send the "byte[] msg" to the server and activate the LED lightbulbs attached to the remote server. that exact same codes works well on the Windows application. however, when i create another Web application using the same exact codes, i does not have any error yet i am not able to activate the LED lightbulbs attached to it. is it that through the web or internet explorer i am not able to send the "byte[] msg" correctly? or that i sld modify "byte[] msg" to suit the web usage? or any other reasons?

View 7 Replies

How To Integrate Net Application And Net Forms With PHP Website

Mar 5, 2010

My university has a PHP website and I am going to develop a .Net project for the university. My question is:
How to integrate my .Net application and .Net forms with PHP website?

View 2 Replies

Web Forms :: Integrate Google App To Web Application?

Mar 3, 2010

I need to use google accounts in my ASP.NET application. Did somebody do it?

View 3 Replies

Can Windows Service Application Share A Bin Folder With A Web Application

Jan 5, 2011

I have some common dlls that are referenced by both a windows service application and a asp.net web application. I don't want to make separate copies of the dlls and I also don't want to put those dlls into GAC. I try to put that service application under the same root folder as the web application so that they can share the same bin folder. I am not quite sure if this will cause any problems? I did find the web application had random session timeout, but not very often. Not sure if it was caused by the shared dlls.

View 1 Replies

Web Forms :: Blog To Integrate With Existing Application

Dec 2, 2010

I have an existing asp.net 4.0 web application and want to add a blog to it. I would like to create a new sub-directory and call it "blog". Is there some well suited blogs for this purpose?

View 7 Replies

JQuery :: C# - Integrate The FullCalendar To New Web Forms Application

Oct 6, 2010

I am trying to integrate the jQuery FullCalendar to a new Web forms application. I am new to jQuery so need a bit of help to set this up. Full Calendar link - [URL] I have found a tutorial using MVC - [URL] But i am using Web forms,

View 12 Replies

Passing Data From Windows Application To Web Application?

Apr 26, 2010

I have a windows application and a web application. The windows as well as web application has a login page. The username and password are same for the windows and web application.

In the windows application, the user enters the username and password. With this username and password in windows application, is it possible to log into the web application? If yes, How to pass the data from windows application to web application, thereby logging into the web application. Is it possible to pass the username and password from a windows application to a web application?

View 5 Replies

Converting Windows Form Application In Web Application?

Dec 27, 2010

Is it possible to convert a windows form application into a web application?

If it is not possible, how can I add the OpenFileDialog in a web application form?

I cannot see it in the toolbox if i choose new web application. On the other hand, I can see it if I choose windows form application.

View 21 Replies

WCF / ASMX :: Passing Value From Web Application To Windows Application?

Aug 17, 2010

I have a web page where I used a gridview and a button.When selecting rows in the grid and click on the button another windows application fires.I need to pass the values of the selected rows to the windows application.

Rightnow I'm saving the values in an xml file and fetch the values in the windows application.But this is not practical when creating xml files with random numbers(Scan125.xml,Scan7867.xml,etc).

View 1 Replies

Local Web Application Or Windows Application For System?

Jun 17, 2010

I am going to design system that will keep track of publications due by researchers in my work place
Need for this project :

1- a database housing the information .

2- Automatic reports must be generated .

the users will upload PDF and we have around 25 researchers.

I can't decide which one is better for my system .

My questions are :

1- Local web application or windows application ?

2- Access or SQL as database ?

3- I have visual studio 2010 for student use, Could I use it or I need to buy one ?

View 1 Replies

Web Application References For A C# Windows Application Developer?

Oct 14, 2010

I am used to working on C# .NET windows applications. I am interested in starting with web applications. good ebooks or references for C# ASP.net to begin with for a guy like me who is comfortable with windows applications?

View 3 Replies

C# - Integrate CMS Into MVC Web Application?

Feb 20, 2011

I've been building an ASP.NET MVC 3 web application for about 11 months now, and I have some content based components that I'd like to separate from the actual HTML views and move to more of a CMS system. This will allow the communications people in my company handle that portion of the content without requiring the web app to be redeployed.I'm not looking for a full CMS system. I have specific places in the web app where I want to be able to include CMS based content, and I'd like to be able to host a blog on the CMS as well.

View 2 Replies

How To Integrate MS Word In A Web Application

Mar 8, 2011

I have a web application written in ASP.Net. When a user clicks a button in my application I want to open a MS Word file. How could I do this?

View 1 Replies

C# - Is It Possible To Integrate GPS System In Web Application

Jun 19, 2010

One of my client wants to track his cars/cabs from his own house... So i thought of getting help from our fellow users of SO... Is it possible to integrate GPS system in an asp.net web application? If so,How to get started... Any webservice that does it for me? Should i use google maps api?

View 2 Replies

Mvc - How To Integrate/update Changes In Web Application

Feb 2, 2011

I am working on ASP.NET MVC-2 web application. i want to update new changes in the existing running application.

View 1 Replies

MVC :: How To Integrate .net Application With Google ...

Mar 29, 2011

i want to implement an asp.net MVC web application where a user enter the required address in the mvc application and then click on submit button where the related address will be displayed using Google maps inside the MVC application.

i have good knowledge of developing MVC web application but i lake the required knowledge to develop such and integration.

View 5 Replies

Can Integrate BlogEngine.net Into MVC 2 Application

Jul 27, 2010

I want to add blog into my existing ASP.Net MVS 2 application. dotnetblogeengine.net is an option to a blog into Web Forms application. Can it be added into MVC 2 applocation.

View 3 Replies

MVC :: How To Integrate APIs Into Application

Mar 29, 2011

I have 4 APIs from StubHub, TicketsNow, TicketNetwork and RazorGator that need to be integrated into my MVC3 event ticketing site. This site has a database that lists the events for which the site owner wishes to sell tickets. Once an event is selected on site, the 4 APIs need to be queried for ticket availability.

Should I add these 4 APIs as web references in the MVC3 application? Or, should I utilize SQL Server Integration Services to load ticket data into the database from each API and then have site users query both event and ticket data from the site, rather than querying for event onsite and then making API call for availability?

View 2 Replies

Application To Windows Application Communication

Oct 11, 2010

What are the different ways in which a web application can communicate to a windows application? I have heard that activex control events can be handled in javascript to achieve this.

Does WCF or any new technology provide a better implementation for this?

Can the publish/subscribe architecture be used here?

View 2 Replies

Convert Windows Application To Web Application?

Jan 20, 2011

Is it possible to convert windows application to web application. if yes means how can do this.do u have any tools.if not means why.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved