473,397 Members | 1,969 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

problems with WebReferences in VS2003

When I try to create a new C# Web Reference in Visual Studio 2003, I get an
error message "The proxy settings on this computer are not configured
correctly for web discovery. ..." This web reference is to a service on my
machine - http://localhost/... - so I don't know why any proxy configuration
should be necessary.

Doing the same thing in Visual Studio 2002 works fine (i.e., no error about
"proxy settings"). However, when I update the project to 2003, and then try
to update the web reference I get "Child nodes are not allowed.
(c:\...\v1.1.4322\Config\machine.config line 3253). I've looked at my
machine.config, the lines in question are just
<webServices>
<protocols>
<add name="HttpSoap1.2">
</add>
<add name="HttpSoap">
</add>

I'm not real sure where things went wrong nor how to fix it. Neither Google
nor MSDN searches turn up much of anything.

Thanks,
Dan
Nov 15 '05 #1
5 1412

Hi Dan,

I think your problem related to "Troubleshooting Add Web Reference Issues"
situation2, VSDisco (dynamic discovery) is turned off default, you should
turn it on through .config file. For more information, please refer to the
article(situation2 ) below:
http://support.microsoft.com/?kbid=307303

Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Dan Smith" <J_************@HoTMaiL.com>
| Subject: problems with WebReferences in VS2003
| Date: Thu, 23 Oct 2003 15:11:33 -0400
| Lines: 25
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#i**************@TK2MSFTNGP12.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:193618
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| When I try to create a new C# Web Reference in Visual Studio 2003, I get
an
| error message "The proxy settings on this computer are not configured
| correctly for web discovery. ..." This web reference is to a service on
my
| machine - http://localhost/... - so I don't know why any proxy
configuration
| should be necessary.
|
| Doing the same thing in Visual Studio 2002 works fine (i.e., no error
about
| "proxy settings"). However, when I update the project to 2003, and then
try
| to update the web reference I get "Child nodes are not allowed.
| (c:\...\v1.1.4322\Config\machine.config line 3253). I've looked at my
| machine.config, the lines in question are just
| <webServices>
| <protocols>
| <add name="HttpSoap1.2">
| </add>
| <add name="HttpSoap">
| </add>
|
| I'm not real sure where things went wrong nor how to fix it. Neither
Google
| nor MSDN searches turn up much of anything.
|
| Thanks,
| Dan
|
|
|

Nov 15 '05 #2
I've uncommented the "vsdisco" line in machine.config for 1.0 and added it
for 1.1. Things are still exactly the same: web references works fine in
VS2002, but can't update in 2003 after converting project; can't create a
new web reference in 2003.

Dan

""Jeffrey Tan[MSFT]"" <v-*****@online.microsoft.com> wrote in message
news:4r**************@cpmsftngxa06.phx.gbl...

Hi Dan,

I think your problem related to "Troubleshooting Add Web Reference Issues"
situation2, VSDisco (dynamic discovery) is turned off default, you should
turn it on through .config file. For more information, please refer to the
article(situation2 ) below:
http://support.microsoft.com/?kbid=307303

Hope this helps,

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Dan Smith" <J_************@HoTMaiL.com>
| Subject: problems with WebReferences in VS2003
| Date: Thu, 23 Oct 2003 15:11:33 -0400
| Lines: 25
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#i**************@TK2MSFTNGP12.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:193618 | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| When I try to create a new C# Web Reference in Visual Studio 2003, I get
an
| error message "The proxy settings on this computer are not configured
| correctly for web discovery. ..." This web reference is to a service on
my
| machine - http://localhost/... - so I don't know why any proxy
configuration
| should be necessary.
|
| Doing the same thing in Visual Studio 2002 works fine (i.e., no error
about
| "proxy settings"). However, when I update the project to 2003, and then
try
| to update the web reference I get "Child nodes are not allowed.
| (c:\...\v1.1.4322\Config\machine.config line 3253). I've looked at my
| machine.config, the lines in question are just
| <webServices>
| <protocols>
| <add name="HttpSoap1.2">
| </add>
| <add name="HttpSoap">
| </add>
|
| I'm not real sure where things went wrong nor how to fix it. Neither
Google
| nor MSDN searches turn up much of anything.
|
| Thanks,
| Dan
|
|
|

Nov 15 '05 #3

Hi Dan,

I think you can first try to access your web service through IE to ensure
that your web service is available.
If it is available through IE, you can try to use "http://url.asmx?wsdl" to
save the wsdl file and directly refer this wsdl file.

I think you also can try to set up a new project to do the same things as
your problem project.
Does this error still generate in new project?

For more, you can try another way of enable discovery Web service in the
article below:
http://msdn.microsoft.com/library/de...us/cpguide/htm
l/cpconenablingdiscoveryforwebservice.asp

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Dan Smith" <J_************@HoTMaiL.com>
| References: <#i**************@TK2MSFTNGP12.phx.gbl>
<4r**************@cpmsftngxa06.phx.gbl>
| Subject: Re: problems with WebReferences in VS2003
| Date: Fri, 24 Oct 2003 09:27:21 -0400
| Lines: 78
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#9**************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:193804
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| I've uncommented the "vsdisco" line in machine.config for 1.0 and added it
| for 1.1. Things are still exactly the same: web references works fine in
| VS2002, but can't update in 2003 after converting project; can't create a
| new web reference in 2003.
|
| Dan
|
| ""Jeffrey Tan[MSFT]"" <v-*****@online.microsoft.com> wrote in message
| news:4r**************@cpmsftngxa06.phx.gbl...
| >
| > Hi Dan,
| >
| > I think your problem related to "Troubleshooting Add Web Reference
Issues"
| > situation2, VSDisco (dynamic discovery) is turned off default, you
should
| > turn it on through .config file. For more information, please refer to
the
| > article(situation2 ) below:
| > http://support.microsoft.com/?kbid=307303
| >
| > Hope this helps,
| >
| > Best regards,
| > Jeffrey Tan
| > Microsoft Online Partner Support
| > Get Secure! - www.microsoft.com/security
| > This posting is provided "as is" with no warranties and confers no
rights.
| >
| > --------------------
| > | From: "Dan Smith" <J_************@HoTMaiL.com>
| > | Subject: problems with WebReferences in VS2003
| > | Date: Thu, 23 Oct 2003 15:11:33 -0400
| > | Lines: 25
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | Message-ID: <#i**************@TK2MSFTNGP12.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.languages.csharp
| > | NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| > | Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
| > | Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.languages.csharp:193618
| > | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| > |
| > | When I try to create a new C# Web Reference in Visual Studio 2003, I
get
| > an
| > | error message "The proxy settings on this computer are not configured
| > | correctly for web discovery. ..." This web reference is to a service
on
| > my
| > | machine - http://localhost/... - so I don't know why any proxy
| > configuration
| > | should be necessary.
| > |
| > | Doing the same thing in Visual Studio 2002 works fine (i.e., no error
| > about
| > | "proxy settings"). However, when I update the project to 2003, and
then
| > try
| > | to update the web reference I get "Child nodes are not allowed.
| > | (c:\...\v1.1.4322\Config\machine.config line 3253). I've looked at my
| > | machine.config, the lines in question are just
| > | <webServices>
| > | <protocols>
| > | <add name="HttpSoap1.2">
| > | </add>
| > | <add name="HttpSoap">
| > | </add>
| > |
| > | I'm not real sure where things went wrong nor how to fix it. Neither
| > Google
| > | nor MSDN searches turn up much of anything.
| > |
| > | Thanks,
| > | Dan
| > |
| > |
| > |
| >
|
|
|

Nov 15 '05 #4
Getting the WSDL through IE worked fine, and this already was a simple test
case.

Anyway, I removed and then (re)installed .NET 1.1 and VS2003; things are
working fine now.

Dan

""Jeffrey Tan[MSFT]"" <v-*****@online.microsoft.com> wrote in message
news:03**************@cpmsftngxa06.phx.gbl...

Hi Dan,

I think you can first try to access your web service through IE to ensure
that your web service is available.
If it is available through IE, you can try to use "http://url.asmx?wsdl" to save the wsdl file and directly refer this wsdl file.

I think you also can try to set up a new project to do the same things as
your problem project.
Does this error still generate in new project?

For more, you can try another way of enable discovery Web service in the
article below:
http://msdn.microsoft.com/library/de...us/cpguide/htm l/cpconenablingdiscoveryforwebservice.asp

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Dan Smith" <J_************@HoTMaiL.com>
| References: <#i**************@TK2MSFTNGP12.phx.gbl>
<4r**************@cpmsftngxa06.phx.gbl>
| Subject: Re: problems with WebReferences in VS2003
| Date: Fri, 24 Oct 2003 09:27:21 -0400
| Lines: 78
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <#9**************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:193804 | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| I've uncommented the "vsdisco" line in machine.config for 1.0 and added it | for 1.1. Things are still exactly the same: web references works fine in | VS2002, but can't update in 2003 after converting project; can't create a | new web reference in 2003.
|
| Dan
|
| ""Jeffrey Tan[MSFT]"" <v-*****@online.microsoft.com> wrote in message
| news:4r**************@cpmsftngxa06.phx.gbl...
| >
| > Hi Dan,
| >
| > I think your problem related to "Troubleshooting Add Web Reference
Issues"
| > situation2, VSDisco (dynamic discovery) is turned off default, you
should
| > turn it on through .config file. For more information, please refer to
the
| > article(situation2 ) below:
| > http://support.microsoft.com/?kbid=307303
| >
| > Hope this helps,
| >
| > Best regards,
| > Jeffrey Tan
| > Microsoft Online Partner Support
| > Get Secure! - www.microsoft.com/security
| > This posting is provided "as is" with no warranties and confers no
rights.
| >
| > --------------------
| > | From: "Dan Smith" <J_************@HoTMaiL.com>
| > | Subject: problems with WebReferences in VS2003
| > | Date: Thu, 23 Oct 2003 15:11:33 -0400
| > | Lines: 25
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | Message-ID: <#i**************@TK2MSFTNGP12.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.languages.csharp
| > | NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| > | Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
| > | Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.languages.csharp:193618
| > | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| > |
| > | When I try to create a new C# Web Reference in Visual Studio 2003, I
get
| > an
| > | error message "The proxy settings on this computer are not configured | > | correctly for web discovery. ..." This web reference is to a service on
| > my
| > | machine - http://localhost/... - so I don't know why any proxy
| > configuration
| > | should be necessary.
| > |
| > | Doing the same thing in Visual Studio 2002 works fine (i.e., no error | > about
| > | "proxy settings"). However, when I update the project to 2003, and
then
| > try
| > | to update the web reference I get "Child nodes are not allowed.
| > | (c:\...\v1.1.4322\Config\machine.config line 3253). I've looked at my | > | machine.config, the lines in question are just
| > | <webServices>
| > | <protocols>
| > | <add name="HttpSoap1.2">
| > | </add>
| > | <add name="HttpSoap">
| > | </add>
| > |
| > | I'm not real sure where things went wrong nor how to fix it. Neither | > Google
| > | nor MSDN searches turn up much of anything.
| > |
| > | Thanks,
| > | Dan
| > |
| > |
| > |
| >
|
|
|

Nov 15 '05 #5

Hi Dan,

I am glad it finally works fine.
I think it must be something wrong with part component of your previous
.Net Framework.
If you still have any question, please feel free to let me know, I am glad
to work with you.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| From: "Dan Smith" <J_************@HoTMaiL.com>
| References: <#i**************@TK2MSFTNGP12.phx.gbl>
<4r**************@cpmsftngxa06.phx.gbl>
<#9**************@TK2MSFTNGP09.phx.gbl>
<03**************@cpmsftngxa06.phx.gbl>
| Subject: Re: problems with WebReferences in VS2003
| Date: Sat, 25 Oct 2003 15:24:35 -0400
| Lines: 151
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| Message-ID: <Oz**************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.languages.csharp
| NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:194049
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| Getting the WSDL through IE worked fine, and this already was a simple
test
| case.
|
| Anyway, I removed and then (re)installed .NET 1.1 and VS2003; things are
| working fine now.
|
| Dan
|
| ""Jeffrey Tan[MSFT]"" <v-*****@online.microsoft.com> wrote in message
| news:03**************@cpmsftngxa06.phx.gbl...
| >
| > Hi Dan,
| >
| > I think you can first try to access your web service through IE to
ensure
| > that your web service is available.
| > If it is available through IE, you can try to use "http://url.asmx?wsdl"
| to
| > save the wsdl file and directly refer this wsdl file.
| >
| > I think you also can try to set up a new project to do the same things
as
| > your problem project.
| > Does this error still generate in new project?
| >
| > For more, you can try another way of enable discovery Web service in the
| > article below:
| >
|
http://msdn.microsoft.com/library/de...us/cpguide/htm
| > l/cpconenablingdiscoveryforwebservice.asp
| >
| > Best regards,
| > Jeffrey Tan
| > Microsoft Online Partner Support
| > Get Secure! - www.microsoft.com/security
| > This posting is provided "as is" with no warranties and confers no
rights.
| >
| > --------------------
| > | From: "Dan Smith" <J_************@HoTMaiL.com>
| > | References: <#i**************@TK2MSFTNGP12.phx.gbl>
| > <4r**************@cpmsftngxa06.phx.gbl>
| > | Subject: Re: problems with WebReferences in VS2003
| > | Date: Fri, 24 Oct 2003 09:27:21 -0400
| > | Lines: 78
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | Message-ID: <#9**************@TK2MSFTNGP09.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.languages.csharp
| > | NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| > | Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP09.phx.gbl
| > | Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.languages.csharp:193804
| > | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| > |
| > | I've uncommented the "vsdisco" line in machine.config for 1.0 and
added
| it
| > | for 1.1. Things are still exactly the same: web references works fine
| in
| > | VS2002, but can't update in 2003 after converting project; can't
create
| a
| > | new web reference in 2003.
| > |
| > | Dan
| > |
| > | ""Jeffrey Tan[MSFT]"" <v-*****@online.microsoft.com> wrote in message
| > | news:4r**************@cpmsftngxa06.phx.gbl...
| > | >
| > | > Hi Dan,
| > | >
| > | > I think your problem related to "Troubleshooting Add Web Reference
| > Issues"
| > | > situation2, VSDisco (dynamic discovery) is turned off default, you
| > should
| > | > turn it on through .config file. For more information, please refer
to
| > the
| > | > article(situation2 ) below:
| > | > http://support.microsoft.com/?kbid=307303
| > | >
| > | > Hope this helps,
| > | >
| > | > Best regards,
| > | > Jeffrey Tan
| > | > Microsoft Online Partner Support
| > | > Get Secure! - www.microsoft.com/security
| > | > This posting is provided "as is" with no warranties and confers no
| > rights.
| > | >
| > | > --------------------
| > | > | From: "Dan Smith" <J_************@HoTMaiL.com>
| > | > | Subject: problems with WebReferences in VS2003
| > | > | Date: Thu, 23 Oct 2003 15:11:33 -0400
| > | > | Lines: 25
| > | > | X-Priority: 3
| > | > | X-MSMail-Priority: Normal
| > | > | X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| > | > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
| > | > | Message-ID: <#i**************@TK2MSFTNGP12.phx.gbl>
| > | > | Newsgroups: microsoft.public.dotnet.languages.csharp
| > | > | NNTP-Posting-Host: adeskout.autodesk.com 198.102.112.18
| > | > | Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP12.phx.gbl
| > | > | Xref: cpmsftngxa06.phx.gbl
| > | microsoft.public.dotnet.languages.csharp:193618
| > | > | X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| > | > |
| > | > | When I try to create a new C# Web Reference in Visual Studio
2003, I
| > get
| > | > an
| > | > | error message "The proxy settings on this computer are not
| configured
| > | > | correctly for web discovery. ..." This web reference is to a
| service
| > on
| > | > my
| > | > | machine - http://localhost/... - so I don't know why any proxy
| > | > configuration
| > | > | should be necessary.
| > | > |
| > | > | Doing the same thing in Visual Studio 2002 works fine (i.e., no
| error
| > | > about
| > | > | "proxy settings"). However, when I update the project to 2003,
and
| > then
| > | > try
| > | > | to update the web reference I get "Child nodes are not allowed.
| > | > | (c:\...\v1.1.4322\Config\machine.config line 3253). I've looked
at
| my
| > | > | machine.config, the lines in question are just
| > | > | <webServices>
| > | > | <protocols>
| > | > | <add name="HttpSoap1.2">
| > | > | </add>
| > | > | <add name="HttpSoap">
| > | > | </add>
| > | > |
| > | > | I'm not real sure where things went wrong nor how to fix it.
| Neither
| > | > Google
| > | > | nor MSDN searches turn up much of anything.
| > | > |
| > | > | Thanks,
| > | > | Dan
| > | > |
| > | > |
| > | > |
| > | >
| > |
| > |
| > |
| >
|
|
|

Nov 15 '05 #6

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

Similar topics

0
by: Richard | last post by:
Hi All, I'm having some difficulties with vs2003 and w2k3. The w2k3 Web Edition install is totally new in a VMWare box. I have added ASP.NET v1.1.4322 to the config and allowed it in Web Service...
7
by: tonelab | last post by:
I currently have VS2003 .net 1.1 installed with a number of 1.1 projects built in it. All of these projects create the /bin dll for deployment and have been running on remote servers that have the...
2
by: tshad | last post by:
I have been running into all kinds of problems with VS2003 and handling Windows services. One of the main problems is trying to uninstall services. It doesn't work half the time. Mainly it...
3
by: Darrin | last post by:
Hello, I see that VS2005 and the new framework 2.0 is out to the public now. Wondering about some things. When you install the new framework 2.0 can a person still use visual studio 2003 or...
6
by: Alex | last post by:
Hello people, We have a large application (about 5000 source files) consisting of multiple executables, DLLs and COM components written in C++. We develop and build it in Visual Studio 2003. ...
3
by: Andreas | last post by:
Hi! I'm currently developing a DLL that makes use of C++ and .net (mixed) using Visual Studio 2003. Now, as I wanted to move to the new Visual Studio 2005, I converted this project into the...
4
by: =?Utf-8?B?TmFkYXYgUG9wcGxld2VsbA==?= | last post by:
Hi everybody, I've got two questions about using the EnableSession property with an ASP.NET WebService: First Question: I'm trying to create a web service with EnableSession=true. I can't...
1
by: MimiMi | last post by:
I have a deployment project that was originally created in VS2003. Since I don't have VS2003, I now open it in VS2005, but then of course VS2005 has to convert it. Everything seems to work fine. I...
4
by: =?Utf-8?B?UGF1bA==?= | last post by:
I have a vb.net web project that was created in vs2003 and uses crystal reports. I no longer have vs2003 but now have vs2005. I was able to use the wizard and the project builds but when I view...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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...

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.