473,465 Members | 1,373 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Deploying a web application

I have created a web application that uses a custom control and a web
service on my local system. I have gotten all of the bugs worked out on my
local system and now it is time to move it to the sever. I have tried
copying all of the files and folders within my application folder. I have
even tried building a web setup and installing it on the server. The problem
that I am having is that my web service is still looking for the web service
files from the web services folder on my local system. How do I get it to
point to the production sever where I already have the service installed?
Nov 15 '05 #1
10 1835
Hi,

When the web reference is created, there are couple of
settings,

1) Static
2) Dynamic

Static as the name suggests that the web service is
always hosted on same system like Microsoft.com,
Dyanamic, is more what your situation warrants, it
changes when you change your server like from your
localhost to your production server.

So change the web reference properties to Dynamic and
when you build the solution it automatically creates the
configuration file which will have a entry in the
appsettings to point to the specific web service. Thus,
this setting can be changed at any time...

Hope this helps...

Regards,
Prashant
-----Original Message-----
I have created a web application that uses a custom control and a webservice on my local system. I have gotten all of the bugs worked out on mylocal system and now it is time to move it to the sever. I have triedcopying all of the files and folders within my application folder. I haveeven tried building a web setup and installing it on the server. The problemthat I am having is that my web service is still looking for the web servicefiles from the web services folder on my local system. How do I get it topoint to the production sever where I already have the service installed?

.

Nov 15 '05 #2
That sounded like a great idea so I tried it. However, that didnot work. I
am getting the same error. Here is the error that I am receiving: The lines
that say \\FDFSYS02\\blahblahblah is what is registered as localhost.

Server Error in '/EmpRemoval' Application.
----------------------------------------------------------------------------
----

The underlying connection was closed: The remote name could not be resolved.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Net.WebException: The underlying connection was
closed: The remote name could not be resolved.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.

Stack Trace:

[WebException: The underlying connection was closed: The remote name could
not be resolved.]
System.Net.HttpWebRequest.CheckFinalStatus() +673
System.Net.HttpWebRequest.EndGetRequestStream(IAsy ncResult asyncResult)
+75
System.Net.HttpWebRequest.GetRequestStream() +132
System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invoke(String
methodName, Object[] parameters) +105
EmpRemoval.EmpSearch.EmployeeSearch.FindEmployee(S tring sEmpName) in
\\Fdfsys02\FMIS-Users\jwames\My Documents\My Projects\BEKGO1
Intranet\FoodNet\EmpRemoval\Web References\EmpSearch\Reference.cs:43
EmpRemoval.EmployeeSearch.Page_Load(Object sender, EventArgs e) in
\\fdfsys02\fmis-users\jwames\my documents\my projects\bekgo1
intranet\foodnet\empremoval\empsearch.aspx.cs:33
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731

----------------------------------------------------------------------------
----
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET
Version:1.1.4322.573

"Prashant Malviya" <an*******@discussions.microsoft.com> wrote in message
news:0b****************************@phx.gbl...
Hi,

When the web reference is created, there are couple of
settings,

1) Static
2) Dynamic

Static as the name suggests that the web service is
always hosted on same system like Microsoft.com,
Dyanamic, is more what your situation warrants, it
changes when you change your server like from your
localhost to your production server.

So change the web reference properties to Dynamic and
when you build the solution it automatically creates the
configuration file which will have a entry in the
appsettings to point to the specific web service. Thus,
this setting can be changed at any time...

Hope this helps...

Regards,
Prashant
-----Original Message-----
I have created a web application that uses a custom control and a webservice on my local system. I have gotten all of the bugs worked out on mylocal system and now it is time to move it to the sever. I have triedcopying all of the files and folders within my application folder. I haveeven tried building a web setup and installing it on the server. The problemthat I am having is that my web service is still looking for the web servicefiles from the web services folder on my local system. How do I get it topoint to the production sever where I already have the service installed?

.

Nov 15 '05 #3
hi,

Possibly there is another solution, but.
First of all. Copy the compiled libraries (.dll) in a folder called "bin" in
the root of your website. The pages could be in any directory.
Second, open the web application with VS.NET the add a reference to the web
service published in the "real" website. Compile the application, the n publish
the .dll in the \bin directory of your website, then copy the .aspx in any
directory.

It is important to know that the \bin directory is a directory in the root of
the webserver no "inside" a folder.
--
Nos vemos.
Guillermo
--------------
P.S.
Si te parece últil mi sitio:
http://www.elguille.info/lonuevo/lo_nuevo0312.htm#dic30
--------------
Microsoft VB MVP desde 1997
Te invito a mi sitio dedicado al VB y más...
http://www.elguille.info/
http://www.mundoprogramacion.com/
(puede que el correo usado sea anti-spam)
"Jeremy Ames" <yo******@here.com> wrote in message
news:uk**************@TK2MSFTNGP10.phx.gbl...
I have created a web application that uses a custom control and a web
service on my local system. I have gotten all of the bugs worked out on my
local system and now it is time to move it to the sever. I have tried
copying all of the files and folders within my application folder. I have
even tried building a web setup and installing it on the server. The problem
that I am having is that my web service is still looking for the web service
files from the web services folder on my local system. How do I get it to
point to the production sever where I already have the service installed?

Nov 15 '05 #4
Ok, I have done that but I get the same error. In fact, when I finished
creating the web service, I compiled it and installed it on the server. I
then re-referenced the web service at it's new home once everything else was
complete.

I have noticed that in the properties of the webservice, the URL points to
localhost. This is a field that is uneditable. Is there a way I can behind
the protection and change it.
"Guillermo 'guille'" <gu****@en.elguille.info> wrote in message
news:uu*************@tk2msftngp13.phx.gbl...
hi,

Possibly there is another solution, but.
First of all. Copy the compiled libraries (.dll) in a folder called "bin" in
the root of your website. The pages could be in any directory.
Second, open the web application with VS.NET the add a reference to the web
service published in the "real" website. Compile the application, the n
publish
the .dll in the \bin directory of your website, then copy the .aspx in any
directory.

It is important to know that the \bin directory is a directory in the root
of
the webserver no "inside" a folder.
--
Nos vemos.
Guillermo
--------------
P.S.
Si te parece últil mi sitio:
http://www.elguille.info/lonuevo/lo_nuevo0312.htm#dic30
--------------
Microsoft VB MVP desde 1997
Te invito a mi sitio dedicado al VB y más...
http://www.elguille.info/
http://www.mundoprogramacion.com/
(puede que el correo usado sea anti-spam)
"Jeremy Ames" <yo******@here.com> wrote in message
news:uk**************@TK2MSFTNGP10.phx.gbl...
I have created a web application that uses a custom control and a web
service on my local system. I have gotten all of the bugs worked out on my
local system and now it is time to move it to the sever. I have tried
copying all of the files and folders within my application folder. I have
even tried building a web setup and installing it on the server. The problem that I am having is that my web service is still looking for the web service files from the web services folder on my local system. How do I get it to
point to the production sever where I already have the service installed?


Nov 15 '05 #5
hi,

Open the web application (without the web service project)
In the web application, remove all the references to the web service then add a
Web Reference no a "simple" reference that point to the web service you have in
the website.
Compile, publish and... hope you can say: BINGO! ;-)

--
Nos vemos.
Guillermo
--------------
P.S.
Si te parece últil mi sitio:
http://www.elguille.info/lonuevo/lo_nuevo0312.htm#dic30
--------------
Microsoft VB MVP desde 1997
Te invito a mi sitio dedicado al VB y más...
http://www.elguille.info/
http://www.mundoprogramacion.com/
(puede que el correo usado sea anti-spam)
"Jeremy Ames" <yo******@here.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Ok, I have done that but I get the same error. In fact, when I finished
creating the web service, I compiled it and installed it on the server. I
then re-referenced the web service at it's new home once everything else was
complete.

I have noticed that in the properties of the webservice, the URL points to
localhost. This is a field that is uneditable. Is there a way I can behind
the protection and change it.
"Guillermo 'guille'" <gu****@en.elguille.info> wrote in message
news:uu*************@tk2msftngp13.phx.gbl...
hi,

Possibly there is another solution, but.
First of all. Copy the compiled libraries (.dll) in a folder called "bin" in
the root of your website. The pages could be in any directory.
Second, open the web application with VS.NET the add a reference to the web
service published in the "real" website. Compile the application, the n
publish
the .dll in the \bin directory of your website, then copy the .aspx in any
directory.

It is important to know that the \bin directory is a directory in the root
of
the webserver no "inside" a folder.
--
Nos vemos.
Guillermo
--------------
P.S.
Si te parece últil mi sitio:
http://www.elguille.info/lonuevo/lo_nuevo0312.htm#dic30
--------------
Microsoft VB MVP desde 1997
Te invito a mi sitio dedicado al VB y más...
http://www.elguille.info/
http://www.mundoprogramacion.com/
(puede que el correo usado sea anti-spam)
"Jeremy Ames" <yo******@here.com> wrote in message
news:uk**************@TK2MSFTNGP10.phx.gbl...
I have created a web application that uses a custom control and a web
service on my local system. I have gotten all of the bugs worked out on my
local system and now it is time to move it to the sever. I have tried
copying all of the files and folders within my application folder. I have
even tried building a web setup and installing it on the server. The

problem
that I am having is that my web service is still looking for the web

service
files from the web services folder on my local system. How do I get it to
point to the production sever where I already have the service installed?


Nov 15 '05 #6
Hi,

Couple of things,

1) While adding the web reference what is the path which
you have given...

2) Did it generate the config file when you gave the web
reference as dynamic and what is the appsettings in the
generated config file.

Regards,
Prashant
-----Original Message-----
That sounded like a great idea so I tried it. However, that didnot work. Iam getting the same error. Here is the error that I am receiving: The linesthat say \\FDFSYS02\\blahblahblah is what is registered as localhost.
Server Error in '/EmpRemoval' Application.
--------------------------------------------------------- -----------------------

The underlying connection was closed: The remote name could not be resolved.Description: An unhandled exception occurred during the execution of thecurrent web request. Please review the stack trace for more informationabout the error and where it originated in the code.

Exception Details: System.Net.WebException: The underlying connection wasclosed: The remote name could not be resolved.

Source Error:

An unhandled exception was generated during the execution of thecurrent web request. Information regarding the origin and location of theexception can be identified using the exception stack trace below.
Stack Trace:

[WebException: The underlying connection was closed: The remote name couldnot be resolved.]
System.Net.HttpWebRequest.CheckFinalStatus() +673
System.Net.HttpWebRequest.EndGetRequestStream (IAsyncResult asyncResult)+75
System.Net.HttpWebRequest.GetRequestStream() +132
System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invok
e(StringmethodName, Object[] parameters) +105
EmpRemoval.EmpSearch.EmployeeSearch.FindEmployee (String sEmpName) in\\Fdfsys02\FMIS-Users\jwames\My Documents\My Projects\BEKGO1Intranet\FoodNet\EmpRemoval\Web References\EmpSearch\Reference.cs:43 EmpRemoval.EmployeeSearch.Page_Load(Object sender, EventArgs e) in\\fdfsys02\fmis-users\jwames\my documents\my projects\bekgo1intranet\foodnet\empremoval\empsearch.aspx.cs:3 3
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731

--------------------------------------------------------- -----------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NETVersion:1.1.4322.573

"Prashant Malviya" <an*******@discussions.microsoft.com> wrote in messagenews:0b****************************@phx.gbl...
Hi,

When the web reference is created, there are couple of
settings,

1) Static
2) Dynamic

Static as the name suggests that the web service is
always hosted on same system like Microsoft.com,
Dyanamic, is more what your situation warrants, it
changes when you change your server like from your
localhost to your production server.

So change the web reference properties to Dynamic and
when you build the solution it automatically creates the
configuration file which will have a entry in the
appsettings to point to the specific web service. Thus,
this setting can be changed at any time...

Hope this helps...

Regards,
Prashant
-----Original Message-----
I have created a web application that uses a custom

control and a web
service on my local system. I have gotten all of the

bugs worked out on my
local system and now it is time to move it to the sever.

I have tried
copying all of the files and folders within my

application folder. I have
even tried building a web setup and installing it on the

server. The problem
that I am having is that my web service is still looking

for the web service
files from the web services folder on my local system.

How do I get it to
point to the production sever where I already have the

service installed?


.

.

Nov 15 '05 #7
1) http://foodnet/foodnetservices/service1.asmx

2) Yes it did generate the appsettings key and it reads:
<appSettings>
<add key="EmpRemoval.EmpSearch.EmployeeSearch"
p://foodnet/foodnetservices/service1.asmx"/>
</appSettings>

3) I did notice that the URL for the web reference is pointing to localhost,
but it is uneditable.

"Prashant Malviya" <an*******@discussions.microsoft.com> wrote in message
news:01****************************@phx.gbl...

Hi,

Couple of things,

1) While adding the web reference what is the path which
you have given...

2) Did it generate the config file when you gave the web
reference as dynamic and what is the appsettings in the
generated config file.

Regards,
Prashant
-----Original Message-----
That sounded like a great idea so I tried it. However, that didnot work. Iam getting the same error. Here is the error that I am receiving: The linesthat say \\FDFSYS02\\blahblahblah is what is registered as localhost.
Server Error in '/EmpRemoval' Application.
--------------------------------------------------------- -----------------------

The underlying connection was closed: The remote name could not be resolved.Description: An unhandled exception occurred during the execution of thecurrent web request. Please review the stack trace for more informationabout the error and where it originated in the code.

Exception Details: System.Net.WebException: The underlying connection wasclosed: The remote name could not be resolved.

Source Error:

An unhandled exception was generated during the execution of thecurrent web request. Information regarding the origin and location of theexception can be identified using the exception stack trace below.
Stack Trace:

[WebException: The underlying connection was closed: The remote name couldnot be resolved.]
System.Net.HttpWebRequest.CheckFinalStatus() +673
System.Net.HttpWebRequest.EndGetRequestStream (IAsyncResult asyncResult)+75
System.Net.HttpWebRequest.GetRequestStream() +132
System.Web.Services.Protocols.SoapHttpClientProtoc ol.Invok
e(StringmethodName, Object[] parameters) +105
EmpRemoval.EmpSearch.EmployeeSearch.FindEmployee (String sEmpName) in\\Fdfsys02\FMIS-Users\jwames\My Documents\My Projects\BEKGO1Intranet\FoodNet\EmpRemoval\Web References\EmpSearch\Reference.cs:43 EmpRemoval.EmployeeSearch.Page_Load(Object sender, EventArgs e) in\\fdfsys02\fmis-users\jwames\my documents\my projects\bekgo1intranet\foodnet\empremoval\empsearch.aspx.cs:3 3
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731

--------------------------------------------------------- -----------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NETVersion:1.1.4322.573

"Prashant Malviya" <an*******@discussions.microsoft.com> wrote in messagenews:0b****************************@phx.gbl...
Hi,

When the web reference is created, there are couple of
settings,

1) Static
2) Dynamic

Static as the name suggests that the web service is
always hosted on same system like Microsoft.com,
Dyanamic, is more what your situation warrants, it
changes when you change your server like from your
localhost to your production server.

So change the web reference properties to Dynamic and
when you build the solution it automatically creates the
configuration file which will have a entry in the
appsettings to point to the specific web service. Thus,
this setting can be changed at any time...

Hope this helps...

Regards,
Prashant
-----Original Message-----
I have created a web application that uses a custom

control and a web
service on my local system. I have gotten all of the

bugs worked out on my
local system and now it is time to move it to the sever.

I have tried
copying all of the files and folders within my

application folder. I have
even tried building a web setup and installing it on the

server. The problem
that I am having is that my web service is still looking

for the web service
files from the web services folder on my local system.

How do I get it to
point to the production sever where I already have the

service installed?


.

.

Nov 15 '05 #8
I am not really understanding what you are saying here. You want me to
remove the web reference from the web application, then add the web
reference back in as a "simple" reference? How do you do that?

"Guillermo 'guille'" <gu****@en.elguille.info> wrote in message
news:eE**************@TK2MSFTNGP10.phx.gbl...
hi,

Open the web application (without the web service project)
In the web application, remove all the references to the web service then
add a
Web Reference no a "simple" reference that point to the web service you have
in
the website.
Compile, publish and... hope you can say: BINGO! ;-)

--
Nos vemos.
Guillermo
--------------
P.S.
Si te parece últil mi sitio:
http://www.elguille.info/lonuevo/lo_nuevo0312.htm#dic30
--------------
Microsoft VB MVP desde 1997
Te invito a mi sitio dedicado al VB y más...
http://www.elguille.info/
http://www.mundoprogramacion.com/
(puede que el correo usado sea anti-spam)
"Jeremy Ames" <yo******@here.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Ok, I have done that but I get the same error. In fact, when I finished
creating the web service, I compiled it and installed it on the server. I
then re-referenced the web service at it's new home once everything else was complete.

I have noticed that in the properties of the webservice, the URL points to
localhost. This is a field that is uneditable. Is there a way I can behind
the protection and change it.
"Guillermo 'guille'" <gu****@en.elguille.info> wrote in message
news:uu*************@tk2msftngp13.phx.gbl...
hi,

Possibly there is another solution, but.
First of all. Copy the compiled libraries (.dll) in a folder called "bin" in the root of your website. The pages could be in any directory.
Second, open the web application with VS.NET the add a reference to the web service published in the "real" website. Compile the application, the n
publish
the .dll in the \bin directory of your website, then copy the .aspx in any directory.

It is important to know that the \bin directory is a directory in the root
of
the webserver no "inside" a folder.
--
Nos vemos.
Guillermo
--------------
P.S.
Si te parece últil mi sitio:
http://www.elguille.info/lonuevo/lo_nuevo0312.htm#dic30
--------------
Microsoft VB MVP desde 1997
Te invito a mi sitio dedicado al VB y más...
http://www.elguille.info/
http://www.mundoprogramacion.com/
(puede que el correo usado sea anti-spam)
"Jeremy Ames" <yo******@here.com> wrote in message
news:uk**************@TK2MSFTNGP10.phx.gbl...
I have created a web application that uses a custom control and a web
service on my local system. I have gotten all of the bugs worked out on my local system and now it is time to move it to the sever. I have tried
copying all of the files and folders within my application folder. I have even tried building a web setup and installing it on the server. The

problem
that I am having is that my web service is still looking for the web

service
files from the web services folder on my local system. How do I get it to point to the production sever where I already have the service installed?



Nov 15 '05 #9
No, as you know yo can have the web service project and the web application as
a solution, and the reference to the web srevice can be done as a "normal"
reference.

What you must to be sure is to have in the web app is a Web reference to the
web service published in the "real" web site.

sorry for my English... I try to explain it the best way I can...

--
Nos vemos.
Guillermo
--------------
P.S.
Si te parece últil mi sitio:
http://www.elguille.info/lonuevo/lo_nuevo0312.htm#dic30
--------------
Microsoft VB MVP desde 1997
Te invito a mi sitio dedicado al VB y más...
http://www.elguille.info/
http://www.mundoprogramacion.com/
(puede que el correo usado sea anti-spam)
"Jeremy Ames" <yo******@here.com> wrote in message
news:eU**************@TK2MSFTNGP09.phx.gbl...
I am not really understanding what you are saying here. You want me to
remove the web reference from the web application, then add the web
reference back in as a "simple" reference? How do you do that?

Nov 15 '05 #10
Hi,

you should be able to change the url in a couple of ways,
1) either in VS.NET, which basically involves building
your solution again...
2) Best way is to change the URL in the config file which
is generated for you.

Regards,
Prashant
-----Original Message-----
1) http://foodnet/foodnetservices/service1.asmx

2) Yes it did generate the appsettings key and it reads:
<appSettings>
<add key="EmpRemoval.EmpSearch.EmployeeSearch"
p://foodnet/foodnetservices/service1.asmx"/>
</appSettings>

3) I did notice that the URL for the web reference is pointing to localhost,but it is uneditable.

"Prashant Malviya" <an*******@discussions.microsoft.com> wrote in messagenews:01****************************@phx.gbl...

Hi,

Couple of things,

1) While adding the web reference what is the path which
you have given...

2) Did it generate the config file when you gave the web
reference as dynamic and what is the appsettings in the
generated config file.

Regards,
Prashant
-----Original Message-----
That sounded like a great idea so I tried it. However,that didnot work. I
am getting the same error. Here is the error that I am

receiving: The lines
that say \\FDFSYS02\\blahblahblah is what is registered

as localhost.

Server Error in '/EmpRemoval' Application.
-------------------------------------------------------- --------------------
----

The underlying connection was closed: The remote namecould not be resolved.
Description: An unhandled exception occurred during the

execution of the
current web request. Please review the stack trace for

more information
about the error and where it originated in the code.

Exception Details: System.Net.WebException: The

underlying connection was
closed: The remote name could not be resolved.

Source Error:

An unhandled exception was generated during the

execution of the
current web request. Information regarding the origin

and location of the
exception can be identified using the exception stack

trace below.

Stack Trace:

[WebException: The underlying connection was closed: The

remote name could
not be resolved.]
System.Net.HttpWebRequest.CheckFinalStatus() +673
System.Net.HttpWebRequest.EndGetRequestStream

(IAsyncResult asyncResult)
+75
System.Net.HttpWebRequest.GetRequestStream() +132

System.Web.Services.Protocols.SoapHttpClientProto col.Invo

ke(String
methodName, Object[] parameters) +105
EmpRemoval.EmpSearch.EmployeeSearch.FindEmployee(String sEmpName) in
\\Fdfsys02\FMIS-Users\jwames\My Documents\My

Projects\BEKGO1
Intranet\FoodNet\EmpRemoval\Web

References\EmpSearch\Reference.cs:43
EmpRemoval.EmployeeSearch.Page_Load(Object sender,

EventArgs e) in
\\fdfsys02\fmis-users\jwames\my documents\my

projects\bekgo1
intranet\foodnet\empremoval\empsearch.aspx.cs: 33
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731

--------------------------------------------------------

--------------------
----
Version Information: Microsoft .NET Framework

Version:1.1.4322.573; ASP.NET
Version:1.1.4322.573

"Prashant Malviya" <an*******@discussions.microsoft.com>

wrote in message
news:0b****************************@phx.gbl...
Hi,

When the web reference is created, there are couple of
settings,

1) Static
2) Dynamic

Static as the name suggests that the web service is
always hosted on same system like Microsoft.com,
Dyanamic, is more what your situation warrants, it
changes when you change your server like from your
localhost to your production server.

So change the web reference properties to Dynamic and
when you build the solution it automatically creates the
configuration file which will have a entry in the
appsettings to point to the specific web service. Thus,
this setting can be changed at any time...

Hope this helps...

Regards,
Prashant
-----Original Message-----
I have created a web application that uses a custom

control and a web
service on my local system. I have gotten all of the

bugs worked out on my
local system and now it is time to move it to the

sever.I have tried
copying all of the files and folders within my

application folder. I have
even tried building a web setup and installing it on
theserver. The problem
that I am having is that my web service is still
lookingfor the web service
files from the web services folder on my local system.

How do I get it to
point to the production sever where I already have the

service installed?


.

.

.

Nov 15 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Prem | last post by:
Hi All I have a portal application that we have built that contains links to different modules. There is no static binding to these dlls from the application so that we can deploy some modules...
10
by: Gerben van Loon | last post by:
Hi there, hope someone can help me on this: I'm planning to deploy several ASP.NET projects to a production server. Normally I used the "Project / Copy project" option in VS.NET, but to this...
3
by: Rachel | last post by:
Hi, I am using the data access application block successfully in our development environment, however when I deploy to our testing server as Private Assemblies I keep getting the following ...
0
by: Dave | last post by:
Hello The application I'm building an installer for uses dlls which were developed originally in C. Since the application itself is developed in C#, these dlls were wrapped using SWIG....
1
by: dfererer | last post by:
Dear all, I want to install and run ClickOnce Deploying application under a Windows Service,I have make the service starting the application successfully(user API...
6
by: Ryan | last post by:
Is there any way to save a VB 2005 created application as an .MSI install file? The only method I see is to publish as a .EXE. Curious because I want to push out an application with Group Policy....
3
by: pooba53 | last post by:
I have a VB .NET 2003 application that communicates with an Access db. I am deploying the application using the Wizard that creates an install package and it IS properly grabbing the Access db and...
0
by: Amit | last post by:
Hi,I am new to .net 2.0 and have just built one web application and deployed the application on web server. The problem which i am facing is that if i make any changes in the .cs files or aspx...
0
by: sanjaypasumarty | last post by:
Hello, I am facing issues when i am deploying application on WebSphere Process server. The appplication is not deploying successfully and showing some DB2 errors in the logs. We are unable to find...
8
by: =?Utf-8?B?V2hpc2tleVJvbWVv?= | last post by:
I am trying to copy files and folders onto a production machine (Windows 2003 web edition -- we had to install the .NetFramework 2.0 on it). I wasn't even sure which files to copy for a ASP.NET...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.