Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
520 views

Inconsistent ajax (XDR) response from IE

I'm making an ajax request from an iframe that is injected onto every page via an IE plugin. I'm using IE's cross domain request because jQuery's ajax fails for IE. This works 75% of the time on IE8 ...
1
vote
3answers
124 views

How to send HTTP requests without opening up windows in Javascript?

Now I'm trying to open a series of URLs with window.open for(i=0;i<10;i++) { window.open("myapp://arg1/arg2/arg3/number_"+i); } It works fine except popping up ten windows.And I wonder if ...
0
votes
0answers
54 views

Cannot send data with post by xdr to restful web service wcf

How can I send data with post by xdr: [OperationContract(Name = "app")] [WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json,UriTemplate="app",BodyStyle=WebMessageBodyStyle.Wrapped, ...
0
votes
2answers
33 views

Shared XDR routines and pointer to .rodata section

I used rpcgen to generate the client and server stub for program I'm developing. So, the stubs use XDR to encapsulate data and send them through the net. When I execute this piece of code, a ...
0
votes
0answers
23 views

Cmake linking error with mingw-portableXDR

I'm trying to cross compile a c++ app under Fedora. It uses XSD codesynthesis to generate code from a xml file. I use serialization (XDR) not very portable I know. MinGW32 comes with a library that ...
0
votes
0answers
97 views

Long Poll and IE's XDomainRequest Object

I'm trying to implement a chat app that uses long polling to get messages from a remote (cross domain) server. Is there any way to do this with a XDomainRequest? It seems my connections always get ...
0
votes
0answers
173 views

RPC in C with rpcgen using custom datatypes

I'm learning to use rpcgen in C. I have an essentially "hello world" type project working that transmits doubles both directions. However, I'd like to return a GdkPixbuf instead of a double. How ...
0
votes
0answers
116 views

Problem reading in file written with xdr using c

I am using Ubuntu 10.4 and have two (long) C programs, one that writes a file using XDR, and one that uses this file as input. However, the second program does not manage to read in the written file. ...