Thanks jmeckley! I've been coding using the Facade Pattern and didn't know it. The code I posted is an example of an application I've had to maintain. I have been getting irritated with the "noise" and just wanted to make sure I wasn't missing something before I change anything. Thanks again...
Assume an application always routes db access through a public method and then to private. I'm wondering what benefits this may offer? Below is an example.
public class ClsTest
{
private static string xMyMethod()
{
return "I accessed a database";
}...
Thanks jason. You have provided some important information. I'm still absorbing info from Udi. I think I'm am going to stay the course of the separate services for now. This is a beta product and my vendor is aware of that. If they complain, it's an easy change to make before putting into...
Thanks for the feedback jmeckley.
Regarding maintainability, agreed. Taking a look at the concepts the services are representing, I would compare it to an order entry system. Currently, I have a service for each area of the application. For example, a service for customers, one for orders...
JD Solutions,
Not sure if this will offer any help but you could try the following:
1. Make sure your references are set correctly in the project.
2. In IIS set the application pool to enable 32 bit applicaitons.
2. In the project properties, change target cpu to any cpu and/or also try x86...
Hi everyone,
I'm not sure if I'm in the correct forum as I did not see a WCF forum. I'm developing web services for a client that will be exposing methods which are all related to our current web application. I need to know if there is any advantages/disadvantages of putting all the...
Hi, Just a suggestion:
You may have a compilation error during rebuild in one of your projects. Take a look at the last error in the list and resolve then rebuild.
Good Luck
TallOne
Just use "ref Object nodeValue" but later you'll have to cast and probably put in "if" statement to get typeof
If your talking about collections then yeah,
using System.Collections.Generic;
....ref List<oYourObject> nodeValue...
Just to follow up... We can use the URL Rewrite Module to implement forcing SSL in IIS7. Below is a link I found useful in getting started.
http://learn.iis.net/page.aspx/460/using-url-rewrite-module/
Andegre, Sorry about the previous post. I meant to create a post rather than reply. I believe in your case you will want to leave [All Unassigned]. I believe the selection is for configuring multiple websites host header records per ip address. Do you have host header records for each ip?
I've been using IIS6 for my web app installs and I force SSL by selecting force ssl in the certificate edit. However if a user types the url http:// rather than https:// the user gets a 403.5 error. I circumvent this by using a custom error page the redirects to the desired page using...
I've been using IIS6 for my web app installs and I force SSL by selecting force ssl in the certificate edit. However if a user types the url http:// rather than https:// the user gets a 403.5 error. I circumvent this by using a custom error page the redirects to the desired page using...
Thanks ca8msm. I ended up combining js files to keep my logic in one place. For learning purposes and in the event I need to use this technique in the future, what's the correct usage? Are asp:controls allowed in the head tag?
<head>
<asp:Literal id="Literal1"...
Hi all,
At the bottom is the head section of my aspx page. I want to set the src prop of the script at run time.
src="Scripts/iphonenavIE.js"
or
src="Scripts/iphonenavSafari.js"
If I add an ID and RUNAT props I get tons of unrelated errors on build and intellisense doesn't recognize the...
Again without the typo....
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script>
(function() {
window.attachEvent("onload", function(event)
{
alert('onload occured');
}, false);
window.attachEvent("onclick"...
Sorry this is an intranet. Place this in an html file and you should be able to reproduce....
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script>
(function() {
window.attachEvent("onload", function(event)
{
alert('onload occured')...
Can someone help me with creating a onclick event for IE window? Onload works but not onclick?
I'm using this in an ASP.NET page
<script type="text/javascript"src="theCodeBelow.js"></script>
(function() {
window.attachEvent("onload", function(event)
{
alert('onload occured');
}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.