- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Named Pipe Application
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 08:09 PM
01-06-2003 08:09 PM
Named Pipe Application
Any idea why this strange behavior?
Appreciate all your inputs.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 01:25 AM
01-07-2003 01:25 AM
Re: Named Pipe Application
Without knowing precisely how the message handler ensures synchronization, it seems to be impossible to tell anything specific. I personally believe there is some (perhaps small) window for a potential race condition in your handler's design.
You need to check in what state your handler gets stuck, while the pipe contains data. Maybe tracing system calls using "tusc" could be a good starting point.
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 01:29 AM
01-07-2003 01:29 AM
Re: Named Pipe Application
I think
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xc381abe92dabd5118ff10090279cd0f9,00.html
explains your options well
Steve Steel
Quote of the moment
-------------------
"We are drowning in information but starved for knowledge."
-- John Naisbitt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 01:40 AM
01-07-2003 01:40 AM
Re: Named Pipe Application
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 05:43 AM
01-07-2003 05:43 AM
Re: Named Pipe Application
In my experience, multi-platform applications which use named pipes are old-fashioned and often badly-designed, i.e. nowadays they should use a more modern IPC (Inter Process Communication) mechanism, especially if they are (as I understand is the case here), not only inter-process, but also inter-system.
Also I think that "ftp'ing the message string to the Named Pipe" is a Really Bad Idea (tm).