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

passing custom object to webservice

Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----

Sep 20 '06 #1
9 3762
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Sep 20 '06 #2
Hi Sundar,
Thanxs for the reply.
The gist of the question is when I send the proxy object to the server and
the server tries to recreate my object. It wont be able to set the,
intentionally, private set property. Leaving my object without essential data.

How can I have the framework deserialize my object correctly even though it
has a pricate set?

Regards Greger

--
----

"Sundar Narasimman" wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Sep 20 '06 #3
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Sep 21 '06 #4
Hi Ben,

Yes you are right. You can serialize custom objects over the web . You can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,
>
I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)
>
The question is;
>
Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?
>
Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.
>
Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...
>
I can not use interface because the webservice can not serialize that.
>
Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)
>
Thanks in advance!
>
Regards Greger
>
--
----
>

Sep 21 '06 #5
Hi Greger,

Niow I can understand your problem better.
There is a way to do that. You can have a Public method in the Remote Object
to update the private property/member of the class.

Your remote Person object can have public and private properties/method.
As you know only Public properties/methods would be serialized back and
forth between Web Services and the Client. Meaning at the client-side, the
proxy will reflect only Public Properties/Methods of the remote object.

You can still call the Public method of the proxy, that inturn will get
executed at the server-side to update your private property/member.

This is really possible.

Pls let me know whether this is useful or you need more information
regarding this
--
Thanks & Regards,
Sundar Narasimman
Technology Specialist
Microsoft .NET
"Greger" wrote:
Hi Sundar,
Thanxs for the reply.
The gist of the question is when I send the proxy object to the server and
the server tries to recreate my object. It wont be able to set the,
intentionally, private set property. Leaving my object without essential data.

How can I have the framework deserialize my object correctly even though it
has a pricate set?

Regards Greger

--
----

"Sundar Narasimman" wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:
Hi,
>
I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)
>
The question is;
>
Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?
>
Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.
>
Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...
>
I can not use interface because the webservice can not serialize that.
>
Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)
>
Thanks in advance!
>
Regards Greger
>
--
----
>
Sep 21 '06 #6
Hi,

Your information is quite useful and I have one more question to it.

I am having one custom object which I accept as a parameter of my webmethod.
This object is getting generated in my proxy class of the webservice at the
consumer-end.

Now, I am not getting any of my public methods of my custom object in
generated proxy class. I am not getting even constructors.

Actually I am having one private variable of the type "object" in my custom
class "WebResponse". Depending on the type of the value it contains, I am
having public methods to return it's value. but I am not getting any of these
public methods in the proxy class.

Is there any way out here!

Thanks,
Prerak

"Sundar Narasimman" wrote:
Hi Ben,

Yes you are right. You can serialize custom objects over the web . You can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,
>
It's a good question. You can pass Custom objects to and from Web Services.
In your case , the Person Object, should have Public Properties to depitct
the details of the Person Object
>
As long as the properties of the Person object are a primitive types, you
don't have to bother too much. Look at the sample below ...
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class
>
If atleast one of the Property of the Person object is a CusomCollection,
you need to consider lot of things before passing objects to and from web
services.
The following scenario has address collection inside Person Object
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class
>
In such case the Custom Collections are not transmitted directly between web
services and clients. Meaning Custom Collections are passed as Array of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling between
Person Object and AddressCollection property. In this scenario you really
need to figure out a way to maintain the tight coupling between Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId. Meaning
have a defintion for PersonId in the AddressCollection.
>
Please let me know if this reply is useful. If you need more information let
me know.
-
Thanks & Regards,
Sundar Narasimman
>
>
>
"Greger" wrote:
>
Hi,

I am building an architecture that passes my custom objects to and from
webservices. (Our internal architecture requires me to use webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web service
and still retain the value of id?

Getting the object from the webservice is no problem since I only use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up to the
webservice or is there any other way?
This could be tricky since if the person object have a list och subitems the
PersonData would need that aswell creating a lot of code doing the same
thing...

I can not use interface because the webservice can not serialize that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----
Feb 27 '07 #7
Custom objects are serialized with XmlSerializer, it only transport public
properties.
"Prerak V. Shah" <Prerak V. Sh**@discussions.microsoft.comwrote in message
news:9A**********************************@microsof t.com...
Hi,

Your information is quite useful and I have one more question to it.

I am having one custom object which I accept as a parameter of my
webmethod.
This object is getting generated in my proxy class of the webservice at
the
consumer-end.

Now, I am not getting any of my public methods of my custom object in
generated proxy class. I am not getting even constructors.

Actually I am having one private variable of the type "object" in my
custom
class "WebResponse". Depending on the type of the value it contains, I am
having public methods to return it's value. but I am not getting any of
these
public methods in the proxy class.

Is there any way out here!

Thanks,
Prerak

"Sundar Narasimman" wrote:
>Hi Ben,

Yes you are right. You can serialize custom objects over the web . You
can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:
Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,

It's a good question. You can pass Custom objects to and from Web
Services.
In your case , the Person Object, should have Public Properties to
depitct
the details of the Person Object

As long as the properties of the Person object are a primitive types,
you
don't have to bother too much. Look at the sample below ...

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class

If atleast one of the Property of the Person object is a
CusomCollection,
you need to consider lot of things before passing objects to and from
web
services.
The following scenario has address collection inside Person Object

Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class

In such case the Custom Collections are not transmitted directly
between web
services and clients. Meaning Custom Collections are passed as Array
of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling
between
Person Object and AddressCollection property. In this scenario you
really
need to figure out a way to maintain the tight coupling between
Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId.
Meaning
have a defintion for PersonId in the AddressCollection.

Please let me know if this reply is useful. If you need more
information let
me know.
-
Thanks & Regards,
Sundar Narasimman

"Greger" wrote:

Hi,

I am building an architecture that passes my custom objects to and
from
webservices. (Our internal architecture requires me to use
webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web
service
and still retain the value of id?

Getting the object from the webservice is no problem since I only
use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up
to the
webservice or is there any other way?
This could be tricky since if the person object have a list och
subitems the
PersonData would need that aswell creating a lot of code doing the
same
thing...

I can not use interface because the webservice can not serialize
that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----


Mar 8 '07 #8
one of the alternatives:

http://replicrux.com/2008/10/20/pass...b-service.aspx

"Mariano Omar Rodriguez" wrote:
Custom objects are serialized with XmlSerializer, it only transport public
properties.
"Prerak V. Shah" <Prerak V. Sh**@discussions.microsoft.comwrote in message
news:9A**********************************@microsof t.com...
Hi,

Your information is quite useful and I have one more question to it.

I am having one custom object which I accept as a parameter of my
webmethod.
This object is getting generated in my proxy class of the webservice at
the
consumer-end.

Now, I am not getting any of my public methods of my custom object in
generated proxy class. I am not getting even constructors.

Actually I am having one private variable of the type "object" in my
custom
class "WebResponse". Depending on the type of the value it contains, I am
having public methods to return it's value. but I am not getting any of
these
public methods in the proxy class.

Is there any way out here!

Thanks,
Prerak

"Sundar Narasimman" wrote:
Hi Ben,

Yes you are right. You can serialize custom objects over the web . You
can
even serialize custom object collections.

Thanks & Regards,
Sundar

"Ben Joyce" wrote:

Wow, I didn't even know this was possible... so, you can serialize
custom classes in .net and send them over the web? I am understanding
this right?

Ben

Sundar Narasimman wrote:
Greger,
>
It's a good question. You can pass Custom objects to and from Web
Services.
In your case , the Person Object, should have Public Properties to
depitct
the details of the Person Object
>
As long as the properties of the Person object are a primitive types,
you
don't have to bother too much. Look at the sample below ...
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
End Class
>
If atleast one of the Property of the Person object is a
CusomCollection,
you need to consider lot of things before passing objects to and from
web
services.
The following scenario has address collection inside Person Object
>
Public Class Person
Public Property PersonId as Integer
Public Property PersonName as String
Public Propery PersonAddress as AddressCollection
End Class
>
In such case the Custom Collections are not transmitted directly
between web
services and clients. Meaning Custom Collections are passed as Array
of
Objecs.
If if it is passed as Array of Objects, you loose tight coupling
between
Person Object and AddressCollection property. In this scenario you
really
need to figure out a way to maintain the tight coupling between
Person Object
and AddressCollection Propery.
The way to do is to enable tight coupling with PersonId.
Meaning
have a defintion for PersonId in the AddressCollection.
>
Please let me know if this reply is useful. If you need more
information let
me know.
-
Thanks & Regards,
Sundar Narasimman
>
>
>
"Greger" wrote:
>
Hi,

I am building an architecture that passes my custom objects to and
from
webservices. (Our internal architecture requires me to use
webservices to any
suggestion to use other remoting techniques are not feasible)

The question is;

Given that I have a Person object with a private set for id.
What is the recommended approac in passing that object to the web
service
and still retain the value of id?

Getting the object from the webservice is no problem since I only
use the
generated proxy class to achieve this.

Should I create a PersonData with public properties that I pass up
to the
webservice or is there any other way?
This could be tricky since if the person object have a list och
subitems the
PersonData would need that aswell creating a lot of code doing the
same
thing...

I can not use interface because the webservice can not serialize
that.

Any pointers to design guidelines or similar is appreciated.
(WCF is not an option right now)

Thanks in advance!

Regards Greger

--
----


Oct 26 '08 #9

"Kin" <Ki*@discussions.microsoft.comwrote in message
news:41**********************************@microsof t.com...
one of the alternatives:

http://replicrux.com/2008/10/20/pass...b-service.aspx
This is totally unnecessary. Simply copy the properties from one object to
the other.

In WCF you can simply choose to reuse the types.

--
John Saunders | MVP - Connected System Developer

Oct 26 '08 #10

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

Similar topics

5
by: hellrazor | last post by:
Hi there, I'm very new to dot net programming and webservices programming. I've managed to create simple webservices so far. Here's my problem: -I've been given a project which needs to...
4
by: Sahil Malik [MVP] | last post by:
Okay so now I understand (surprised though) - that WebServices can indeed pass ByRef/ref parameters. All I have to do is mark an integer parameter of a WebMethod as "ref". Funnily enough, this is...
5
by: mtv | last post by:
Hi all, I have the following code: ================================ Webservice side: public class MyWS: WebService { private myLib.DataObject curDataObject;
12
by: Noel | last post by:
Hello, I'm currently developing a web service that retrieves data from an employee table. I would like to send and retrieve a custom employee class to/from the webservice. I have currently coded...
1
by: rival | last post by:
Hi. I've a single solution with many projects. I'm using VS2003 and framework 1.1 1. Data project - contains UserData class, inheriting from DataSet, and setting up constants and columns...
8
by: =?Utf-8?B?UmF2aQ==?= | last post by:
Hi, I'm trying to pass values of different data-types to a web-service. I thought it would be easier to box these values and pass them as a System.object parameter, like public void...
2
by: =?Utf-8?B?Y3Nz?= | last post by:
I am new to ASP.net webservice and have a quesiton. Is is possible to pass custom object to a web service (using VB 2005)? My custom object will look like this Public Class Myclass Public...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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...
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...

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.