473,394 Members | 1,694 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,394 software developers and data experts.

Can a .NET Web Service be accessed from a VB6 Client?

I am expecting the answer to be, "of course not" or " are you kidding?", but
maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA
Aug 10 '06 #1
13 2132
adm
It's possible.

Download this:
http://www.microsoft.com/downloads/d...displaylang=en

and see this, which shows how to do it with Visual Basic for
Applications:
http://metrix.fcny.org:9999/confluence/x/Jw0

John Kotuby wrote:
I am expecting the answer to be, "of course not" or " are you kidding?", but
maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA
Aug 10 '06 #2
adm
Here's another quick tutorial that deals with VB6 more directly:
http://www.sitepoint.com/article/mic...developers-1/6

John Kotuby wrote:
I am expecting the answer to be, "of course not" or " are you kidding?", but
maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA
Aug 10 '06 #3
John,

Just to clarify adm answer for others who are looking to your question: I
wanted to write, "have a look at SOAP on MSDN", but adm is providing you the
link to that.

Cor

"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
>I am expecting the answer to be, "of course not" or " are you kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA

Aug 11 '06 #4

Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems with it
to deploy it to my end users so in the end
i used the post and get methods of the webservice instead of soap

wich in the end turned out to be a much cleaner solution

also remebre that you can only use so called "simple" data types

regards

Michel Posseth [MCP]
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
>I am expecting the answer to be, "of course not" or " are you kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA

Aug 11 '06 #5
Thanks Michael,
I appreciate the warning about the soap toolkit approach. I will look into
the HTTP Get and Post methods for eliciting a Web Service response.

"Michel Posseth [MCP]" <MS**@posseth.comwrote in message
news:ui**************@TK2MSFTNGP03.phx.gbl...
>
Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems with it
to deploy it to my end users so in the end
i used the post and get methods of the webservice instead of soap

wich in the end turned out to be a much cleaner solution

also remebre that you can only use so called "simple" data types

regards

Michel Posseth [MCP]
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
>>I am expecting the answer to be, "of course not" or " are you kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA


Aug 11 '06 #6
Thanks for the lead..
Sometimes knowing where to look is half the battle.

"adm" <ad*****@yahoo.comwrote in message
news:11**********************@i42g2000cwa.googlegr oups.com...
Here's another quick tutorial that deals with VB6 more directly:
http://www.sitepoint.com/article/mic...developers-1/6

John Kotuby wrote:
>I am expecting the answer to be, "of course not" or " are you kidding?",
but
maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA

Aug 11 '06 #7
adm
Michel Posseth [MCP] wrote:
Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems with it
to deploy it to my end users so in the end
i could be entirely wrong about this, but I think you MIGHT be able to
build a client app without deploying the SOAP toolkit to your end
users. I used the Office 2003 SOAP Toolkit to create a proxy class in
an Access ADP, then ran that ADP on a computer with a fresh install of
Windows XP SP2 and MSXML 6 (i think), and it was able to access the Web
Service just fine, without the toolkit being installed (as far as I
know). Not sure if this will similarly work in VB6, but it might, and
it's definitely worth testing.
also remember that you can only use so called "simple" data types
True, but you can serialize a complex data type to a "simple" data type
of an XML string, and then return that string, and do various things
with it on the client side. Using this method, I've reconstructed ADO
recordsets on the client side from XML strings, which although a bit
slow, is something you can try when it's your only option for getting
what would otherwise be complex data types back to a "legacy" client.

-adm
>
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
I am expecting the answer to be, "of course not" or " are you kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an ingenious
example of how the impossible just takes a little more work.

TIA
Aug 11 '06 #8
Thanks adm,

I used this code from a web example that you pointed me to:
------------------------------------------------------------
Private Sub Form_Load()

Dim objWebSvcClient As New MSSOAPLib30.SoapClient30
Dim dTemp As Double

objWebSvcClient.MSSoapInit _
"http://localhost/TempConvert1/TempConvert1.asmx?wsdl"

dTemp = objWebSvcClient.ConvertTemperature(212)
MsgBox dTemp
Unload Me

End Sub
-----------------------------------------------------------

It refers to a small Web Service that I wrote and it runs fine from my Dev
machine (as expected).
However, trying to run it on an XP machine after installing MSXML 6 and got
the runtime 429 message "Can't create object". I'm not sure how to create
the proxy class in VB6 (unless that is what reference to the WSDL actually
did).

I created an MSI with the required merge modules and editied it with Orca.
However, when I tried to install it on another XP machine, I was propmpted
to shut down MS Outlook 2003 so that files could be updated. At that point I
bailed from the install fearing a corruption of Outlook.

When editing with Orca I noticed that all 3 custom actions for the
winhttp.dll were included in the InstallExecuteSequence table. I made sure
that the sequence numbers were between 1500 and 1525.

"adm" <ad*****@yahoo.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
Michel Posseth [MCP] wrote:
>Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems with
it
to deploy it to my end users so in the end

i could be entirely wrong about this, but I think you MIGHT be able to
build a client app without deploying the SOAP toolkit to your end
users. I used the Office 2003 SOAP Toolkit to create a proxy class in
an Access ADP, then ran that ADP on a computer with a fresh install of
Windows XP SP2 and MSXML 6 (i think), and it was able to access the Web
Service just fine, without the toolkit being installed (as far as I
know). Not sure if this will similarly work in VB6, but it might, and
it's definitely worth testing.
>also remember that you can only use so called "simple" data types

True, but you can serialize a complex data type to a "simple" data type
of an XML string, and then return that string, and do various things
with it on the client side. Using this method, I've reconstructed ADO
recordsets on the client side from XML strings, which although a bit
slow, is something you can try when it's your only option for getting
what would otherwise be complex data types back to a "legacy" client.

-adm
>>
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
>I am expecting the answer to be, "of course not" or " are you kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an
ingenious
example of how the impossible just takes a little more work.

TIA

Aug 11 '06 #9
adm

John Kotuby wrote:
It refers to a small Web Service that I wrote and it runs fine from my Dev
machine (as expected).
However, trying to run it on an XP machine after installing MSXML 6 and got
the runtime 429 message "Can't create object". I'm not sure how to create
the proxy class in VB6 (unless that is what reference to the WSDL actually
did).
The proxy class gets created when you add a web reference to the
project (in Office 2003). If you can copy that class into your VB6
project and compile it, I wonder if it would work without the SOAP
toolkit installed on the client machine. Not trying to push the
issue...just wondering if you can get it to work. Good luck!
>
I created an MSI with the required merge modules and editied it with Orca.
However, when I tried to install it on another XP machine, I was propmpted
to shut down MS Outlook 2003 so that files could be updated. At that point I
bailed from the install fearing a corruption of Outlook.

When editing with Orca I noticed that all 3 custom actions for the
winhttp.dll were included in the InstallExecuteSequence table. I made sure
that the sequence numbers were between 1500 and 1525.

"adm" <ad*****@yahoo.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
Michel Posseth [MCP] wrote:
Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems with
it
to deploy it to my end users so in the end
i could be entirely wrong about this, but I think you MIGHT be able to
build a client app without deploying the SOAP toolkit to your end
users. I used the Office 2003 SOAP Toolkit to create a proxy class in
an Access ADP, then ran that ADP on a computer with a fresh install of
Windows XP SP2 and MSXML 6 (i think), and it was able to access the Web
Service just fine, without the toolkit being installed (as far as I
know). Not sure if this will similarly work in VB6, but it might, and
it's definitely worth testing.
also remember that you can only use so called "simple" data types
True, but you can serialize a complex data type to a "simple" data type
of an XML string, and then return that string, and do various things
with it on the client side. Using this method, I've reconstructed ADO
recordsets on the client side from XML strings, which although a bit
slow, is something you can try when it's your only option for getting
what would otherwise be complex data types back to a "legacy" client.

-adm
>
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
I am expecting the answer to be, "of course not" or " are you kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an
ingenious
example of how the impossible just takes a little more work.

TIA
Aug 11 '06 #10
adm
..just wondering if you can get it to work.

Here's a funny thread from a few years ago that discusses the matter:
http://tinyurl.com/gqplb

He was trying to create the proxy class in VB6, but it looks like he
never got anywhere.

It's strange to me that the Office Web Services Toolkit could create a
proxy class but the SOAP Toolkit won't. Can anyone confirm this is
true?

adm

adm wrote:
John Kotuby wrote:
It refers to a small Web Service that I wrote and it runs fine from my Dev
machine (as expected).
However, trying to run it on an XP machine after installing MSXML 6 and got
the runtime 429 message "Can't create object". I'm not sure how to create
the proxy class in VB6 (unless that is what reference to the WSDL actually
did).

The proxy class gets created when you add a web reference to the
project (in Office 2003). If you can copy that class into your VB6
project and compile it, I wonder if it would work without the SOAP
toolkit installed on the client machine. Not trying to push the
issue...just wondering if you can get it to work. Good luck!

I created an MSI with the required merge modules and editied it with Orca.
However, when I tried to install it on another XP machine, I was propmpted
to shut down MS Outlook 2003 so that files could be updated. At that point I
bailed from the install fearing a corruption of Outlook.

When editing with Orca I noticed that all 3 custom actions for the
winhttp.dll were included in the InstallExecuteSequence table. I made sure
that the sequence numbers were between 1500 and 1525.

"adm" <ad*****@yahoo.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
Michel Posseth [MCP] wrote:
>Hi John
>>
>yes you can with the "ugly"soap toolkit ,,, i had lots of problems with
>it
>to deploy it to my end users so in the end
>
i could be entirely wrong about this, but I think you MIGHT be able to
build a client app without deploying the SOAP toolkit to your end
users. I used the Office 2003 SOAP Toolkit to create a proxy class in
an Access ADP, then ran that ADP on a computer with a fresh install of
Windows XP SP2 and MSXML 6 (i think), and it was able to access the Web
Service just fine, without the toolkit being installed (as far as I
know). Not sure if this will similarly work in VB6, but it might, and
it's definitely worth testing.
>
>also remember that you can only use so called "simple" data types
>
True, but you can serialize a complex data type to a "simple" data type
of an XML string, and then return that string, and do various things
with it on the client side. Using this method, I've reconstructed ADO
recordsets on the client side from XML strings, which although a bit
slow, is something you can try when it's your only option for getting
what would otherwise be complex data types back to a "legacy" client.
>
-adm
>
>>
>"John Kotuby" <jo***@powerlist.comschreef in bericht
>news:eU*************@TK2MSFTNGP04.phx.gbl...
>I am expecting the answer to be, "of course not" or " are you kidding?",
>but maybe (hopefully) I am wrong and somebody can point me to an
>ingenious
>example of how the impossible just takes a little more work.
>
TIA
>
>
Aug 11 '06 #11

AFAIK you can,,,, however then your users need to have office installed

This was exactly my problem ,,,, to get it to work i needed dependencies
deployed with my app that were not a reall option
the soap toolkit turned out to be a buggy dependency to deploy ( with
testing on multiple systems we run in a lot of unpredictable errors ,
however when it worked it worked great , having a few thousand users of our
product we just couldn`t take the risk )

In the end i just used the VB6 internet transfer control ,,,,,( Msinet.OCX )
and parsed the return data myself wich worked fine

regards '

Michel Posseth [MCP]
"adm" <ad*****@yahoo.comschreef in bericht
news:11**********************@m79g2000cwm.googlegr oups.com...
>
John Kotuby wrote:
>It refers to a small Web Service that I wrote and it runs fine from my
Dev
machine (as expected).
However, trying to run it on an XP machine after installing MSXML 6 and
got
the runtime 429 message "Can't create object". I'm not sure how to create
the proxy class in VB6 (unless that is what reference to the WSDL
actually
did).

The proxy class gets created when you add a web reference to the
project (in Office 2003). If you can copy that class into your VB6
project and compile it, I wonder if it would work without the SOAP
toolkit installed on the client machine. Not trying to push the
issue...just wondering if you can get it to work. Good luck!
>>
I created an MSI with the required merge modules and editied it with
Orca.
However, when I tried to install it on another XP machine, I was
propmpted
to shut down MS Outlook 2003 so that files could be updated. At that
point I
bailed from the install fearing a corruption of Outlook.

When editing with Orca I noticed that all 3 custom actions for the
winhttp.dll were included in the InstallExecuteSequence table. I made
sure
that the sequence numbers were between 1500 and 1525.

"adm" <ad*****@yahoo.comwrote in message
news:11**********************@m79g2000cwm.googleg roups.com...
Michel Posseth [MCP] wrote:
Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems
with
it
to deploy it to my end users so in the end

i could be entirely wrong about this, but I think you MIGHT be able to
build a client app without deploying the SOAP toolkit to your end
users. I used the Office 2003 SOAP Toolkit to create a proxy class in
an Access ADP, then ran that ADP on a computer with a fresh install of
Windows XP SP2 and MSXML 6 (i think), and it was able to access the Web
Service just fine, without the toolkit being installed (as far as I
know). Not sure if this will similarly work in VB6, but it might, and
it's definitely worth testing.

also remember that you can only use so called "simple" data types

True, but you can serialize a complex data type to a "simple" data type
of an XML string, and then return that string, and do various things
with it on the client side. Using this method, I've reconstructed ADO
recordsets on the client side from XML strings, which although a bit
slow, is something you can try when it's your only option for getting
what would otherwise be complex data types back to a "legacy" client.

-adm
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
I am expecting the answer to be, "of course not" or " are you
kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an
ingenious
example of how the impossible just takes a little more work.

TIA


Aug 12 '06 #12
Michel,

With what SOAP toolkit did you do that, I once was busy (I thought) with 1.0
and after that never used it again.

Therefore is your expirience with 3.0 including updates as was showed by
adm.

http://www.microsoft.com/downloads/d...displaylang=en

Cor

"Michel Posseth [MCP]" <MS**@posseth.comschreef in bericht
news:e$**************@TK2MSFTNGP05.phx.gbl...
>
AFAIK you can,,,, however then your users need to have office installed

This was exactly my problem ,,,, to get it to work i needed dependencies
deployed with my app that were not a reall option
the soap toolkit turned out to be a buggy dependency to deploy ( with
testing on multiple systems we run in a lot of unpredictable errors ,
however when it worked it worked great , having a few thousand users of
our product we just couldn`t take the risk )

In the end i just used the VB6 internet transfer control ,,,,,(
Msinet.OCX ) and parsed the return data myself wich worked fine

regards '

Michel Posseth [MCP]
"adm" <ad*****@yahoo.comschreef in bericht
news:11**********************@m79g2000cwm.googlegr oups.com...
>>
John Kotuby wrote:
>>It refers to a small Web Service that I wrote and it runs fine from my
Dev
machine (as expected).
However, trying to run it on an XP machine after installing MSXML 6 and
got
the runtime 429 message "Can't create object". I'm not sure how to
create
the proxy class in VB6 (unless that is what reference to the WSDL
actually
did).

The proxy class gets created when you add a web reference to the
project (in Office 2003). If you can copy that class into your VB6
project and compile it, I wonder if it would work without the SOAP
toolkit installed on the client machine. Not trying to push the
issue...just wondering if you can get it to work. Good luck!
>>>
I created an MSI with the required merge modules and editied it with
Orca.
However, when I tried to install it on another XP machine, I was
propmpted
to shut down MS Outlook 2003 so that files could be updated. At that
point I
bailed from the install fearing a corruption of Outlook.

When editing with Orca I noticed that all 3 custom actions for the
winhttp.dll were included in the InstallExecuteSequence table. I made
sure
that the sequence numbers were between 1500 and 1525.

"adm" <ad*****@yahoo.comwrote in message
news:11**********************@m79g2000cwm.google groups.com...
Michel Posseth [MCP] wrote:
Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems
with
it
to deploy it to my end users so in the end

i could be entirely wrong about this, but I think you MIGHT be able to
build a client app without deploying the SOAP toolkit to your end
users. I used the Office 2003 SOAP Toolkit to create a proxy class in
an Access ADP, then ran that ADP on a computer with a fresh install of
Windows XP SP2 and MSXML 6 (i think), and it was able to access the
Web
Service just fine, without the toolkit being installed (as far as I
know). Not sure if this will similarly work in VB6, but it might, and
it's definitely worth testing.

also remember that you can only use so called "simple" data types

True, but you can serialize a complex data type to a "simple" data
type
of an XML string, and then return that string, and do various things
with it on the client side. Using this method, I've reconstructed ADO
recordsets on the client side from XML strings, which although a bit
slow, is something you can try when it's your only option for getting
what would otherwise be complex data types back to a "legacy" client.

-adm
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
I am expecting the answer to be, "of course not" or " are you
kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an
ingenious
example of how the impossible just takes a little more work.

TIA



Aug 12 '06 #13
Hi Cor ,
The project i talked about was last revisioned somewhere in the midle of
2004 for my previous employer
http://abs-bv.netserver2.net/page.asp?lIntMenuId=192&lStrEntityId=<EN>brakedisc docu
i see that the current deploy package of the soap redistributable is from
8/13/2003 so it must have been the same version as i always try to use the
lastest technology availlable
regards

Michel Posseth [MCP]

"Cor Ligthert [MVP]" <no************@planet.nlschreef in bericht
news:uf**************@TK2MSFTNGP05.phx.gbl...
Michel,

With what SOAP toolkit did you do that, I once was busy (I thought) with
1.0 and after that never used it again.

Therefore is your expirience with 3.0 including updates as was showed by
adm.

http://www.microsoft.com/downloads/d...displaylang=en

Cor

"Michel Posseth [MCP]" <MS**@posseth.comschreef in bericht
news:e$**************@TK2MSFTNGP05.phx.gbl...
>>
AFAIK you can,,,, however then your users need to have office installed

This was exactly my problem ,,,, to get it to work i needed dependencies
deployed with my app that were not a reall option
the soap toolkit turned out to be a buggy dependency to deploy ( with
testing on multiple systems we run in a lot of unpredictable errors ,
however when it worked it worked great , having a few thousand users of
our product we just couldn`t take the risk )

In the end i just used the VB6 internet transfer control ,,,,,(
Msinet.OCX ) and parsed the return data myself wich worked fine

regards '

Michel Posseth [MCP]
"adm" <ad*****@yahoo.comschreef in bericht
news:11**********************@m79g2000cwm.googleg roups.com...
>>>
John Kotuby wrote:

It refers to a small Web Service that I wrote and it runs fine from my
Dev
machine (as expected).
However, trying to run it on an XP machine after installing MSXML 6 and
got
the runtime 429 message "Can't create object". I'm not sure how to
create
the proxy class in VB6 (unless that is what reference to the WSDL
actually
did).

The proxy class gets created when you add a web reference to the
project (in Office 2003). If you can copy that class into your VB6
project and compile it, I wonder if it would work without the SOAP
toolkit installed on the client machine. Not trying to push the
issue...just wondering if you can get it to work. Good luck!


I created an MSI with the required merge modules and editied it with
Orca.
However, when I tried to install it on another XP machine, I was
propmpted
to shut down MS Outlook 2003 so that files could be updated. At that
point I
bailed from the install fearing a corruption of Outlook.

When editing with Orca I noticed that all 3 custom actions for the
winhttp.dll were included in the InstallExecuteSequence table. I made
sure
that the sequence numbers were between 1500 and 1525.

"adm" <ad*****@yahoo.comwrote in message
news:11**********************@m79g2000cwm.googl egroups.com...
Michel Posseth [MCP] wrote:
Hi John

yes you can with the "ugly"soap toolkit ,,, i had lots of problems
with
it
to deploy it to my end users so in the end

i could be entirely wrong about this, but I think you MIGHT be able
to
build a client app without deploying the SOAP toolkit to your end
users. I used the Office 2003 SOAP Toolkit to create a proxy class in
an Access ADP, then ran that ADP on a computer with a fresh install
of
Windows XP SP2 and MSXML 6 (i think), and it was able to access the
Web
Service just fine, without the toolkit being installed (as far as I
know). Not sure if this will similarly work in VB6, but it might, and
it's definitely worth testing.

also remember that you can only use so called "simple" data types

True, but you can serialize a complex data type to a "simple" data
type
of an XML string, and then return that string, and do various things
with it on the client side. Using this method, I've reconstructed ADO
recordsets on the client side from XML strings, which although a bit
slow, is something you can try when it's your only option for getting
what would otherwise be complex data types back to a "legacy" client.

-adm
"John Kotuby" <jo***@powerlist.comschreef in bericht
news:eU*************@TK2MSFTNGP04.phx.gbl...
I am expecting the answer to be, "of course not" or " are you
kidding?",
but maybe (hopefully) I am wrong and somebody can point me to an
ingenious
example of how the impossible just takes a little more work.

TIA



Aug 12 '06 #14

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

Similar topics

0
by: Anand Natrajan | last post by:
Hi! I have a VB .NET client that is accessing an rpc/encoded service deployed in Axis 1.2. One of the operations, whoami, returns a string array. The server-side Java signature of this method is...
2
by: Fadi | last post by:
Backround: I am trying to figure out how to do the equivalant of a classic COM Local Server Singleton in .NET/C#. I created a coupld of simple Class Libs that exposes public interfaces and hosted...
4
by: Jasleen | last post by:
I have written one Widows Service in ATL, having a ATL component running. Now it is very easy to create the VC client by calling CoCreateINstanceEx to create the component running in the service...
4
by: Ian | last post by:
Can anyone help I have a web server on the internet with and ASP.NET application on it, the application is set to allow Anonymous Access and Integrated Windows. The Web.config is set to use...
5
by: Gary Webb | last post by:
Is it possible to host a .NET Web Service (managed code using the .NET Framework 1.1) without IIS? I remember a website that indicated it was possible to use a .NET Remoting server to host a Web...
8
by: Manfred Braun | last post by:
Hello All! I am writing a management application, which has to access remote machines registry via System.Diagnostics.EventLog.CreateEventSource . For each machine, I connect to, I create a...
1
by: Lee Greco | last post by:
I'm looking for some advice on how to proceed. Here's the scenario: I've got to develop a high availability VB.Net web service that basically acts as a middle man between the web service...
0
by: YC | last post by:
Hi, Question - I have a web service client who calles a web service method and for some reason the client was disconnected from the service(timeout etc.) ..Lets say the operation accessed a...
1
by: Rob C | last post by:
I want to develop some data access web services in C# that can be accessed from both an ASP.NET web application as well as a VC++ desktop application. i have used web services in the past from VC++...
2
by: Ben Joyce | last post by:
Hi all. I'm confused as to what the best or expected approch is to Web Service design under .Net, mainly with regards to Methods and Parameters. This is a bit awkward to explain so please bear...
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?
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.