server

asp.net Web server control with child controls, event not firing

I have a simple web control (TaskList) that can have children (Task) which inherit from LinkButton, that can be added declaratively or programatically. This works ok, but I can't get the onclick event of a Task to be fired in my code behind. The code .. [ToolboxData("<{0}:TaskList runat=\"server\"> </{0}:TaskList>")] [ParseChildren...

What technology I should use to develop small Java webservice?

Basically I need webservice where client can request with id one boolean value from our webservice. What technology would be most suitable for this small API? Of course it is possible that there will be more functions to interface, but now we need only one function. It also needs to have authentication, so that only auhtorized clients ca...

How to build a web App with Git front end utils ?

Hi, I know how to work in git. But, now I want to set up a git server in my org. so that developers can access it via internet from any where around the globe. I know about Github and I want to build my own custom git server for my organisation developers alone and I donot wish to outsource it to git hub like apps. I need to provide b...

Server Error due to paging issue

Hello all, I think I sorted out my GridView1_PageIndexChanged event and thinking it should work protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.DataSourceID = "lqPackWeights"; GridView1.PageIndex = e.NewPageIndex; } However, when I now attempt to access page 2 of x, I receive the...

Integrating a web based User Interface with a CMS existing in windows virtual private server.

How can we integrate a web based flash User Interface running on a linux OS with a CMS existing in windows 2003 virtual private server? Is that possible to do so? ...

Antivirus on application servers which deal with lots of network traffic. Yes or No?

Interested in people's opinion. You have an application server running 3/4 services that do lots of TCP based communication to/from the server. There is also a fairly heafty amount of MSSQL work going on too. Do you run something like Symantec Anti-Virus with proactive/real time/heuristic/foo protection on the server? Or do you per...

updating the server cache in toplink

hi all, i am facing one problem. I need to update the server session's cache when we say writeChanges in unit of work. As in my application i do not say commit on unit of work instead i say commit on connection which indirectly commits the transaction but does not update the cache. so can any one tell me how to do that in any of the cas...

Urgent:-Steps after installing certificate on server for push notification?

I have exported and combined apns-development certificate put it on root of server. Now how do I know if the server supports ssl? How do I connect to apns and send device token and json body for push notification? Need help urgently. I have godaddy's hosting plan. ...

How can I get objects from ASP server to my Silverlight 3 app?

I have little Silverlight app that needs to make quries to server, is it possible to return objects to silverlight app or how can I communicate with server? ...

Java Server Side App, How to?

I am building a scalable Server Side App in Java but I need to know the "Do's and the Dont's". The app needs clients to connect to the server via TCP Sockets, I heard lot of good things about Apache MINA so I thought I'd give it a try and build around this. I would also need the app to communicate to a Database and send suitable dat...

client server in vb.net application

Hello Guys, I need to develop a vb.net payroll application, client and server are geographically dispersed, data is stored in server database. Can you please help me how to create application for client system and server system. ...

querying multiple servers

Hi everyone I am building a web service which needs to query 1 to n file servers, and receive multiple files as a result. Does anyone have a good idea on doing this? Would Threads do any good job? What if the connection with some servers takes longer than the others? How do I know if I really have ALL the queried files? Thanks ...

IIS: create subdomain for mail server (newbie)

hi all, when adding a new domain in the iis-manager (eg. www.myurl.com), whats the easiest way to auto-set up a mail subdomain for it (mail.myurl.com)? 2nd how do i connect the mail subdomain to the mailserver? thx ...

Multithreading won't work as expected

Hello, I have a problem with my program. I wanted it to have two threads, one of them listening for connections, and the other one receiving data from them... Unfortunately, it acts strangely. It will ignore my cout and cin usage everywhere in the code, so I can't even debug it. May I ask that someone sheds some light on it? Thank you in...

Group Policy on Terminal Server 2008

Hi all, I'll get straight to it. We have a domain controller running Windows Server 2003 and a new Terminal Server running Windows Server 2008. I was wondering what the best way to apply a group policy to the users from the Active Directory on the domain controller to the Terminal Server would be. I am a little confused. Thanks Ben ...

Passing coordinates from a java client to a java server

Firstly I know coordinates is probably the wrong terminology? I'd assume i'd simply be passing the x and y variables, but coordinates describe it better I feel. Now I need to have a Server which can be accessed by 2 clients, it is a racing game and it requires each client to be able to maneuver a racecar simultaniously, each using a dif...

syncml status 415 for devinf

I'm getting 415 status from N95 client for sending server devinf. I tried many things but no success. Here is server response (generated by me, I'm writing my own implementation of syncml server.): <?xml version="1.0"?> <!DOCTYPE SyncML PUBLIC "-//SYNCML//DTD SyncML 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/OMA-TS-SyncML_Re...

What concerns should I have when installing additional Perl modules on a server?

I would like to ask my system administrator to install various Perl modules such as Moose and Data::Alias. The system is Red Hat Enterprise Linux 5, running Perl 5.8.8. The only problem that I can think of is that some already-installed modules might need to be upgraded and thus run the risk of breaking something. What else should I be c...

Web server - weird characters generated at the top of page

When first going to a detail page, 4 weird characters appear at the very top of the page. After refreshing the page, these characters disappear. None of this output is coming from the code itself, and I'm pretty sure that it's a server configuration issue. The closest thing I could find involves HTTP 1.1 chunked encoding. Has anyone exp...

C# - Network vs. Server

Hello, I have been working on an emulator, and it sends a few packets separately, but the client receiving the packets is able to handle multiple packets incoming from a single receive. Here's my method: /// <summary> /// Sends a few packets at login to prepare the character for gameplay. /// </summary> /// <param name...