5,682 Topics

Member Avatar for
Member Avatar for sumanpc

hello to all my frnz... Actually i need 2 generate a program to find out how many processors are running at the n machines by devoloping a client server model using a unix enviroment!! i wud b really grateful if someone gives the c code for it!!! thank u:)

Member Avatar for Salem
-1
16
Member Avatar for hiddenpain

Sorry for the somewhat sloppy programming but it should be understandable. Ok i'm supposed to write a function decide(), its purpose is to first broadcast a User object and then listening for any acknowledgements. If any was received it acts like a client and the one who sent the response …

Member Avatar for verruckt24
0
136
Member Avatar for samcaleb05

Hello Frnds... Can anyone say how to send a message to a Mobile application via tcp ip.My mobile must work as both server and client model.both sending and receiving process should be done in mobile and also in my desktop application. Ie. pass a message form mobile and retrive message …

0
80
Member Avatar for WargRider

Hello Everyone, As you can see, I am new to DaniWeb, and might I say this is a VERY good community. Either ways, my problem is a pretty complicated one, which I have been working on for a while now, 2-3 weeks. I am assigned by my team to create …

Member Avatar for Nick Evan
0
399
Member Avatar for alphaman1101

Im creating a simple program. (soon to be vastly complex) that is connecting to a server, and sending an authentication code to connect. I got the connection part, but what keeps breaking up is the method of authenticating. I have the entire authentication process in a while loop, so that …

Member Avatar for alphaman1101
1
170
Member Avatar for twistedphrame

Hello all, I'm having an issue with getting the ip address of a client accessing an xmlrpcserver, some of the time the code will work and then when I go to transfer the classes/methods (copy and paste) into my other file neither work and both have the same error: Server: …

Member Avatar for Gribouillis
0
229
Member Avatar for Joelles

Hi, coding a IRC Bot I have came across this when I tried run in debugging. NullReferenceException was unhandled @ this code [CODE]// Send PING to irc server every 15 seconds public void Run() { while (true) { IrcBot.writer.WriteLine(PING + IrcBot.SERVER); IrcBot.writer.Flush(); Thread.Sleep(15000); } } }[/CODE] Complete code of files: …

Member Avatar for Geekitygeek
0
149
Member Avatar for david cashin

I have a website that i have uploaded an applet to. In the same dir as the applet, I have uploaded three textfiles that the program uses. The applet works perfectly in the appletviewer runing off of my computer, but when i upload the class online it seems that the …

Member Avatar for kvprajapati
0
147
Member Avatar for sasidhars

i write the procedure for login in this user can give username or emailid for the login. this is my code.... please check is there any change is required for this [code=text] ALTER procedure [dbo].[users_login] (@username varchar(50),@password varchar(50), @emailid varchar(50),@ret int output) as begin select username,password,emailid from users where( username=@username …

Member Avatar for padtes
0
110
Member Avatar for Heinz Stapff

Hi everyone, I have a table that is written from 'display' window to 'register' window. It is a CART TABLE. It is suposed to cut down on posts to the server and is written entirley with client side javascript. There should really be ony one post to the server when …

Member Avatar for Heinz Stapff
0
652
Member Avatar for Ramez05

just starting today ive been getting popups from IE while on firefox or google chrome. these popups are also using the firefox and google chrome logos on the corner of the page despite being a pop up from IE. i ran every virus scan program i had but have been …

Member Avatar for jholland1964
0
329
Member Avatar for woznickis

I'm new to ASP. I have a simple contact form - text fields only - and the results are emailed. But I can't get the page to display. I get a Runtime Error. [CODE]<%@ Page Language="C#" MasterPageFile="~/SiteMaster.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="contact_me_Default" Title="Untitled Page" %> <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <div id="iCntnr"> <div …

Member Avatar for kvprajapati
0
106
Member Avatar for itsbrad212

I am making a twitter client in python and wxpython. As of now, my static text is not printing. How can I change this code so it will print out what I want it to? [CODE]import wx import twitter class main(wx.Frame): def __init__(self,parent,id): wx.Frame.__init__(self,parent,id, "Twitter Client", size=(700,400)) panel=wx.Panel(self) menubar = …

Member Avatar for Stefano Mtangoo
0
147
Member Avatar for kanuri1

help me please........... here iam writing code for client side validations....... but the code is not properly working..... it will not show any error messages....... here my code is given below..... iam working asp.net with vb.net sql server database..... please check my code and give me the correct code........... [code] …

0
58
Member Avatar for victorzhu

HELP my computer has a problem even though its connected to internet, nothing that requires internet connection works. ive tried so many methods such as winsock. my computers internet was working fine until i was trying to download mcafee anti virus. suddenly it said i wasnt connected to internet and …

Member Avatar for Pelucid
0
272
Member Avatar for johnbutt

I am going to do a mail portal(i need to connect to a client server from the user client, the client server should have an SQL database) what should i choose from these three ? can u add reasons please socket programming with c# web service programming with c# or …

Member Avatar for kvprajapati
0
35
Member Avatar for thobanco

Site is working fine in mozilla and safari but not in Internet explorer. I am also trying to figure out how to put a picture next to the name on the other side. [B]Below is the css and the xhtml codes[/B] [B]CSS [/B][CODE]/* layoutstyles.css */ /* Background color of box …

Member Avatar for servicecycle09
0
211
Member Avatar for jacob22

Firstly, apologies if this is in the wrong place, I couldn't find an alternative topic where this would be more relevant. Feel free to move it if you can think of a better place for this thread. I've been encountering an issue with apache's mod_rewrite that I can't find a …

Member Avatar for pritaeas
0
86
Member Avatar for KerRoy

Hello, I try to send a string of numbers (It has to be string) from one pc to the other pc throught tcp and com (serial). I use xampp as my server. I always get the same errors: 'Warning: fsockopen() [function.fsockopen]: unable to connect to 192.168.50.20:12344 (A connection attempt failed …

Member Avatar for ShawnCplus
0
77
Member Avatar for karthickparthi

[code]import java.awt.BorderLayout; import java.awt.Color; import java.awt.Container; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.net.ServerSocket; import java.net.Socket; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JPanel; import javax.swing.JProgressBar; import javax.swing.JScrollPane; import javax.swing.JTextArea; …

Member Avatar for JamesCherrill
0
95
Member Avatar for Olliepop

Hey guys :) I am stuck on this piece of code i am about to give below. What happens, is the server sends a "ping" to the client, the client sends "pong" back, but when the server sends "pong" back to the client (i KNOW this is sent) the client …

Member Avatar for JamesCherrill
0
216
Member Avatar for nsjoe

I'm new to using delegates and invoke methods. Can someone please quickly identify what I'm missing here. I know this code is no where near completed right now, but as is, it's working for what I'm trying to test. Basically I'm creating a simple client application that is receiving a …

Member Avatar for sknake
0
987
Member Avatar for BWN

This is for all of you developers out there who have busted their tails to produce a quality product. I have built a fairly complex website utilizing VB.NET with a SQL Server back-end. The database itself has over 20 tables and thousands of records. The other day I got an …

0
46
Member Avatar for sfrider0

I just need to be able to get and read the text in my gmail inbox using c#. I've googled it but mostly all I found was how to send, which I already know how, email. I just want to connect to my own account. I don't need to get …

Member Avatar for sfrider0
0
204
Member Avatar for Shaikh Mohsin

Hello Friends, I have a small IP scan code written in shell script,i want my code should get executed as kernel get booted....plz tell how can i insert that code into new kernel...what are the steps should i follow..... My aim of putting the IP scan code in kernel the …

Member Avatar for gerard4143
0
216
Member Avatar for coolguy20

Hey Guys, I appreciate any and all help. I'm trying to print out the results of a query I've made to another server using the nusoap client. I'm successfully sending my XML Array to their WSDL web service and they are sending an XML response back. <RESULTS><TEXT>Success</TEXT></RESULTS> However all < …

Member Avatar for mitcrellim
0
199
Member Avatar for dand122

I have a HP Pavilion dv8000 laptop that is about 3+ years old. It has been great until recently. I don't know what I got into but I know I'm infected. For about a month now my computer is super slow, not just on the internet. My screensaver freezes up, …

Member Avatar for BrianDSy
-1
349
Member Avatar for talk2sachi

hey friends I have install mysql on my centos linux systam successfully. Here are the steps install rpms 1) MySQL-shared-5.1.42-0.glibc23.i386.rpm 2) MySQL-client-5.1.42-0.glibc23.i386.rpm 3) MySQL-server-5.1.42-0.glibc23.i386.rpm rpm -ivh package name to check if it is install or not rpm -qa | grep -i mysql after installing server if it showing error like …

0
113
Member Avatar for architact

Hello, I am developing a site and right now I am facing a problem when I try to upload the code on the server, everything is fine and working there except the flash files, the ".swf" files are showing on the page when access them through the website but they …

Member Avatar for hemgoyal_1990
0
94
Member Avatar for GuyClapperton

This is odd, to my thinking. The founder and owner of the UK file sharing peer to peer site Oink (great name) has been acquitted of conspiracy to defraud. In spite of earning $18,000 per month from people downloading from the site because people would send donations in order to …

Member Avatar for InsightsDigital
0
128
Member Avatar for keeperx

I am attempting to write my first c++ program. It is a bot that will me used to connect to a Multi User Dungeon. The premis is this The application will open a server on a specified port on the local machine, and also connect to the MUD server. The …

Member Avatar for keeperx
0
261
Member Avatar for deepakrao.tech

Hi, I am trying to write a soap client to connect to the hosted webservice of GlobalWeather. But i am getting lot of execption. I am posting the client and exception. If someone has as sample client code to connect to Globalweather that would be helpful. [CODE=java]package samples.hello; import org.apache.axis.client.Call; …

0
126
Member Avatar for filch

Hi, I am trying to get a perl script that a contractor created for me but I am having some issues with it. I am NOT a perl programmer and I know just enough about it to be dangerous. I am more of a PHP/CSS guy. Anyway, the purpose of …

Member Avatar for filch
0
227
Member Avatar for horsemuleman

Hi. I recently starting getting redirected to misc. sites when clicking on Google, Bing or Yahoo search results. Was using McAfee and found nothing. Uninstalled McAfee and downloaded Kaspersky and found 6 trojan viruses. Cleaned them and still have the same problem. Spybot and Malwarebytes find nothing as well. Could …

Member Avatar for horsemuleman
0
189
Member Avatar for tania khan

[icode] Hi all there, I need your help in my project of "online examination”. I am developing this for my lab. frontend: ASP backend: SQL Server 2000 Now the requirements r: 1. I have to generate papers which randomly select 100 MCQs from table and displays on client computers. The …

Member Avatar for PRAGYACHITKARA
0
235
Member Avatar for blasata

Hi all, I have a problem with winsock in c++ while developing a client program: - When I send the first, it is ok, appears in the Server, but the other "sends", in the server appear as a empty string! the send command return is Ok, the number of bytes. …

Member Avatar for blasata
1
203
Member Avatar for vinekuma

Logfile of Trend Micro HijackThis v2.0.2 Scan saved at 8:57:04 AM, on 1/9/2010 Platform: Windows XP SP2 (WinNT 5.01.2600) MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180) Boot mode: Safe mode with network support Running processes: C:\WINDOWS\System32\smss.exe C:\WINDOWS\system32\winlogon.exe C:\WINDOWS\system32\services.exe C:\WINDOWS\system32\lsass.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\WINDOWS\Explorer.EXE C:\Program Files\Internet Explorer\iexplore.exe C:\Documents and Settings\vkumar1\Local Settings\Temporary Internet Files\Content.IE5\BNGLZCDG\HijackThis[1].exe …

Member Avatar for jholland1964
0
301
Member Avatar for Aritz R

Hi there! First off I´m new here, so, I'd say HELLO EVERYONE an thanks for years helping. I have the following problem: I need create a installation of a C# app that uses a SQL SERVER 2008. I am using INNO Installer because I thought it could be the best …

Member Avatar for sknake
0
266
Member Avatar for tanha

Hi, 1. I have an application, which just display the user login time and and a welcome message on all my clients 2. I have another separate application, which is for monitoring purpose on the server, and display list of logged user. I would like to select an user and …

0
69
Member Avatar for Joe1992w

Hi Guys, I could use some help, recently some of my google seraches have been redirected to seemingly unrelated content or to use another search engine, this doesn't happen to all seraches and the ones it does effect seem to be unrelated and at random, i have run a Hijack …

Member Avatar for jholland1964
0
105
Member Avatar for Compudog

Having problem networking two computers with a game I designed. I am using java, i have written a file that will comunicate with the server as its own thread, and it works fine with the server application when run on its own. However, when i run the client thread within …

Member Avatar for Salem
0
77
Member Avatar for sayeedbd

Hello All, I am trying to lock some my video, picture, Excel and Word file in my PC by using Visual Basic. I am using Visual Studio 2008 to develop this application but I am unable to do this job. It'll be something like security utility application. Actually without me, …

Member Avatar for sayeedbd
0
191
Member Avatar for vipin saxena

hi all, and respect for seniors & experts, i m a free lancer vb6 programmer and wants 2 shift 2 web development. i m very much confused as 2 which combination of technologies 2 opt. to opt for open source or not., which client side technology and which server side. …

Member Avatar for vipin saxena
0
97
Member Avatar for good_c_ryan_19

Help Pro's :'( I am a newbie in VB.NET .....I am using Sql Server Express 2005 as my database... I am currently working with my THESIS... A Human Reources Information System that concerns only with the file and record management of the employees... With two modules. a. Administrator for HR …

Member Avatar for good_c_ryan_19
0
156
Member Avatar for breakbone

hi all I'm writing a application which uses Opencv and wxWidgets and sends camera frames via a socket connection. But it seems i'm doing something wrong: after starting a server on my machine, i can't connect my application to the socket the server is listening on...why is that? [CODE=python] import …

Member Avatar for breakbone
0
105
Member Avatar for prushik

I am trying to write a TFTP server. I have successfully completed the code, it is fully RFC 1350 compliant. However, I wrote the whole thing in Haiku OS, and in Haiku, it works great. However, I also need a DHCP server, and I don't have one for Haiku. So …

Member Avatar for prushik
0
241
Member Avatar for vedatsivri

Hi Everybody; I wrote a class that uses boost library to create thread. My thread function just do select operation for mysql database. Besides, I developed a client program to test server side, but server side gave 'segmentation error ' after fourth client request via socket. [CODE] void Thread::Start(void (*function)()){ …

Member Avatar for Salem
0
101
Member Avatar for gunnarflax

Hi, I created a script which I use to clean my database from missing entries. With it I both check if a file on the server is missing a database entry and if a database entry exist with no corresponding file on the server. The user first submits a form …

Member Avatar for gunnarflax
0
149
Member Avatar for sandorlev

Hello, I've been working on this self-made database. What do you think about it? What features should I create for it? I'd also like to get help in a select method, because I don't have the foggiest idea how it could be done. And what about making it a database …

0
243
Member Avatar for nats01282

Hello all. im new to mySQL database so dont know very much so sorry if its a daft question. I have a mySQL database with a company called 5quidhosting but my hosting is with heart internet. Can i get a web page hosted with heart to access the database on …

Member Avatar for nats01282
0
369

The End.