473,396 Members | 1,940 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.

How to shutdown a remoting Server (SAO-Singleton started with RemotingConfiguration.Configure())

Hello,

What is the best way to stop a remoting server (Singleton SAO) that has been
started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José
Jan 23 '07 #1
13 1856
Others may know better, but I would say either to set the lifetime to a
suitable value, or use SingleCall objects (instead of Singletons) that die
as soon as any method on them is completed.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José

Jan 24 '07 #2
Hello Peter,

Thanks,
However, I do not want to recycle my remoted object. I want to prevent any
client from using my remoting Server. I want to be able to shutdown the
fonctionality at a given time.

- José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:eF**************@TK2MSFTNGP03.phx.gbl...
Others may know better, but I would say either to set the lifetime to a
suitable value, or use SingleCall objects (instead of Singletons) that die
as soon as any method on them is completed.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
>Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José


Jan 24 '07 #3
Hi Jose
However, I do not want to recycle my remoted object
I don't know what you mean by "recycle". I hope it doesn't mean that you
are using your Singleton object as a stateful object (i.e. to use state it
retains between calls). This would be a very bad idea. If you want to
retain state, you should use CAOs. Using SingeCall SAOs is more scalable
anyway - and more in tune with the move to a Service Oriented Architecture
(IMHO and from what I've read).
>I want to prevent any client from using my remoting Server.
Do you mean that you want to stop the server? Or are you trying to
distinguish between clients? If the former, just stop the service on the
remote server. If the latter, couldn't you use your security credentials
info?
>I want to be able to shutdown the fonctionality at a given time.
For everyone? Shut down the service on the server.

We always use configuration files for remoting, as well. It means that you
can make lots of changes on the fly just be changing a setting or two in the
config file.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
Hello Peter,

Thanks,
However, I do not want to recycle my remoted object. I want to prevent any
client from using my remoting Server. I want to be able to shutdown the
fonctionality at a given time.

- José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:eF**************@TK2MSFTNGP03.phx.gbl...
>Others may know better, but I would say either to set the lifetime to a
suitable value, or use SingleCall objects (instead of Singletons) that
die as soon as any method on them is completed.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch. ..
>>Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to
stop the remoting functionality within my process.

Many thanks,

- José



Jan 24 '07 #4
Hello Peter,

Thanks for your feedback.

Regarding the first part of your answer, you're right it is not a good idea
to keep state in this object (at least not state of the art...). Any way,
yesterday night, I changed my mind in turn it to a SingleCall object.

Now, back to my initial problem. I really want to stop the remoting
functionality. This means no client will be able to connect any more from a
given point of time.
I do not really follow you when you say, "just stop the Server". In fact, my
"remoting Server" will be hosted within a process that will keep running
eventhough the remoting functionality is stopped.

So, is there any method to call to stop the remoting server?

To start it --------RemotingConfiguration.Configure().
To stop it:---------?????

Thanks,
-José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:OV**************@TK2MSFTNGP04.phx.gbl...
Hi Jose
>However, I do not want to recycle my remoted object

I don't know what you mean by "recycle". I hope it doesn't mean that you
are using your Singleton object as a stateful object (i.e. to use state it
retains between calls). This would be a very bad idea. If you want to
retain state, you should use CAOs. Using SingeCall SAOs is more scalable
anyway - and more in tune with the move to a Service Oriented Architecture
(IMHO and from what I've read).
>>I want to prevent any client from using my remoting Server.

Do you mean that you want to stop the server? Or are you trying to
distinguish between clients? If the former, just stop the service on the
remote server. If the latter, couldn't you use your security credentials
info?
>>I want to be able to shutdown the fonctionality at a given time.

For everyone? Shut down the service on the server.

We always use configuration files for remoting, as well. It means that
you can make lots of changes on the fly just be changing a setting or two
in the config file.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
>Hello Peter,

Thanks,
However, I do not want to recycle my remoted object. I want to prevent
any client from using my remoting Server. I want to be able to shutdown
the fonctionality at a given time.

- José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:eF**************@TK2MSFTNGP03.phx.gbl...
>>Others may know better, but I would say either to set the lifetime to a
suitable value, or use SingleCall objects (instead of Singletons) that
die as soon as any method on them is completed.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch.. .
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to
stop the remoting functionality within my process.

Many thanks,

- José



Jan 24 '07 #5
Presumably, your remote object is hosted within a Windows Service. This is
the usual method. If you want to cut your users off, just stop the service.
The first time you try to call a method on the remote object (NB: NOT when
you create the proxy instance, which is done exclusively on the client), an
exception will be thrown, because the Windows service will be stopped. The
actual error message says something about the server actively refusing
requests on that port.

All you need to do is to intercept that exception and send some nice,
friendly message to the user, along the lines of, "The service is
temporarily unavailable. Please try again later. In fact, you could put
the message in a config file so that you can alter it to suit your
circumstances.

Does that help?

This is all .NET 1.1 stuff, by the way. It might be even easier in 2.0. I
wouldn't know. Yet.
Peter
"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
Hello Peter,

Thanks for your feedback.

Regarding the first part of your answer, you're right it is not a good
idea to keep state in this object (at least not state of the art...). Any
way, yesterday night, I changed my mind in turn it to a SingleCall object.

Now, back to my initial problem. I really want to stop the remoting
functionality. This means no client will be able to connect any more from
a given point of time.
I do not really follow you when you say, "just stop the Server". In fact,
my "remoting Server" will be hosted within a process that will keep
running eventhough the remoting functionality is stopped.

So, is there any method to call to stop the remoting server?

To start it --------RemotingConfiguration.Configure().
To stop it:---------?????

Thanks,
-José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:OV**************@TK2MSFTNGP04.phx.gbl...
>Hi Jose
>>However, I do not want to recycle my remoted object

I don't know what you mean by "recycle". I hope it doesn't mean that you
are using your Singleton object as a stateful object (i.e. to use state
it retains between calls). This would be a very bad idea. If you want
to retain state, you should use CAOs. Using SingeCall SAOs is more
scalable anyway - and more in tune with the move to a Service Oriented
Architecture (IMHO and from what I've read).
>>>I want to prevent any client from using my remoting Server.

Do you mean that you want to stop the server? Or are you trying to
distinguish between clients? If the former, just stop the service on the
remote server. If the latter, couldn't you use your security credentials
info?
>>>I want to be able to shutdown the fonctionality at a given time.

For everyone? Shut down the service on the server.

We always use configuration files for remoting, as well. It means that
you can make lots of changes on the fly just be changing a setting or two
in the config file.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch. ..
>>Hello Peter,

Thanks,
However, I do not want to recycle my remoted object. I want to prevent
any client from using my remoting Server. I want to be able to shutdown
the fonctionality at a given time.

- José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:eF**************@TK2MSFTNGP03.phx.gbl...
Others may know better, but I would say either to set the lifetime to a
suitable value, or use SingleCall objects (instead of Singletons) that
die as soon as any method on them is completed.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch. ..
Hello,
>
What is the best way to stop a remoting server (Singleton SAO) that
has been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)
>
In fact, at a given time based on an internal event, I would like to
stop the remoting functionality within my process.
>
Many thanks,
>
- José
>




Jan 24 '07 #6
Hello again,

No, it is not a windows Service. For several reason, this is not hosted in a
windows Service but in a normal process that has also other small taks to
perform.
This means I can not stop the service or terminate the process.

- José
"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
Presumably, your remote object is hosted within a Windows Service. This
is the usual method. If you want to cut your users off, just stop the
service. The first time you try to call a method on the remote object (NB:
NOT when you create the proxy instance, which is done exclusively on the
client), an exception will be thrown, because the Windows service will be
stopped. The actual error message says something about the server
actively refusing requests on that port.

All you need to do is to intercept that exception and send some nice,
friendly message to the user, along the lines of, "The service is
temporarily unavailable. Please try again later. In fact, you could put
the message in a config file so that you can alter it to suit your
circumstances.

Does that help?

This is all .NET 1.1 stuff, by the way. It might be even easier in 2.0.
I wouldn't know. Yet.
Peter
"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
>Hello Peter,

Thanks for your feedback.

Regarding the first part of your answer, you're right it is not a good
idea to keep state in this object (at least not state of the art...). Any
way, yesterday night, I changed my mind in turn it to a SingleCall
object.

Now, back to my initial problem. I really want to stop the remoting
functionality. This means no client will be able to connect any more from
a given point of time.
I do not really follow you when you say, "just stop the Server". In fact,
my "remoting Server" will be hosted within a process that will keep
running eventhough the remoting functionality is stopped.

So, is there any method to call to stop the remoting server?

To start it --------RemotingConfiguration.Configure().
To stop it:---------?????

Thanks,
-José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:OV**************@TK2MSFTNGP04.phx.gbl...
>>Hi Jose

However, I do not want to recycle my remoted object

I don't know what you mean by "recycle". I hope it doesn't mean that
you are using your Singleton object as a stateful object (i.e. to use
state it retains between calls). This would be a very bad idea. If you
want to retain state, you should use CAOs. Using SingeCall SAOs is more
scalable anyway - and more in tune with the move to a Service Oriented
Architecture (IMHO and from what I've read).

I want to prevent any client from using my remoting Server.

Do you mean that you want to stop the server? Or are you trying to
distinguish between clients? If the former, just stop the service on
the remote server. If the latter, couldn't you use your security
credentials info?

I want to be able to shutdown the fonctionality at a given time.

For everyone? Shut down the service on the server.

We always use configuration files for remoting, as well. It means that
you can make lots of changes on the fly just be changing a setting or
two in the config file.

HTH
Peter

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch.. .
Hello Peter,

Thanks,
However, I do not want to recycle my remoted object. I want to prevent
any client from using my remoting Server. I want to be able to shutdown
the fonctionality at a given time.

- José

"Peter Bradley" <pb******@uwic.ac.ukwrote in message
news:eF**************@TK2MSFTNGP03.phx.gbl...
Others may know better, but I would say either to set the lifetime to
a suitable value, or use SingleCall objects (instead of Singletons)
that die as soon as any method on them is completed.
>
HTH
>
>
Peter
>
"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch ...
>Hello,
>>
>What is the best way to stop a remoting server (Singleton SAO) that
>has been started with RemotingConfiguration.Configure().
>For sure, I want to do this without quitting the application :-)
>>
>In fact, at a given time based on an internal event, I would like to
>stop the remoting functionality within my process.
>>
>Many thanks,
>>
>- José
>>
>
>




Jan 24 '07 #7
Jose,

I am in the same (or similar) boat with you on this. For a while, I've been
wanting to stop (or prohibit) server object providing any further services to
client although the [Window] service itself (or any other ways your server
object may be hosted) is still running. One scenario of this is the service
hosts 3 server objects, and I want to prohibit on one [at runtime] while
leaving the other 2 running. How do I do that?

Apparently, it's not obvious and as far as I know, there's none. My thinking
is that you just have to somehow play trick inside your object to intercept
every (yes, every) single call to check for whether the object is currently
available for service or not. That also means your object is not stopped;
it's just not providing services.

I hope that helps.

--
Your 2 cents are worth $milion$. Thanks.
"José Joye" wrote:
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has been
started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José
Jan 26 '07 #8
Hello,

Thanks for your feedback,

In fact I still did not find any viable solution to the problem. I'm
wondering if the ChannelServices.UnregisterChannel() Method .
I will try it in the next days....

- José

"mtv" <mt*@discussions.microsoft.coma écrit dans le message de news:
D6**********************************@microsoft.com...
Jose,

I am in the same (or similar) boat with you on this. For a while, I've
been
wanting to stop (or prohibit) server object providing any further services
to
client although the [Window] service itself (or any other ways your server
object may be hosted) is still running. One scenario of this is the
service
hosts 3 server objects, and I want to prohibit on one [at runtime] while
leaving the other 2 running. How do I do that?

Apparently, it's not obvious and as far as I know, there's none. My
thinking
is that you just have to somehow play trick inside your object to
intercept
every (yes, every) single call to check for whether the object is
currently
available for service or not. That also means your object is not stopped;
it's just not providing services.

I hope that helps.

--
Your 2 cents are worth $milion$. Thanks.
"José Joye" wrote:
>Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been
started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José

Jan 26 '07 #9
If you host multiple remote objects [by a single host] like mine,
unregistering will shut down availability for all objects. So, if you have
one object per service, it will work but that is not much different from
shutting down the service itself.

What's your architecture like? BTW, have you checked out Genuine Channels
component? It may provide this feature.
--
Your 2 cents are worth $milion$. Thanks.
"José Joye" wrote:
Hello,

Thanks for your feedback,

In fact I still did not find any viable solution to the problem. I'm
wondering if the ChannelServices.UnregisterChannel() Method .
I will try it in the next days....

- José

"mtv" <mt*@discussions.microsoft.coma écrit dans le message de news:
D6**********************************@microsoft.com...
Jose,

I am in the same (or similar) boat with you on this. For a while, I've
been
wanting to stop (or prohibit) server object providing any further services
to
client although the [Window] service itself (or any other ways your server
object may be hosted) is still running. One scenario of this is the
service
hosts 3 server objects, and I want to prohibit on one [at runtime] while
leaving the other 2 running. How do I do that?

Apparently, it's not obvious and as far as I know, there's none. My
thinking
is that you just have to somehow play trick inside your object to
intercept
every (yes, every) single call to check for whether the object is
currently
available for service or not. That also means your object is not stopped;
it's just not providing services.

I hope that helps.

--
Your 2 cents are worth $milion$. Thanks.
"José Joye" wrote:
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been
started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José


Jan 26 '07 #10
Hi, Jose:

See the site http://www.udaparts.com/groups/viewtopic.php?t=203. Our
SocketPro can provide much more features than any .NET remoting frameworks.

Why don't you give our SocketPro at www.udaparts.com a try?

Regards,


"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José

Jan 27 '07 #11
Have a few questions if you will:

1. Does SockPro support server's custom events that can be subscribed on
Client? Ex: server notifies clients via events upon something happened on the
server side.
2. Are there any size/obj type limitations in transferring data b/t client
and server?
3. Can it server synchronously multiple clients in parallel using some sort
of threading architecture? Ex: Many Clients call GetData() that returns a
dataset. How does SockPro work with these calls in parallel and synchronous
mode?

Since I use .Net remoting, feel free to compare/constrast SockPro to it. If
you prefer to discuss offline, please provide your email/phone.

Thanks.
--
Your 2 cents are worth $milion$. Thanks.
"msgroup" wrote:
Hi, Jose:

See the site http://www.udaparts.com/groups/viewtopic.php?t=203. Our
SocketPro can provide much more features than any .NET remoting frameworks.

Why don't you give our SocketPro at www.udaparts.com a try?

Regards,


"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José


Jan 29 '07 #12
Hi, mtv:

See my inline comments.

"mtv" <mt*@discussions.microsoft.comwrote in message
news:00**********************************@microsof t.com...
Have a few questions if you will:

1. Does SockPro support server's custom events that can be subscribed on
Client? Ex: server notifies clients via events upon something happened on
the
server side.
Our SocketPro has a BUILT-IN real-time communication service (chat or
notification service) without writing your own code, because it is a
built-in service for free. See the site
http://www.udaparts.com/document/art...hatservice.htm. See the real
application that is written from our SocketPro at
http://www.wramp.net/casestudies1.html and
http://www.udaparts.com/groups/viewtopic.php?t=39.
2. Are there any size/obj type limitations in transferring data b/t client
and server?
No size/obj type limitations at all. Our SocketPro also fully supports .NET
serialization and de-serialization, in addition to own class helper.

3. Can it server synchronously multiple clients in parallel using some
sort
of threading architecture? Ex: Many Clients call GetData() that returns a
dataset. How does SockPro work with these calls in parallel and
synchronous
mode?
Our SocketPro is written from batching, asynchrony and parallel computation
with online compression. SocketPro uses 100% non-blocking for both client
and server communications. On client side, usually you don't need threads
but non-blocking sockets only. Go to www.udaparts.com, download SocketPro
and do reseach on five tutorials and other samples. You will gradually
understand our SocketPro. If you use our built-in real-time notification
service, it may help you write a much better distributed application.
>
Since I use .Net remoting, feel free to compare/constrast SockPro to it.
If
you prefer to discuss offline, please provide your email/phone.
You can post message into our discussion group at
http://www.udaparts.com/groups/viewforum.php?f=2. We can provide more detail
analysis for your project design, and give your extra suggestions.
>
Thanks.
--
Your 2 cents are worth $milion$. Thanks.
"msgroup" wrote:
>Hi, Jose:

See the site http://www.udaparts.com/groups/viewtopic.php?t=203. Our
SocketPro can provide much more features than any .NET remoting
frameworks.

Why don't you give our SocketPro at www.udaparts.com a try?

Regards,


"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch. ..
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to
stop
the remoting functionality within my process.

Many thanks,

- José



Jan 30 '07 #13
Don't know how helpful this is but it's an idea.....

Stick a boolean property on your remote object to indicate if it can accept
requests or not. e.g. CanAcceptRequests.

Create a method on the remote object to return this value. e.g.
CheckCanAcceptRequests.

Before every call to the remote object, call the CheckCanAcceptRequests
method on the remote object ( or possibly just check to property directly).
If result is TRUE, then make the required method call to do processing....
if FALSE then don't call the method.

Trick would be to persist the CanAcceptRequests setting somewhere, and read
it back when a new Singleton object is created in the server as it doesnt
retain any state.

This means that your app can continue running, but you can deny any remote
method calls

Its a method I'm looking at using in a small project I have.

Stu

"José Joye" <Me@me.comwrote in message
news:45***********************@news.sunrise.ch...
Hello,

What is the best way to stop a remoting server (Singleton SAO) that has
been started with RemotingConfiguration.Configure().
For sure, I want to do this without quitting the application :-)

In fact, at a given time based on an internal event, I would like to stop
the remoting functionality within my process.

Many thanks,

- José
Feb 8 '07 #14

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

Similar topics

0
by: Per Bergland | last post by:
After many woes, I finally managed to get a stack dump of my System Service (written in C#) that insists on crashing when launched at system boot time (see below on how to get this dump - I...
0
by: JSheble | last post by:
I have a windows service that is actually a .NET Remoting Server, and in the OnStart I start up the Remoting server for accepting connections from a client app. In the OnStop event of the service,...
2
by: Mantorok | last post by:
Hi Everytime my ASP.Net app starts it configures remoting using RemotingConfiguration.Configure methods. However, after the app has run once and then I try and run it again it throws an...
2
by: Mantorok | last post by:
Hi I use RemotingCOnfiguration.Configure("App.config") to configure my ports, however sometimes after I have closed the app and restart it throws an exception "Only one usage of each socket...
0
by: Mas L via DotNetMonster.com | last post by:
Hi, I have a problem with getting values from the RemotingConfiguration. RemotingConfiguration::Configure ("RTC_cpp.exe.config"); RealTimeDataManager^ manager = gcnew...
1
by: big A | last post by:
I am writing an ASP.net application using the web.config file and RemotingConfiguration.Configure to define the remoting configuration. This technique works fine for the initial page load; however...
0
by: Mat | last post by:
i create a remote server which i want to use like windows servers. -On start i put the following code: Protected Overrides Sub OnStart(ByVal args() As String) Dim filename As String =...
13
by: José Joye | last post by:
Hello, What is the best way to stop a remoting server (Singleton SAO) that has been started with RemotingConfiguration.Configure(). For sure, I want to do this without quitting the application...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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
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
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...

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.