server

How do I connect to a Telnet Server in c#?

I am having my OJT and my current task is to do an FTP Client Server connecting to a telnet Server. This is my first time doing this kind of a program. Any idea how I can do this in c# windows app? how do i establish a connection to telnet with completeauthentications? Are their any open source libraries to help me do this? Any help with...

What is the difference between application server and web server ?

I do not understand the basic difference between a web server and application server.. ...

Simple client/server, TCP/IP encrypting the message stream, SSL

Hi, Writing a little TCP/IP client server app. Basically it creates a server, and then you can create several different clients and set up a bit of a chat session. What I am wondering is there is any way to incorporate, using standard .net libraries some form of encryption? m_mainSocket = new Socket(AddressFamily.InterNetwork, ...

Small Business Server 2003 and WSS Internet Licensing

Hi What is the licensing situation with Small Business Server 2003 and allowing other people and companies to connect and use the services? I also want to run Windows SharePoing Services (the free version) on there and allow access to this. Do I need to get additional licensing for this? Kind Regards ...

How will the client access the Bugzilla server?

I have just installed Bugzilla on my laptop and I will be the Bugzilla server. I would like to know how my team mates will be able to access the Bugzilla server? I know that Apache is the web server but can you point me to a reference on how clients can access the server? Thank you. ...

Exchange Server - Global Access

Hey everyone, I'm trying to create a web-based app that can interact with Exchange server globally. Meaning, I need it to have the ability to view, change, delete, and create all e-mails, calendars, appointments, tasks, notes, etc... across the domain. I am using .Net, and have been looking into sinks, but wasn't sure if this was the ...

Can anyone provide a rational explanation as to why a web server must assist in the creation of upload progress bars?

I've been putting together a small personal website in rails and have gotten to the point where I need to be able to upload files. This is an almost trivial task and took no time at all. What is taking time - and is slowly sapping my sanity - is the task of providing the user with an upload progress bar. I've seen at least a dozen sol...

Do we have to buy a domain to serve Bugzilla?

I tried putting my IP from whatismyip.com in the urlbase of Bugzilla but it did not work. I wasn't able to create a new account for my team mate, and he wasnt able to access the server by typing the my ip address in his browse. And surely, when I connect again, my IP address will change. Do we have to buy a www address to host Bugzilla? ...

Custom simple Python HTTP server not serving css files.

Hello, I had found written in python, a very simple http server, it's do_get method looks like this: def do_GET(self): try: self.send_response(200) self.send_header('Content-type', 'text/html') self.end_headers(); filepath = self.path print filepath, USTAW['rootwww'] ...

How do I shift programming specialties?

I've worked as an engineer in the mobile industry in Silicon Valley for the past 6 years. I've published a short book about Android and I've written code embedded in millions of handsets. If I wanted to diversify or movie into a different field, how would I go about it? I know from experience that large scale web engineers make really...

Server.ScriptTimeout

Hello everyone, In MSDN, it is said, "The timeout will not take effect while a server component is processing." -- what does this statement mean? Could anyone show a scenario it is referring to please? http://msdn.microsoft.com/en-us/library/ms524831.aspx A related question is, whether it is good code to judge that, if a session varia...

'TimeToLiveTimeout' property for SJAS JDBC Connection pool

My application runs on Sun Java Application server v8.1 and it connects to an 0racle(10g) DB using the application server's jdbc connection pool. The datasource class name used in the pool is 'oracle.jdbc.pool.OracleDataSource'. I have enabled connection caching and I want to use the 'TimeToLiveTimeout' property for this DataSource.'Tim...

VS2008 and asp.net Microsoft Reports paging

Is it possible to make Microsoft Reports component use server side paging when displaying data. I had problems in the past with getting all the data from the database and then having client side paging implemented. large amounts of data were triggering out of memory exceptions on the server. So basically what I want is to use Microsof...

Git workflow with a testing server

Hi, I'm using git for my workflow and I have a remote testing server. What would be the best way to do this. Currently I make my changes on my workstation and I commit changes and then push to server. But this would quickly lead to many small commits. I want to avoid setting up testing server on my workstation. And rebasing commits is...

Is it safe to use Socket.LocalEndPoint as a unique id?

Hello; When a server accepts a client over a tcp/ip connection, a new socket is created. Is it safe to use the LocalEndPoint port (from the client perspective) as an id? Example (from the server perspective): int clientId = ((IPEndPoint)client.RemoteEndPoint).Port; On my local machine, the port seems to be unique, but with multiple cl...

How can I speed up a web-application? (Avoid rebuilding a structure.)

After having successfully build a static data structure (see here), I would want to avoid having to build it from scratch every time a user requests an operation on it. My naïv first idea was to dump the structure (using python's pickle) into a file and load this file for each query. Needless to say (as I figured out), this turns out to ...

Client-Server application for Windows CE

Does anyone know where I can find simple Client-Server application for Windows Mobile? If anybody has code or something like that, that would be very useful for me. Thanks Marko ...

Autocomplete server-side implementation

What is a fast and efficient way to implement the server-side component for an autocomplete feature in an html input box? I am writing a service to autocomplete user queries in our web interface's main search box, and the completions are displayed in an ajax-powered dropdown. The data we are running queries against is simply a large ta...

How to build an image web server?

I am trying to build an web image server. It serves images to lots of clients(10 thousands+) simultaneously. (It will be a easier problem if there is fewer clients.) What is a good way to do so, with time delay as small as possible. I am new to this field. Any suggestion will be welcomed. ...

How can I measure my (SAMP) server's bandwidth usage?

I'm running a Solaris server to serve PHP through Apache. What tools can I use to measure the bandwidth my server is currently using? I use Google analytics to measure traffic, but as far as I know, it ignores file size. I have a rough idea of the average size of the pages I serve, and can do a back-of-the-envelope calculation of my band...