|
RPC clnt_create fails with RPC_UNKNOWNPROTO error. When I run this (under Cygwin):
Code: #include <stdio.h>#include <stdlib.h> #include "rap.h" #include <rpc/rpc.h> clnt = clnt_create("s4c",300456,1,"TCP"); if(clnt==NULL) printf("Client...
Started by evb@studioe.com on
, 15 posts
by 3 people.
Answer Snippets (Read the full thread at cprogramming):
Read....
"tcp" and "TCP" are different.
Share Share.
I would try Cygwin's Mingw libs but only one Cygwin library a function that can execute a Unix RPC call and pass the data to a win32 64bit CAD system.
I know the RPC server side functions.
|
|
Hi there, I'm running jboss-4.2.1.GA to generate WS requests.
I have created the WS client with the help of JWSDP-2.0/JAXRPC. I have deployed the client to Jboss and I am now trying to send requests.
When I try to initialise the client service: javax....
Started by Lucas T on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That's the problem when.
Solved the issue by implementing the solution suggested from JAX-RPC in JBoss 4.2.3 post:
To jump was there, in front of me in black and white and I didn't implement it properly.
|
|
I'm trying isolate a problem I'm having making an XML RPC call:
XDocument doc = new XDocument(); doc.Add(new XElement("methodCall", new XElement("methodName", "send"), new XElement("params", new XElement("param", new XElement("value", new XElement("string...
Started by John Sheehan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What happens if you call writer.Flush(); after you save the XML?
I'm not sure why this doesn't time out, but maybe it doesn't time out as no request is being made due to the fact that writing is buffered?
I ended up using http://www.xml-rpc.net/ instead... .
|
Ask your Facebook Friends
|
Hi, I'm having a problem with the XML-RPC communication. I have a XML-RPC Client made in Java with Apache XmlRpc and a XML-RPC Server made in PHP with PEAR's XML_RPC. The problem is that i get a "HTTP server returned unexpected status: Not Found" error...
Started by Hypnus on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Debugging, here some information from the PEAR XML_RPC documention:
setDebug()
$client->setDebug includes the raw data returned from the XML-RPC server it was querying, and the PHP value the client.
|
|
I've run through the Google Web Toolkit StockWatcher Tutorial using Eclipse and the Google Plugin , and I'm attempting to make some basic changes to it so I can better understand the RPC framework.
I've modified the "getStocks" method on the StockServiceImpl...
Started by Templar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
StockService.java: package: [1244408678890000] javax.servlet.ServletContext log: Exception while dispatching incoming RPC call: java.lang.NullPointerException: Name is null
Let....
That the RPC call returns StockClient[] instead of String[].
|
|
Hello,
I'm building my own ajax website and I'm contemplating between REST and RPC.
If my server supported Servlets I'd just install persevere and end the problem but my Server doesn't support Servlets.
RPC is simpler to code (imo) and can be written ...
Started by the_drow on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
RPC it the idea, that you call a procedure on a different machine ful (although it does....
Well at least that's the idea) ...
A big problem with RPC is that it uses ...
Naming conventions, which are out-of-band and non-standardized.
|
|
Can anyone suggest a good reason to use web services instead of RPC (not xml-rpc) as a comms channel between two C++ processes both of which will be developed by the same team? Note: Web services do not guarantee ordered delivery!
Started by Jesse Pepper on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
In your case RPC....
If your application's processes all live on the same machine and you need to communicate between them, RPC to communicate.
If you dont need any of these, or never will, then there's nothing wrong with RPC at all.
|
|
I am trying to get an understanding of how I can use SOAP or XML-RPC to create a remote, open API for my product. Problem is, part of my API will require me to be able to get events pushed from my server to the client - I will need to be able to "send...
Started by Tsahi Levent-Levi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
That works fine with CORBA....
There are two ways to do notifications in an RPC system: the push model, and the pull model, the client may have a blocking RPC call that blocks until the next event becomes available, and then returns right away.
|
|
I am using XML-RPC as the interface to my project's Java web service, and I need to document it. It's really more than simple documentation. It is intended to be a document that will explain why XML-RPC is being used, how to use it with different languages...
Started by William Brendel on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Technology, what feature made it possible to come up with a solution for the problem you were trying to mitigate this problem is to take a lot of care to explicitly identify the "directives" among on this and have a tool for Java (not XMLRPC....
|
|
My application uses Microsoft RPC for interprocess communications. When two processes are run on the same machine and one process tries to call a method declared as (IDL notation):
error_status_t rpcMethod( [in] pipe byte parameter );
this call fails ...
Started by sharptooth on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Windows Vista: Currently value is specified for this parameter....
RPC_NOTIFICATIONS enumeration value that specifies the type of notification requested from RPC by the server.
You are most likely using a method that is unsupported in Vista .
|