client

Where are my Siebel Business Services?

Hi, in Siebel I can create Business Services at 2 locations: Siebel Client Siebel Tools In the Siebel Client I cannot see the Business Services created in Siebel Tools, and vice versa. (After creating a new Business Service in Siebel Tools, I compiled it - no errors reported - and ran the client with "Debug" from the Siebel Tools ...

Generate headers in Twisted client

Hi All, i'm using the Twisted web "HTTPClient" protocol to dialogue with a http server (using twisted app as a client), the problem is that most of my request do not accept my header. Is there some sort of way (maybe using certain libraries) to generate header?? I'll post some code so you can have a look class Local(HTTPClient): def gen...

Minimum requirements for a development environment

I have been tasked to provide an overview of requirements for the setup of a development environment for a relativity new business unit within a financial services institution. I had initially put together some aspects that focussed on doing some Requirements analysis and focussed on Infrastructure, Software and Processes and Procedure...

WCF & Java Interop - Please help

I’m trying to get a simple WCF application work with Java Client. Service exposes few simple operations using WSHttpBinding, which it does perfectly. Now, due to some reason (probably due to incomplete WS-* specifications at Java side) it seems impossible to generate a Java Client for this WCF service hosted on remote system. However...

WPF - slow service init connection

Hi, I am developing a small WPF application which is using web service. The web service is only available for internal users and they have to be logged in to their machines to be able to use it - it is using windows credentials. Everything works well except the connection speed. It takes around 10 sec to initiate the connection and do...

Designers and developers - what tools do you use to get feedback on your concepts and pre golive releases?

What works best for you and how do you collate the feedback? ...

detecting server crash during long-polling http request

I have a Java client that uses HttpClient to connect to a server and wait a response. The response may return after a long time (the client essentially waits for an event from the server). Other than using timeouts, is there a way to detect when the server crashes? ...

QLocalServer with multiple clients -- proper handling

I'm trying to make IPC work between one server to accept requests from multiple clients with Qt 4.6. All is working, except that the underlying named pipes are not being closed, making Qt to emit the maximum handle reached message (62). Since I want to accept several client connections, I handle newConnections to the QLocalServer class ...

Client/Server are always separated! Or are they?

Its amazing how many programmers in the greater community of programmers ask questions like "How do I do an EXTJS backend?" or "How do I integrate jQuery with Java?", not understanding the distinction between the client and the server. Then I got to thinking, are there frameworks where the server actually sends JS or something to the cl...

Java cannot find symbol

I'm making a TCP Client in Applet mode and I get this strange error... C:\Users\Dan\Documents\DanJavaGen\ClientApplet.java:20: cannot find symbol symbol : method printStrackTrace() location: class java.lang.Exception e.printStrackTrace(); ^ 1 error Tool completed with exit code 1 teh code: import java.io.*; import java.applet.Appl...

fixed -Java Applet not loading - Client/Server

OK so I have this server and an applet... the server loads fine because It can detect when a new user loads up the client and connects... ANYWAYS.... the problem is that the Applet will not load... like... it is STUCK at the loading screen.... Here is a video explanation of my problem if you'd like: http://vimeo.com/13692709 (watch the ...

Email Client in java

Hi All, try { Properties props = new Properties(); props.put("mail.smtp.starttls.enable", "true"); props.setProperty("mail.transport.protocol", "smtp"); props.setProperty("mail.smtp.host", "smtp.gmail.com"); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.port", "465"); props.put("mail.smtp.socketFactory.port", "587"); props...

SMTP host and port value for yahoomail

Hi, I am working on to send email from my various accounts using java. And I sent mail from my gmail account successfully. Now I tried to send email from my yahoomail by changing the smtp host as "smtp.mail.yahoo.com" and port value as 25. But I am getting "SMTPSendFailedException". Can I know what changes I need to do to make it worki...

How to program an application with unknown future modifications and features?

Background I'm not new to programming, however I am when it comes to handling clients and their needs. Here's my history with my current client: I inherited a PHP application with it being 2/3 completed, continued to make it 100% completed until the client wanted (major) features that caused the application and database to need to be re...

Authentication client-server using message queues in c language

Hi all ... I'm working on this project about how to develop authentication server that serves multiple clients at a time the client gives the name and password as request and the server authenticates the request and returns the result ... ALL communications between client and server should use message queues techniques ...and i want it ...

twisted web getPage, 2 clients in 2 classes, manage events between the two

Hi All, i'm trying to create a bridge program in twisted.web that receives data from a web server and sends it to another server, thus i'm using 2 getPage applications that i have wrapped in a class for convenience, the class contains all the callbacks and the client "routine".. 1)auth 2)receive data 3)send data, all this is done in a c...

WCF SelfHosted Remote Access

Hello friends, I try to develop a WCF Service which I can able to access remotely but it's getting difficult for me to implement that in a remote machine I have developed a WCF Self Hosted service and also prepare a client that can run on a local machine easily but I don't able to understand how can I access that service from remote mach...

beanstalkd c client library

We are going to implement a fairly complex new service in an asynchronous way, introducing asynchronous processing as well. For this, we have selected beanstalkd message queue service, as it fits best for our needs. The problem is that beanstalk seems to miss client API in C, at least I have failed to find it. I do not want to invent t...

client side error handling

Hello....I have a .Net 3.5 app that is throwing a null reference error in JavaScript that is generated by a third party control. I know how to debug through IE and Visual Studio. However, I need to trap this error (similar to try/catch) and present a user friendly message. What is the best way to accomplish this on the client-side? ...

How to check if user is still present?

Hi everyone Is there a way in ASP.NET to check if the browser where the page was requested is still open? If the browser is closed, a way to stop the request's rendering. Thank you ...