0
votes
1answer
15 views

cURL emulating by HTTPClient Apache

I'm trying to upload data to CrowdFlower using their api, for which I'm writing JAVA wrapper. I'm using HttpClient Apache. the cURL example CrowdFlower give is following: curl -T 'sampledata.xlsx' -H ...
0
votes
0answers
24 views

hyperlinking the table header and making it open in new Window

I am working on website trying to get Html source of remote page (the source mainly formed of html tables and each table has header) i am using the code below to get the source of this remote page: ...
-2
votes
0answers
17 views

convert curl POST call into java urlconnection in twilio [closed]

I am trying to curl post command to java using urlconnection(HttpURLConnection) but it doesn't work. so please tell how to solve the problem. I have curl command is: curl -X POST ...
0
votes
1answer
41 views

Java equivalent of PHP curls instruction

I've been tasked to translate an api from php to java. The problem is when I have to call to the Api, it uses the curl library, which I don't even know that well in php, and I'm having a hard time ...
-6
votes
0answers
37 views

Script to Grab a Links from a site [closed]

I am interested in the download link of a website. Each page of the site contains 6 posts and each post contains a download link.There are around 900 pages , so aroung 5500 links to capture. Page ...
-3
votes
0answers
24 views

What is the java equivalent code for the given curl command with -T? [closed]

Please can any one let me know the java code for the given below curl command? curl -i -k -T test.txt ..... Basically I try to upload a file and here this command has -T without any PUT or POST ...
0
votes
1answer
44 views

Method of extracting data from a website?

I'm a bit new to web programming these days and I had a couple of questions. I want to grab data from a website (for example, the names, identification number, and list of resources someone is using) ...
2
votes
2answers
64 views

REST API Design sending JSON data and a file to the api in same request

I am creating a REST API on top of an existing application. One of the features takes in a json data along with a file uploaded by the user. I am unsure how to send a file AND json data in the same ...
0
votes
1answer
34 views

How do I convert a curl statement to a Java process?

I have this curl statement and I'm trying to convert it to something I can use in a java program for testing purposes: curl -v -k -X POST -H 'Content-Type: application/json' -d '{"auth_data": ...
0
votes
3answers
117 views

Can PHP make HTTP Get request to Java?

I'm trying to make communication between PHP and Java. Here's what I want to do. PHP pass a parameter ID to a Java file. The Java get the ID and run some script and return a, ARRAY to the PHP. I ...
-4
votes
1answer
91 views

Passing URL Parameters to Java [closed]

Hey I am new to web development.Here is my problem. I have to host two servers(may be in PHP,not decided yet).One Sever pings the second server with some parameters.The sole purpose of the second ...
0
votes
2answers
174 views

convert curl call into java urlconnection call

I have curl command: curl -i -u guest:guest -H "content-type:application/json" -XPUT \ http://localhost:15672/api/traces/%2f/my-trace \ -d'{"format":"text","pattern":"#"}' And I want to create HTTP ...
0
votes
1answer
80 views

Jersey client unable to connect to remote machine (502 Bad Gateway)

I'm having trouble connecting to a service that I have running on a remote machine via a small jersey client test I knocked up. I'm able to connect and POST successfully using cURL like so: curl -X ...
0
votes
1answer
148 views

Receiving response from CURL in JAVA

I am using a public API provided by Sentiment-140 for finding whether a small text is positive, negative or neutral. Though I can successfully use their simple HTTP-JSON service, I'm failing with ...
0
votes
2answers
155 views

setting up a digest http request with a java library

So I am trying to connect to a database (The owners of the server outsource the set up work and don't know details about it) and have a username and password. When I try connecting with curl in the ...
2
votes
2answers
156 views

How to curl an URL and saving output to a file using java

I'm a newbie in java and need help in how to use the cURL in java and saving the output of the cURL command to a file in runtime. Let's consider as i'm using the below URL which i have to cURL in the ...
0
votes
1answer
48 views

Getting json using REST through SSL

To connect to server using php, I just use cUrl like this curl_setopt_array($ch, array(        CURLOPT_SSL_VERIFYPEER  => false,        CURLOPT_SSL_VERIFYHOST  => false,        ...
0
votes
1answer
314 views

RestTemplate usage

I'm trying to use RestTemplate in order to make a PUT. For some reason I can't reproduce the PUT I created using curl that goes through without any problems. Here is my curl call that succeeds and ...
0
votes
0answers
143 views

Setting curl parameters with Java HttpClient

New to this stuff, how would I set parameters for Java HttpClient to mimic a cURL call such as: $id = "a.name"; $key = base64_encode("key:12345"); $url = "https://secure.server.com/$id"; // ...
0
votes
3answers
230 views

Trying setting session cookie using HttpClient

Help setting cookie to HttpClient Created a program which logins to an external web service. However, to obtain vital information from an HTTP GET, I am unable to pass in the cookie (generated from ...
0
votes
0answers
191 views

cURL java equivalent for new Java Developer

I am looking for a bit of an idea how to approach this problem. I need to access a web service. I have been supplied code to access it via PHP cURL library. However, I am using a Java/JSP server to ...
2
votes
1answer
162 views

Generate Automatic Id IdGeneratorStrategy

I'm using Goole App Engine to Build my REST API, I've already marked my class as PersistenceCapable and also i got defined my @PrimaryKey and also marked as @Persistent(valueStrategy = ...
3
votes
3answers
121 views

cURL commands in java

How to use the cURl command curl https://na1.salesforce.com/services/data/v20.0/query?q=SELECT+name+from+Account -H "Authorization: Bearer access_token" -H "X-PrettyPrint:1" in java to call ...
1
vote
1answer
120 views

Looking for Java wrapper for curl library

I am looking for Java wrapper for curl. I understand Java has excellent apis for http and https connections (i.e. standard as well as Apache http client). I have a scenario where my https connections ...
0
votes
1answer
60 views

Image Upload with Post in Java

i am trying to upload an image to imagezilla.net in java. with php using curl it´s no problem.. $pvars = array('file' => "@".$imagePath, 'apikey' => "apikey"); $timeout = 30; $curl = ...
1
vote
1answer
185 views

cURL using httppost in android java

I'm trying to get a cURL request work in android using the httpclient. curl -k -X POST \ -F 'image=@00001_1.png;type=image/png' \ -F 'svgz=@00001_1.png;type=image/svg+xml' \ -F 'json={ "text" : ...
1
vote
1answer
131 views

How can I translate a curl call into java

I have this curl call curl -d "variable1=text1&variable2=text2&variable3=text3" -d information='{"id":"1234567489", "token":"AAACSweqPLFPrf8F6r1sux2AZDZD"}' https://localhost:8080/token ...
-3
votes
1answer
117 views

Upload files from client's in server [closed]

I have an applet running in server.It generates some files using the command prompt in client system and is stored in C: drive.Now,I want to upload those files onto the server.How can I do that?
-3
votes
1answer
54 views

Uploading files to a site, just like API

I have a hard or maybe easy question for you Does anyone of you know how to do the following: I found a site http://www.innovation.ch/java/java_compile.html And I would like to use it for my own ...
0
votes
1answer
237 views

RESTful java Client and HttpClient

I have a Curl command which I use to execute in UNIX. curl --digest -u 'user':'pass' 'https://<URL>/getCustomers' (which is working for me) I was trying to do this using Java. I tried using ...
-1
votes
2answers
414 views

Getting HTTP 404 Not Found when issuing POST using curl

I am trying to pass a JSON string to a POST method via a curl command. However, i am receiving a HTTP 1.1 404 Not Found error. I am trying to create a simple web service which will have the JSON ...
2
votes
2answers
166 views

Suddenly getting 405 Method Not Allowed during POST to create folder in box-api

I'm suddenly seeing a problem with code (java) that was working about a week ago using the Box API. I'm getting a 405 Method Not Allowed while doing a POST to create a folder. I have tried to trouble ...
-3
votes
3answers
109 views

Adding Curl to Java [closed]

Im trying to add a Curl to my Spring 3.1 web app but don't actually know how... Can someone help me? That's the code: curl -i -H "Accept: application/json" -H "Content-Type: application/json" ...
2
votes
1answer
835 views

JSON Formatting with Jersey, Jackson, & json.org/java Parser using Curl Command

Using Java 6, Tomcat 7, Jersey 1.15, Jackson 2.0.6 (from FasterXml maven repo), & www.json.org parser, I am trying to pretty print the JSON String so it will look indented by the curl -X GET ...
0
votes
1answer
142 views

Rest POST request with jersey

I am try to call REST web service from curl, in linux, Also use jersey then it returns A message body reader for Java type, class mypackage.UserGroupsData, and MIME media type, application/json, ...
1
vote
1answer
140 views

Postgres trigger to update Java cache

I have a Java web app (WAR deployed to Tomcat) that keeps a cache (Map<Long,Widget>) in memory. I have a Postgres database that contains a widgets table: widget_id | widget_name | widget_value ...
1
vote
1answer
188 views

how to send cURL in Android to REST service

I'm newbie in android, I want to get some data from my REST service, but I have some problem to initialize the method what's I send into the my REST service. you know that REST service using cURL to ...
0
votes
1answer
135 views

Curl sending blank header(testing Java web server)

I am testing my web server by sending it requests from cURL. When I send this command: curl -H "_ADD_CLASS*21112*ab*https://somewebsite" 127.0.0.1:12345 to my server, I get this in my Java Socket ...
1
vote
0answers
133 views

How to create and run command line scripts for cURL

I'm am trying to test a web service that I've just written but I am not familiar with cURL. Can anyone provide some simple scripts and how to run them in windows command line?
2
votes
1answer
187 views

Curl and form - not redirect to page

I have two pages: one.php <?php if($_POST && $_POST['captcha'] == 'thisisrandom'){ echo 'KEY = ' . uniqid(); } ?> <form action="one.php" method="POST"> NAME: <input ...
0
votes
1answer
679 views

HttpClient 4.x httpGet with cookies/session

I'm trying to get a page from a given URL which need to be authenticated to work. I've succeeded to get cookies with a HttpPost on the login url. I get cookies like that, so it seems ok: Cookie: ...
0
votes
0answers
131 views

Converting Java HTTP request to PHP [closed]

I have to post XML data to a remote location using PHP. Right now, I have a program written in Java that makes the proper connection to the host, but so far I have been unable to accomplish the same ...
1
vote
0answers
116 views

Any command line utility (like wget,curl etc) and/or java methods to get meta data of a shortened URL?

I have stream of shortened URLs as received from twitter feeds. I don't need entire page of that URL, but basic meta information like expanded original URL, page title, timestamps etc. I can get the ...
0
votes
2answers
207 views

How to login to a spring security login form using CURL?

I am working on a springMVC project in which the user authentication is based on spring security. the idea is to have a mobile (android) application to be able to send some sort of data to backend. ...
-1
votes
1answer
51 views

is there a facility to store and retrieve cookies (like the cookiejar in curl and php) in Apache Camel + Java

I am porting a php snippet that relies on cookiejar provided by curl to get cookie and use it in the subsequent calls. I am facing problem with implementing the same code in Java with Apache Camel. I ...
0
votes
2answers
114 views

Not able to access web app created in eclipse with curl

I have created a web app with eclipse. I can run it and can access it in the browser . I want to access it with curl but I am getting “404, The requested URL /de.vogella.wtp.jsp/ShowAll.jsp” was not ...
1
vote
1answer
113 views

Use curl with apache HttpPost object

I would like to dump the complete content of an org.apache.http.client.methods.HttpPost object so I can use curl to debug what's wrong with this object. Is there anyway to do this? Thanks.
1
vote
1answer
105 views

segment fault cause by optimizer

We encountered one problem when trace log with gdb .System crash when XMLRPC call and gdb backtrace show: Program terminated with signal 11, Segmentation fault. #0 finishCurlMulti (envP=0x0, ...
0
votes
0answers
141 views

curl command example with service provider certificate

I have a question on usage of curl command. So basically we are trying to consume couple of third party services have which supports ssl. We have two different vendor's One vendor has configured ...
3
votes
2answers
1k views

Sending form data from java (image and some params) like curl

I have this to run this command which gives me right output and i want to emulate this in java using HttpUrlConnection(or any third party library) curl http://localhost/myservice/ -v -H ...

1 2 3