C# - COM Port Can't Be Opened In Asp
May 10, 2010
I following this article for sending SMS it is a winform application.. I have referenced all the Dll's to my asp.net application. I use an aspx page to detect a mobile device connected to a PC..... But it alwys shows COM 'n' Port could not be opened.
using SMS;
using GsmComm.GsmCommunication;
using GsmComm.PduConverter;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
GsmCommMain comm = new GsmCommMain(6, 9600, 300);
comm.Open();
if (!comm.IsConnected())
{
Response.Write("No Phone Connected");
}
else
{
SmsSubmitPdu pdu = new SmsSubmitPdu("test", "+919999999999", "");
CommSetting.comm.SendMessage(pdu);
}
}
}
EDIT:
I use the web development server that ships with Visual Studio... If go to Control Panel -> Phones & Modems -> Modems i could see my mobile connected in com6.. i have tested the winform application it works fine.Is this the answer? ASP.NET pages are supposed to work.What is happening over here is that when you click on open_com button, the ASP.NET page posts back to itself, executes the event handler i.e., opensthe port. Then when the page finishesprocessing the post back, it is unloaded. At this point the COM1 objects is also destroyed.
View 3 Replies
Similar Messages:
Jan 16, 2011
i can control a LPT port or COM port or any other hardware of server using ASP.Net with C#. I haven't found any clue in the internet.
I want to control a COM port Parallel port from web application.
View 2 Replies
Nov 4, 2010
I am generating a new report page by using the following code.
[Code]....
But, the above script is used in more than 20 parameter page which ultimately always open the same Report_preview.Aspx page.
What i want to check while running the above script is "give a warning if the Report_preview.Aspx is already opened"
View 5 Replies
Feb 7, 2011
I have a page with a gridview on it. The gridview can not be seen when the page is opened. There is a dropdownlist and a button on the page. The user is supposed to make a selection in the dropdown and then click the button (labeled "Go") and then the gridview appears. The problem is that the gridview appears in response to the dropdown selection, before the go button is clicked. I'm sure this is easy but how can I stop the gridview from appearing in response to a dropdown selection? The dropdown is called ddlfilter. This is the code I am using:
Part 1 (continued in next post):
Code:
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"[URL]>
<script runat="server">
Private Function GetColumnIndexByName(row As GridViewRow, SearchColumnName As String) As Integer
Dim columnIndex As Integer = 0
For Each cell As DataControlFieldCell In row.Cells
If TypeOf cell.ContainingField Is BoundField Then
If DirectCast(cell.ContainingField, BoundField).DataField.Equals(SearchColumnName) Then
Exit For
End If
End If
columnIndex += 1
Next
Return columnIndex
End Function
Sub GridView1_RowCreated(ByVal sender As Object, ByVal e As GridViewRowEventArgs)
If Page.IsPostBack() Then
If ddlFilter.SelectedItem.Text.ToString() <> "- ALL -" Then
If e.Row.RowType = DataControlRowType.DataRow Then
e.Row.Cells(GetColumnIndexByName(e.Row, ddlFilter.SelectedItem.Text.ToString())).CssClass = "viscol"
End If............
View 3 Replies
Apr 29, 2010
In our project there is Send Mail option. I need to get the acknowledgement when the user open that mail. Is it possible? We are developing the project using ASP.NET, C# and SQL Server.
View 2 Replies
May 21, 2010
I can specify a port number with SmtpClient object in ASP.NET, what I am wondering is, is that just the port .NET uses to send mail to the SMTP server? Or will that dictate what port for the SMTP server to use? Or is it that it MUST match the port configured for the SMTP server?
View 2 Replies
Feb 20, 2010
ASP.NET 2.0 and COM Port Communication
I have a managed DLL which communicates with the devices attached on COM/Serial ports. The desktop Winforms application sends requests on ports and receives/stores data in memory. In Winforms app I have added a reference to DLL and I am using the methods. This works well. Now, there is a situation where I need to show this data from serial/com port on a web-page. And also users should be able to send requests to the ports using this DLL. I have made a web app in ASP.NET (2.0). Added a reference to the DLL. I am able to use this DLL, the DLL communicates on the COM upon button click on web-page and also the response is shown on web page. However I am not happy with the approach and strongly feel that this is a bad approach. Also the development server crashes after 3 -4 requests. What is the best approach in this scenario. If I use a windows service then how would my ASP.net app will communicate with the Weindows service.Or can this be easily done using WCF. I have not used WCF any time nor any of .net remoting technique.
View 1 Replies
May 9, 2010
I need a sniffer to catch all http communications on certain port, recommend one for me.
View 1 Replies
Jan 19, 2011
I have one login page which contains popup control for entering login details. When user successfully logged in then Itemlist page will get open and login page also remains open (as per my requirement) with some text. Now if user reloads the login page then it will open second Itemlist page though first Itemlist page is opened. So i want to check on login page that if Itemlist page is already open then it doesn't open second itemlist page.
View 5 Replies
May 13, 2010
i have a asp.net web application with few hyperlinks
when clicked it used to open in a new window due to target="_blank" which is specified
it was wrking fine but due to some settings or changes done now its not getting opened the links without target="_blank" gets opened as it gets opened in the same parent window
View 11 Replies
May 20, 2010
I have a web site developed in framework 3.5 , OS 2008 Server and iis 6.0 My web site running on port no. 80 and accessible in Lan network but it is not accessed when I changed to any port no like 8060 or 88. how to change port no so that I can access it in LAN network
View 6 Replies
Jan 20, 2011
Does anyone know if it is possible to configure Intelligencia.UrlRewriter to work when accessing a site via a port other than 80?[URL]
View 1 Replies
Jun 17, 2010
I am using serial port communication in my asp.net webform application...
[code]....
This method works when i send i single message... But when want to send sms in bulk opening and closing port everytime is not a good idea... So my question is it possible to use a serial port like session in c#?... When i open a port i want it to be open for 1 hour and then if my time expires i want to close the port and open it the next time...
View 1 Replies
Sep 15, 2010
How do I redirect an incoming request on port xxx to localhost:yyy on windows 7?
Development Server (vs 2008) only allow access from localhost which isnt good enough. I need to test my app from various computers.
View 3 Replies
Nov 13, 2010
just like all applications uses a defualt port, which port does asp.net webserver use of the system.
View 6 Replies
Nov 25, 2010
how to use global asax to close the opened connection when user logout from the application?
View 9 Replies
Jun 30, 2010
when i click on link, a window opened with datetime picker, i want to select the date and display into one textbox using java script.
View 2 Replies
Jan 25, 2010
When trying to open a page I am getting this error: Failed to decrypt using provider 'RsaProtectedConfigurationProvider'. Error message from the provider: The RSA key container could not be opened. I did some reading and it seems that this command woudl fix it:
from here [URL]
aspnet_regiis -pa "NetFrameworkConfigurationKey" "ASPNET"
I tried that but I get a new error:
C:WINDOWSMicrosoft.NETFrameworkv2.0.50727>aspnet_regiis -pa "NetFrameworkCon
figurationKey" "ASPNET"
Adding ACL for access to the RSA Key container. The RSA key container was not found. failed . Now, I don't really understand all of this stuff (my boss just said: Heres the problem, fix it).
View 1 Replies
Nov 26, 2010
i have a breand new laptop with only the OS installed. I have installed VS2008 and its updates I also installed VS2010 and its updates. I started to recieve the above error when I try to access SQLExpress through the VS interface.
I deleted both version and all the SQL referances in the Install/Uninstall listing.
I have reinstalled VS2008 and its updates and I still get this message...
I find lots or solutions for this error when moving DB's from one machine to another.
What am I supposed to do?
Do I delete EVERYTHING (includein the OS) and start from scratch again!
View 5 Replies
Mar 8, 2010
how to know if modalpopupextender is now opened or closed using javascript??
View 2 Replies
Sep 13, 2010
I use a separate project for my data layer and call one class within it clsData.cs. I'd like to know which page from the Presentation Layer (in another project within the solution) has referenced it from the clsData side, if that's possible.
View 3 Replies
Dec 24, 2010
My DD site runs in an intranet environment. Therefore,Integrated Windows authentication is used. On Windows Sever 2003 and IIS 6 connection to SQLEXPRESS 2005 possible only with a
connectionString="Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|Membership.mdf;Integrated Sequrity=False;User ID=xxx;Password=zzz"
On Windows Server 2008 and IIS 7 connect to SQLEXPRESS 2008 with Integrated Windows authentication cannot be nothing. I get the message.
CREATE DATABASE permission denied in database 'master'.An attempt to attach an auto-named database for file c:inetpubwwwrootDD_OborudovanieApp_DataMembership.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share
Why is it so?
View 2 Replies
Feb 9, 2010
In my login page, after login, open default.aspx page with criptManager.RegisterStartupScript(this.Page, this.GetType(), "_opener", "window.open('Default.aspx');", true); but in default.aspx. on button click event ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "_opener", "window.open('Default2.aspx');", true); not running. How to run window.open from my file which is opened with ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "_opener", "window.open('Default.aspx');", true);
View 2 Replies
Mar 13, 2011
I have window application and I want to use same instance of opened forms from application. I know this is possible with singleton pattern so if you have code example of singleton pattern then
View 2 Replies
Mar 3, 2011
I have a navigation on my site that retrieves it's links from xml file..Does asp do this everytime a link is clicked on my site..I'm using a master page and the navigation code within the master page is below..So is the xml file opened and read each and every time? any way to cache it or something.below is my code
[Code]...
View 5 Replies