Hello everyone,
I'm interested in building a JBoss service. Because I'm reusing some existing code, the service must be able to talk SSL/TLS and Protocol Buffers.
The documentation I see on the JBoss wiki makes it look like services have their transport and data interpretation handled by JBoss itself. Is it really the case?
How could I implement…
I found this question being asked on several places on the internet (including the File protocol MSDN page) but no clear answer.
So, if I am calling my application like this:
file://c:\myapp.exe
is there any way to pass it some command line arguments, like /nospashscreen=true
Things I've tried:
file://c:\myapp.exe?/nospashscreen=true -…
I am a developer a large social network.
Does the protocol OAuth without browser? I plan to write desktop and mobile applications that can not use your browser to get access_token. It worries me step for get Access_token, I can not understand how to implement it.
Give examples of code if possible ...
Hi All.
Using Google Protocol Buffers, can I set a maximum size for all messages I encode?
if I know that what I encode is never larger than X bytes, then Google Protobuffs would always produce a buffer of size Y, and if I give it a smaller amount of data, pad it to size Y?
I have this situation....
Client-initiated SOAP 1.1 communication between one server and let's say, tens of thousands of clients. Clients are external, coming in through our firewall, authenticated by certificate, https, etc.. They can be anywhere, and usually have their own firewalls, NAT routers, etc... They're truely external, not just…
Hi all.
I was wondering when connecting to a git repository, does the git+ssh protocol use the same port number as just using the git protocol. For example:
git://example.com/git/helloworld
git+ssh://root@example.com/git/helloworld
I am trying to push to a remote repository that has port forwarding setup on only the git protocol port…
Hello everyone,
I have coded a server that uses Protocol Buffers in Java. A client talks to it using PB.
I'd like to migrate the server code to J2EE and take advantage of the containers' built-in features like clustering.
How can I have a service that receives PB messages and interprets them properly, and then gets them handled?
I…
I have started reading some of the posts related to protocol buffers. The serialization method seems very appropriate for the transfer of data to and from web servers. Has anyone considered using a method like this to save and retrieve data on the mobile device itself? (i.e. a replacement for a traditional database / orm layer)
…
Hi there,
I'm attempting to send a .proto message from an iPhone application to a Java server via a socket connection. However so far I'm running into an issue when it comes to the server receiving the data; it only seems to process it after the client connection has been terminated. This points to me that the data is getting…
I'm trying to send messages generated by Google Protocol Buffer code via a simple HTTP scheme to a server. What I have currently have implemented is here (forgive the obvious incompletion...):
HttpClient client = new DefaultHttpClient();
String url = "http://192.168.1.69:8888/sdroidmarshal";
HttpPost postRequest = new…
I have a subview that when double tapped a protocol method on the subview's parent view controller is called like this...
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *theTouch = [touches anyObject];
if (theTouch.tapCount == 1) {
} else if (theTouch.tapCount == 2) {
if…
There was a way to register URL protocol handlers with Gconf, which is now obsolete and there seems to be no way to do the same with DConf (or Gsettings, its recommended wrapper).
How do one properly register an URL protocol handlers since DConf?
Additionally, something looks strange to me (as I don't…
IIS URL Rewrite supports server variables for pretty much every part of the URL and http header. However, there is one commonly used server variable that isn’t readily available. That’s the protocol—HTTP or HTTPS. You can easily check if a page request uses HTTP or HTTPS, but that only works in…
Part 1 - I'm looking at Wireshark's Protocol Hierarchy Statistics screen (sample below), is the total byte count of the capture the sum of the Bytes column or just the top line (Frame)?
I'm 99% that it's the latter because of protocol rollup but I wanted to conform.
Part 2 - From Wireshark…
Does anyone with experience with these libraries have any comment on which one they preferred? Were there any performance differences or difficulties in using?
Hi,
I am trying to send a proto over a socket, but i am getting segmentation error. Could someone please help and tell me what is wrong with this example?
file.proto
message data{
required string x1 = 1;
required uint32 x2 = 2;
required float x3 = 3;
}
client.cpp
...
…
Someone has shared a Picasa web album (Limited, anyone with the link), but I can't download it to Picasa. The following alert appears:
Firefox doesn't know how to open this address, because the protocol
(picasa) isn't associated with any program.
I have Picasa 3.0.0 installed on…
We currently use XStream for encoding our web service inputs/outputs in XML. However we are considering switching to a binary format with code generator for multiple languages (protobuf, Thrift, Hessian, etc) to make supporting new clients easier and less reliant on hand-coding (also to…
In the following examples:
public class RowData
{
public object[] Values;
}
public class FieldData
{
public object Value;
}
I am curious as how either protobuf-net or dotnet-protobufs would handle such classes. I am more familiar with protobuf-net, so what I actually have…
I saw a question related to this on the full framework here. Since it seems to have stayed unresolved for quite a while and this is for the compact framework, I though it would be better to create a new question for it.
I want to deserialize types for which I am loading assemblies…
hello there,
I am trying to figure out how to send out DNS messages from an application socket adapter to a DNSBL.
I spent the last two days understanding the basics, including experimenting with WireShark to catch an example of message exchanged.
Now I would like to query the DNS…
Overview
I’m going to develop an app on Android and iOS. It will allow users to set up group ‘chat rooms’ and talk on chat rooms set up by other users. The service needs to be highly scalable, such that it could accommodate a massive increase in users overnight (we can only…
ACS v2 supports a number of protocols (WS-Federation, WS-Trust, OpenId, OAuth 2 /
WRAP) and a number of token types (SWT, SAML 1.1/2.0) – see Vittorio’s Infographic here.
Some protocols are designed for active client (WS-Trust, OAuth / WRAP) and some are
designed for…
I am looking into thrift for serialization of data. But Document says
cyclic structs - Structs can only contain structs that have been declared before it. A struct also cannot contain itself
One of our requirement is
Struct A
List of Child items
Items(Items…