Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
2k views

Bus public transport algorithm

I am working on an offline C# application that can find bus routes. I can extract the timetable/bus/route data. I am searching for the most simple solution that will work with basic data. What ...
6
votes
1answer
995 views

Python: How can I use Twisted as the transport for SUDS?

I have a project that is based on Twisted used to communicate with network devices and I am adding support for a new vendor (Citrix NetScaler) whose API is SOAP. Unfortunately the support for SOAP in ...
5
votes
2answers
869 views

Network or Transport Layer Fuzzing

How do I go about executing a fuzzing strategy to stress a network stack, specifically at the third and fourth layers (network and transport)? I've looked at frameworks to generate fuzzers, like ...
4
votes
6answers
6k views

Can Prototype or JQuery return an HTTP status code on an AJAX request

url = "http://example.com" new Ajax.Request(url, { onComplete: function(transport) { alert(transport.status); } }); I'd like that to return a status of 200 if the site is working, or 500 if ...
3
votes
3answers
77 views

how to send the content in a list from server in twisted python?

I have a list related to multiclient chat server problem. This is the list ['talk', client_n, message]. How can I send 'message' to 'client_n' from the server in twisted python using ...
3
votes
2answers
536 views

Why does named pipe WCF service reject Windows service clients?

On Windows 7 and .NET 4 I'm getting some very weird effects from the WCF named pipe transport when my WCF client is a Windows service. My WCF service is hosted in a user mode app and exposed over the ...
3
votes
1answer
270 views

sending data between server and client in twisted

I'm trying to transport data between server and client implemented with twisted. As far as I know, using self.transport.write([data]) will work only if data is a string. Is there any other way I can ...
2
votes
1answer
102 views

How can an Audio Unit detect start and stop of its host?

How can an Audio Unit component detect start and stop of an Audio Unit host? Within the component's Kernel Process(), I tried with the CallHostTransportState(...) method, which returns whether the ...
2
votes
3answers
431 views

Control VST Host Transport from a VST Plug-In

I would like to control the transport (play/stop) of a VST host from within a VST plug-in. It is clear that the sendVstEventsToHost method provides a mean to send commands to the host, but these ones ...
2
votes
1answer
462 views

New transport and reader type in Twisted

I'm trying to add a new transport to Twisted, which will read data from a stream - either a file in a tail -f way, or from a pipe, but I have some problems with Twisted architecture. I've got the ...
2
votes
3answers
200 views

Benefit cost analysis libraries

I was wondering if there are any opensource libraries that are geared towards transportation ben/cost analysis. I currently use microBENCOST and would like to build my own solution. I'm most ...
1
vote
0answers
48 views

Thrift IPC over pipes transport (Windows)?

I've been following Thrift support for Windows and VS development has come a long way thanks to a number of contributors. There are VS 2010 projects for the compiler and C++ library and I've confirmed ...
1
vote
1answer
80 views

Is there a DirectShow TS muxer

Does anybody know, is there any Direct Show based MPEG transport stream muxer available? All I can find is a command line utility tsMuxeR.
1
vote
1answer
284 views

WCF basicHttpBinding with Transport security specifying message credential type

I've been given a wsdl for a service which VS2010 generated the following binding as part of it's configuration. <bindings> <basicHttpBinding> <binding ...
1
vote
2answers
142 views

Ports with C++ Server/Client applications

If I create a c++ server/client application, the port I used to communicate does it need to be open on the router of the server and client machine Or what other approach could I take? the client ...
1
vote
1answer
390 views

XMPP transport to another protocol

I would like to add support of ICQ in my application using jabber-transport. I use xmpp4r ruby's library. All that I found doesn't show how to login to external (icq) server and how to send messages. ...
1
vote
0answers
93 views

Web Server to WCF Server Security using netTCP

I am writing a web application to be run on multiple Web servers accessing multiple WCF servers which will provide the business logic and data access. I would like the fastest throughput between the ...
1
vote
2answers
198 views

How is “Application Layer” different from “Transport Layer” of the TCP Network Model?

Q. How is "Application Layer" different from "Transport Layer" of the TCP Network Model? I am a student learning about the basics of networked programs. This was one of the questions given in the ...
1
vote
1answer
128 views

Is it possible to create a BrowserSession for Direct TCP transport?

My BlackBerry app opens BB Browser to display a web page for users. There is BlackBerry KB doc "How to - Invoke the browser" on how to do it. The doc says there are the following types of transports ...
1
vote
2answers
104 views

nearby transits info by lat/lon

i have latitude and longitude of a location and i want to find nearby transit info of that location, just like how google does it on there google maps detail page.
1
vote
2answers
122 views

Hooking into the Transport layer of WCF

I want to prepend the following text to the response body of a WCF operation: <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet href="transform.xslt" type="text/xsl" ?> Problem is ...
1
vote
2answers
592 views

Anonymous clients connecting to WCF

This article from Microsoft details how to implement transport security with an anonymous client. http://msdn.microsoft.com/en-us/library/ms729789.aspx I'd like to know if it is possible to achieve ...
0
votes
1answer
43 views

Send emails in symfony

I'm using swiftmailer (transport) in symfony 1.4.8 (and Doctrine as ORM) to send my mails. I've configured everything as the book says. dev: mailer: class: sfMailer param: ...
0
votes
0answers
33 views

RTP implementation and robustness

I wanted to know how the Real-Time Protocol is implemented in practice, especially in regards of robustness with respect to the following issues: network jitter clock skew/instability packet losses ...
0
votes
0answers
36 views

XMPP4R icq transport troubles

jid = Jabber::JID.new('....@jabber.ru') j = Jabber::Client.new(jid) j.connect j.auth('12345') if i trying to send message through transport it responds to me SENDING: <message ...
0
votes
0answers
29 views

Wcf transport vs message security

Im still confused about wcf transport security in that it can only support hop to hop. Does that mean if I host a service that is not on a local network then transport security cannot support this? ...
0
votes
1answer
16 views

Processing web hosted CSV data automatically

I am new to the world of web programming so hope that this question is not too ambiuous! Can anybody tell me if the following is possible? I am trying to do a proof of concept on using data from the ...
0
votes
1answer
83 views

GTFS and multiple routes

I am working with GTFS format.I have a concern for example consider a little complex network where a user want to travel from a source 'A' to Destination 'B' and actually there exist no direct route ...
0
votes
0answers
35 views

Public transportation - column generation

I'm working on a sheduling problem of public transportation in a city. We want to use a column generation method but Im not sure how the additional columns are generated. I would like to ask if a ...
0
votes
0answers
85 views

A transport-level error has occurred when sending the request to the server. please help

I have been facing a problem for several weeks now and just cant find the solution. Checked many places online and tried many things but I keep getting the following error in my application: ...
0
votes
2answers
260 views

Configuring WCF Transport security for IIS6 over SSL

I've been attempting to set up WCF transport security using SSL on IIS6. The client is on a seperate machine on the same domain. I understand the premise of certificates, root CA etc and have a ...
0
votes
0answers
395 views

org.springframework.jms.listener.DefaultMessageListenerContainer - Could not refresh JMS Connection for destination 'queue://platform-receive'

Eclipse console writing following warning log, while running an spring application on Tomcat 6.20. with Java 1.6 2011-06-15 00:16:02,515 20650176 [jmsContainerPlatformReceive-1] WARN ...
0
votes
0answers
64 views

master.cf not changing values in postfix causing weird headers

i'm having an issue with one of my servers. the server has about 8 domains being hosted, some on different ip's. the headers for the outgoing mail look like this: Received: from 127.0.0.1 (EHLO ...
0
votes
2answers
119 views

Transport not work for sending smtp email in java

I am using : transport.connect(getHost(), getPort(), getUsername(), getPassword()); to send email, but it always gives me the following exception: class ...
0
votes
0answers
197 views

android SMTP issue with MS Exchange Server

I have an Android email program, it works fine when sending email thru SMTP webmails. It does not work thru MS Exchange Server SMTP. Any idea why? The Android config is: uses-sdk ...
0
votes
1answer
152 views

AppFabric Caching transport security

I'd like to understand how security works in Windows Server AppFabric Cache. If i have it defined like <securityProperties mode="Transport" protectionLevel="EncryptAndSign" /> how does it ...
0
votes
1answer
405 views

Set transport security on WCF binding using IEndpointBehavior?

Is there a way to set the transport security normally specified in the config of a basicHttpBinding at runtime, possibly by implementing IEndpointBehavior? Essentially take this: <binding ...
0
votes
2answers
416 views

Transport Filters in Delphi XE Datasnap

When I try to create a custom Transport Filter for datasnap and use it, when I run the client app i get an error stating: Exception TDBXError in Module ProjectAdminClient.exe. Filter Log Rejected ...
0
votes
2answers
752 views

rg.apache.axis2.AxisFault: Transport error: 403 Error: Forbidden

I am trying to access a webservices over https, I have the ssl certificates in place. However when I send the webservice request I am getting: threw exceptionorg.apache.axis2.AxisFault: Transport ...
0
votes
1answer
232 views

Java OSI Transport Layer

I'm working on a project where I need to communicate with a device using the transport layer. The network connection will be OSI/CLNS over IP. I could be wrong, but I don't believe I can use ...
0
votes
1answer
34 views

File/Data transfer between two arbitrary sources

I'm looking for a simple way to implement this scenario: Say I have two machines I'd like to share data between. The location/addresses of these machines can change at any time. I'd like both ...
0
votes
2answers
129 views

WCF using Transport always attempts to use HTTPS when I don't want it to

I keep getting the following error "Could not find a base address that matches scheme https for the endpoint with binding WebHttpBinding. Registered base address schemes are [http]." This started ...
0
votes
2answers
473 views

Mule: What's the difference between a multicasting-router and a static-recipient-list-router?

I can't really see a difference between a multicasting-router and a static-recipient-list-router. Why would I use one over the other? According to Mule-2.x user guide Recipient List the ...
0
votes
1answer
552 views

C# / .Net stock tick data transportation libraries / API?

I am currently trying to find a simple, easy way to publish/broadcast stock tick data (real time) between C# applications. I am currently using nServiceBus for some other publish/send message ...
0
votes
2answers
1k views

How to speed up serialization and transport for large object graphs; WCF 3.5 & SL3

I have a 3.5 SP1 project, WCF service which is limited to consumption by Silverlight 3 clients. Due to the business requirements we have to work with large object graphs that are hydrated via SQL ...
0
votes
0answers
70 views

TryReceiveRequest gets called infinite times

I have built a custom binding for being able to receive HTTP messages from an additional source. However, it is not bug-free yet. I've observed that my service pushes CPU usage up to 100 % as soon as ...
0
votes
2answers
1k views

How to Consume JSON Web Services from a Windows Client

Is it possible to consume a JSON enabled WCF Web Service from a standard Proxy Client ie not Javascript? Basically I want to minimize the payload size between 2 web services.