C# - WCF On Windows 7 Not Working
Jan 3, 2011
I create wcf for server side printing scenario... I host wcf dll on console application. Below is my code:
class Program
{
static void Main(string[] args)
{
using (ServiceHost host = new ServiceHost(typeof(PrintBarcode)))
{
host.Open();
Console.WriteLine("The service is ready...");
Console.WriteLine("Press <Enter> to stop the service.");
Console.ReadLine();
host.Close();
}
}
}
And this is my app.config:..............................
View 1 Replies
Similar Messages:
Mar 17, 2011
I just downloaded and installled the Microsoft Windows Azure SDK yesterday for the first time and I am having issues running the application as I all I am getting is 503 errors. I run Windows Server 2008 R2 on my development machine and even tested it on another co-workers 2008 R2 and couldn't even compile the application. He got this error instead "A problem occurred while trying to set the "References" parameter for the IDE's in-process compiler. Error HRESULT E_FAIL has been returned from a call to a COM component."
From within my Windows Server 2008 R2 Hyper-V Virtual Windows 7 x86 enviroment, I was able to successfully build and run the Windows Azure SDK and it even showed the base ASP.NET application.So my question is, does the Windows Azure SDK for Visual Studio 2010 w/ Visual Studio 2010 SP 1 installed not work under Microsoft Server 2008 R2?
View 1 Replies
Jul 30, 2010
i am using jquery to implement a modal confirm windows but it not working i have a template field button with ajax confirm using jquery but i have a problem. Apper the confirm windows but when i click on "yes" doesn't execute the delete command. without ajax (using template field button and simple confirm windows javascript) works so well.
[Code]....
View 13 Replies
Nov 4, 2010
I'm trying to hit my intranet website and get it to run a simple sql query as the windows user I'm logged in as.
When I debug through Visual Studio, everything works great. When I hit the webserver though, I get an error from sqlconnection saying, "ERROR:Login failed for user 'YOUR_DOMAINYOUR_WEBSERVER_NAME'."
Request.ServerVariables[AUTH_USER]: YOUR_DOMAINUserBob
System.Security.Principal.WindowsIdentity.GetCurrent().Name: NT AUTHORITYNETWORK SERVICE
Page.User.Identity.Name: YOUR_DOMAINUserBob
System.Threading.Thread.CurrentPrincipal.Identity.Name: YOUR_DOMAINUserBob
[Code]....
View 2 Replies
Apr 28, 2010
I have a User Control that contains a System.Web.UI.WebControls.FileUpload control as well as a button to 'Submit'.
When the button is clicked code similar to the following is executed:
If FileUploadControl.HasFile Then
'Save the file and do some other stuff
End If
This code works just fine with Windows XP. However, if I run it from a Windows 7 64-bit machine using IE8 32-bit the HasFile property always returns false and nothing is saved?
View 1 Replies
Feb 27, 2011
I'm trying to run any application on XSP4 web server using new Mono 2.10 (downloaded from windows installer bundle). I have already tried to run simple ASP.NET MVC2 project and ASP.NET. Both were simple applications stubs. In all cases in browser under localhost:XXXX it seems that page is loading but nothing happens. With Mono 2.8 it works without any problems. Any suggestions how I can debug or solve this problem?PS. My windows firewall is turned off so it shouldn't be problem.
View 1 Replies
Jul 24, 2010
We have an asp.net application that uses a menu from the master page. It will not work with Windows 7. only the current node and the logout button display (logoout button will not work). Is there a fix for this? the control works properly on XP and Vista.
View 2 Replies
Nov 1, 2010
I have implemented URL Routing in Asp.net 4.0 application, when i try to run it on windows server 2003 R2 server with IIS 6.0. the application works fine but without routing, whereas routing works fine on every other server.
View 1 Replies
Jul 9, 2010
Im using a httphandler to response another pdf file in case requested file not found. Its working fine in local development pc but not working in web server. Mapped .pdf as wild card mapping too but no result yet. Still i'm getting the 404 error.
View 1 Replies
Nov 20, 2010
I'm trying to write a simple ASP.NET 4.0 app, using Windows authentication to login. This is on my peer-to-peer home network. When I click to login, it instantly shows my Windows identity, so it looks as though I don't even need to login, as it's already done that for me. However when I then go to any other page in the app, it looks as though I'm not logged in. Why is that and how do I fix it?
View 2 Replies
Feb 21, 2011
According to [URL], MVC3 should be correctly installed on a computer with .Net Framework 4.0 and Visual Studio.
But the installer doesn't work properly on Windows XP. The MVC 3 templates doesn't appear after install.
View 1 Replies
Oct 20, 2010
I have Implemented routing in my web application. Iahve registerd the routes in global.asax file in application start event like the following: where my application containing a login page on the root
System.Web.Routing.RouteTable.Routes.Add("Login", new System.Web.Routing.Route("Login", new RouteHandler("~/Login.aspx")));
//RouteHandler class code
public class RouteHandler : IRouteHandler
{
public RouteHandler()
{
}
public RouteHandler(string virtualPath)
{
_virtualPath = virtualPath;
}
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
var display = BuildManager.CreateInstanceFromVirtualPath(
_virtualPath, typeof(Page)) as IDisplay;
return display;
}
string _virtualPath;
}
//IDisplay code
public interface IDisplay : IHttpHandler
{
}
And i have inherit the IDisplay on my login page.
No have host this application on the windows server 2003 on 80 port and map this to the sub domain like
[URL]
now i am browsing the url
[URL]
this giving me the page not found error on browser.
I am abel to browse the page if i use
[URL]
So wt is the main issues with this routing.
I have done all settion in web config for routing.
View 1 Replies
Feb 7, 2011
In IIS 7.5 server I have a website apps.mydomain.com. Site binding for this website is:
IP: All Unassigned
Port: 80
Host name: apps.mydomain.com
In DNS there is an ip address pointing to apps.mydomain.com. Site comes up fine when browsing to this hostname.
I want to get current windows logged in username from asp.net web apps. I enabled windows authentication and disabled anonymous. Using this ASP.Net code to test:
Response.Write(Page.User.Identity.Name);
However, browsing to http://apps.mydomain.com/site/ the application pool identity shows as the Page.User.Identity.Name value and not the current windows logged in username.
If I browse to http://servername/site/ then Page.User.Identity.Name will return current windows logged in username.
Is there something else I need to configure to get the current windows logged in username when using host header?
web.config:
<?xml version="1.0"?>
<configuration>
<system.web>
<authentication mode="Windows"/>
</system.web>
</configuration>
App pool config (left out "handlers" for brevity, there's a 30000 char limit):
[Code]....
View 2 Replies
Apr 15, 2010
I have created a web aplication in the following environment Visual studio 2008, IIS 5.0 & OS:Windows XP. It is working fine in my local system. But when I host this application on the server some of the AJAX methods are not working.
The server environment: They have installed Microsoft .Net framework 3.5, IIS 7.0 & OS:Vista.
I am using a text box in that application. When a user types any character say 'a' a div will be opened below the text box displaying all the cities starting with the character 'a'.
for example this is code where I have written the Ajax method
[Code]....
I am calling this Ajax method in the source file through javascript, below is the code
[Code]....
The ajax method which was written in the .cs file returns the response.value correctly in my local system.But in the server the Ajax method is not returning the response.value.
View 1 Replies
Jul 17, 2010
[Code]....
Now,where(i.e;in which location of my hard disk) can i find the cookie that i recently created? I am using windows vista sp1?
View 3 Replies
Jan 27, 2011
am using a windows service created by me it works fine in debug mode.I have created a setup for installation of windows service and installed it on the same machine.For testing i am creating a notepad file in c:\temp123.txtIts working gr8 in debug mode but not working when installed using a set up . also i have used same set up on another machine.Its not working thr as well.What can be the reason.Note:- two weeks back i have checked it using installer on another machine it was working, but suddenly now its not working any where.
View 10 Replies
Apr 8, 2010
I am building a simple application in Windows as well as in Web.I have two textboxes . Whatever I write in textbox1 should simultaneously be written(or copied) in textbox2-It should copy in textbox2 alphabet by alphabet OR each number by number as I write it down in textbox1It (TextChanged event) works fine in Windows application but in Web application it is not working.
View 10 Replies
Jul 8, 2010
i working in asp.net mvc project and deployed in the windows 2003 with iis 6.server.But it post method in jquery is not working after hosting. it given all path of the script is correct with Url.Content. The same Project hosted working in xp with iis5.1 it working fine.Give me any solution to run post of the jquery in the hosting server windows 2003.
View 2 Replies
Sep 10, 2010
I have developed a website using visual studio. Now i want to deploy the same on server having windows server 2008 o.s. and IIS 7. When i copy the website and paste it into wwwroot folder of iis its not working. What settings need to be done so that website can be accessed from iis.
View 2 Replies
Mar 18, 2011
I have a framework 2.0 AJAX app that was moved to Windows 7 2008 R2 server with II7. The application pool is set to 2.0 for the website, but its always looking for this assembly. Everything I've read says you do not install AJAX 1.0 Extensions on Server 2008? Since this IIS is not mine, I'm trying to be cautious. Should I install the extensions, or is there some server setting Im missing??
Parser Error Message: Could not load file or assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
Source Error:
Line 29: <compilation debug="true">
Line 30: <assemblies>
Line 31: <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,[code]...
View 5 Replies
Oct 22, 2010
I need to extract meta-data of different files, as uploaded by the user.
For this I found out dsofile.dll from MS. Now the problem is that the version I've downloaded from
[URL] is working fine with Windows XP but giving run-time error in Windows 7 64-bit system. Finding more on the error I was getting I came to know that the dll would not work for 64 bit OS. I also downloaded 64-bit from [URL] but still am getting below run-time error:
Retrieving the COM class factory for component with CLSID {58968145-CF05-4341-995F-2EE093F6ABA3} failed due to the following error: 80040154.
I've two questions:
How can I solve this run-time error and from where will I get dll working in VS2008 Website on Windows 7 64-bit?
Is there any other way I can extract meta-data (all the attributes/properties other than exposed by System.IO.FileAttributes) of any file (could be doc, docx, xls, xlsx, jpg, pdf, txt, etc.) uploaded by the user?
View 4 Replies
Nov 10, 2010
I am using ShDocVW.InternetExplorer class to spawn a new internet explorer object and to do some form filling stuffs(for some sharepoint works).It works fine in my own machine which has Windows 7 as the OS. But when I deployed the same thing in windows server 2003 machine, it does not pop up the internet explorer window. When I check the Task Manager, I could see a new iexplore process, but with Session ID = 0 (but session ID = 1 in windows 7). So, I see this is something regarding IIS Session isolation.So, is it possible to assign a ShDocVW.InternetExplorer instance to kind of a new System.Diagnostics.Process and achieve this task? Or can we start a new ShDocVW.InternetExplorer instance with session ID = 1?
View 3 Replies
Mar 16, 2011
ASP.NET Buttons are not firing OnClink() events if it is placed in content page. There is no problem for master page buttons. This problem I am facing only in windows xp home edition.
View 6 Replies
Jan 17, 2011
URL rewrting is not working when I shift the site from windows 2003 to 2008 server i.e from IIS6 to IIS7.I added the aspnet_isapi.dll to Handler Mapping. still it is not working.
showing me page not found 404 error.
View 3 Replies
Sep 13, 2010
I have a Silverlight/RIA application that worked fine locally and on my IIS 7 server. Now that I've moved it to Azure, I'm getting EndpointNotFoundExceptions.
[EndpointNotFoundException]: There was no channel actively listening at [URL]
DomainService.svc/binary/SeviceEndpoint
ive seen the solution for wcf services here [URL] but im not sure if this is also applicable for ria services
View 1 Replies