Swing App That Connects To SOAP API
Dec 30, 2014
I am trying to create a Swing app that connects to a SOAP API. I have never messed around with web services so I sure this is user error .... The code below throws an error that says "Server did not recognize the value of HTTP Header SOAPAction".
Java Code:
import java.io.IOException;
import javax.swing.JOptionPane;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.MimeHeaders;
import javax.xml.soap.SOAPBody;
[Code] ....
View Replies
ADVERTISEMENT
Aug 25, 2014
I am trying to deploy an android application that connects to a java server. I am doing an apointments system, so the client asks for an apointments with a specific office/doctor. What i did, was to create a java server, using object for the offices, and via sockets it communicates with the android client.
The problem is that when i tried to use my (very demo still) app on my phone and sent it to some friends for testing, i coulnt find a way to have my server on the internet.
So I changed to (or trying to) servlet. But, how to do a client server application with servlets. All tutorials i have seen are more on website clients, but thats not what i need.
View Replies
View Related
Dec 21, 2014
I have created a SOAP client and initiate the transaction using proxy objects.Need to log the raw SOAP request/response XML message.
PaymentsAppServiceProxy proxy=new PaymentsAppServiceProxy();
QueryTransactionRequest request=new QueryTransactionRequest();
//Need to print the actual XML from the request
try {
QueryTransactionResponse response=proxy.queryTransaction(request);
[code]....
View Replies
View Related
Jan 24, 2015
I am new to web services and need to call a web service that has already been written. Below is the wsdl for the web service.I need to call the web service from my java program. provide the code to call the webservice?
<definitions targetNamespace="urnefaultNamespace">
<message name="CREATECONTACTUSResponse"></message>
<message name="CREATECONTACTUSRequest">
<part name="REQUESTTYPE" type="xsd:string"/>
<part name="SALESORG" type="xsd:string"/>
<part name="FIRSTNAME" type="xsd:string"/>
<part name="LASTNAME" type="xsd:string"/>
<part name="EMAILADDRESS" type="xsd:string"/>
<part name="TELEPHONENUMBER" type="xsd:string"/>
<part name="EXTENSION" type="xsd:string"/>
[code]....
View Replies
View Related
Mar 21, 2014
Using the concept of web service (SOAP), I need to have a web service running. The client page will pass an ID to the web service and in return the service will return some values retrieved from the database based on the ID passed, as output. The output so fetched has to be in XML format.
View Replies
View Related
Dec 18, 2014
Is it possible to send a duplicate soup request?Basically, I have a situation where two almost identical requests can get sent but right now the response comes back as one response. I wanted visibility to the two responses and the one gets dropped off
View Replies
View Related
Mar 5, 2015
I'm developing a SOAP client and have used wsimport to generate the classes, etc. and all is going pretty well, but the server requires several headers that I've been coding up manually, specifically wise:Security and o:Security blocks. While this is a valid approach, I think I'm probably doing things the hard way and I know .NET (SOAP being an MS standard originally) has some really powerful code to generate these headers. Does java have any similar counterparts? As an example, I'm writing code like the following:
SOAPElement token = securityElement.addChildElement("UsernameToken", "o");
token.addAttribute(soapFactory.createName("u:Id"), "UsernameToken-1");
SOAPElement userToken = token.addChildElement("Username", "o");
userToken.addTextNode(user);
[code]...
View Replies
View Related
Apr 1, 2015
I'm creating a SOAP Client with JS, this is my first time with webServices and I must have several mistakes in my code.
The poit is, with my code, I cant take acces to the WebService, but I don't know how to access to the methods inside. So the webservice gives me the following response:
<h1>Version</h1>
<p>Hi there, this is an AXIS service!</p>
<i>Perhaps there will be a form for invoking the service here...</i>
Instead of the correct XML for the method I'm calling.
This is the code of my SOAP client:
<html>
<script type="text/javascript">
function run(){
var objXMLHttpRequest = new XMLHttpRequest();
objXMLHttpRequest.open("GET", "http://localhost:8080/CrunchifyWS/services/Version?wdsl/", true);
objXMLHttpRequest.onreadystatechange = function () {
//alert(objXMLHttpRequest.readyState+" "+ objXMLHttpRequest.status);
[code]....
I think that te mistake should be in the XML part, but, as I said, this is my first time and I don't know what I'm doing.
When I try to do POST instead of GET I have this reposnse:
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="w3.org/2001/XMLSchema"; xmlns:xsi="w3.org/2001/XMLSchema-instance">; <soapenv:Body> <soapenv:Fault> <faultcode xmlns:ns1="xml.apache.org/axis/">ns1:Client.NoSOAPAction</…; <faultstring>no SOAPAction header!</faultstring> <detail> <ns2:hostname xmlns:ns2="xml.apache.org/axis/">WebServices-PC</…; </detail> </soapenv:Fault> </soapenv:Body> </soapenv:Envelope>
View Replies
View Related
Feb 18, 2015
I have a SOAP Client with wsdl to send a query to a SOAP Server. Along with the SOAP response I am supposed to attach a generated csv file (Not required to open and read - just attach).
SOAP Handler has been implemented at server.
Since it is client code I am not supposed to paste the exact contents online.
I can create new SOAPMessage and use AttachmentPart to attach the file but I am stumped regarding where to set it as response. We have used only javax.xml and apache.cxf.
View Replies
View Related
Feb 8, 2015
I want to send a SOAP xml to HTTPS url using 2 way mutual ssl. I have my certificates installed in my server. I am creating the SSLSocketFactory like this -
void createSSLSocketFactory()
{String clientTrustStore = *** Path to trust store file installed on my server.
String clientKeyStore = *** Path to key store file installed on my server.
//Reading keystore file
File keyFile = new File(clientKeyStore);
[Code] ....
So my question is,
1) How can I set the TrustStore and KeyStore in the request.
View Replies
View Related
Jul 8, 2014
I am trying to get attachements from soap resonse,I am getting the below error "Content is not allowed in prolog" with SOAP Attachment".
soap response is
================
------=_Part_585_5017019.1404291979395Content-Type: text/xml; charset=utf-8
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body><RetrieveIncidentResponse message="Success" returnCode="0"
[Code] ....
The code i am trying is below :
try { // Create SoapMessage MessageFactory msgFactory = MessageFactory.newInstance();
SOAPMessage message = msgFactory.createMessage(); SOAPPart soapPart = message.getSOAPPart();
// Iterator i=message.getAttachments();
// Load the SOAP text into a stream source byte[] buffer = soapResponse.getBytes();
[Code] .....
Detailed error log is
===============
ERROR: 'Content is not allowed in prolog.'
Jul 8, 2014 10:13:53 AM com.sun.xml.internal.messaging.saaj.soap.EnvelopeFactory createEnvelope
SEVERE: SAAJ0511: Unable to create envelope from given source
com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Unable to create envelope from given source:
at com.sun.xml.internal.messaging.saaj.soap.EnvelopeFactory.createEnvelope(EnvelopeFactory.java:114)
[Code] .....
View Replies
View Related
Oct 2, 2014
I have a class that do a soap request to a web service , the response is containing a base64 string repressing a file content , how can i send this string to a servlet (maybe any other way) to send it to the user as a downloaded file .
View Replies
View Related
Mar 6, 2015
i'm sending soap request but i'm getting html response it is leading to crash! how to parse html response?
View Replies
View Related
Mar 6, 2015
I've generated SOAP classes via wsimport from a local WSDL. All of the URLs in the WSDL point to the production services, but for testing I need to connect to a test location (different URL). There are dozens of examples on the web to set the endpoint, but it doesn't seem to be working for me - it's hitting the prod URL, not test.
PrepaidServices ps = new PrepaidServices();
ps.setHandlerResolver(new CustomHandlerResolver());
IPrepaidServices port = ps.getPrepaidServices();
BindingProvider bp = (BindingProvider) port;
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, TEST_URL);
LOG.debug("New Port = " +
[Code]...
The debug correctly shows the TEST port being set correctly, but when executed, inside one of the handler resolvers, I have the following code:
private void logMessage(SOAPMessageContext smc) {
// These headers are null: WSDL_OPERATION PATH_INFO HTTP_REQUEST_METHOD HTTP_REQUEST_HEADERS
LOG.debug("WSDL_PORT = " + smc.get(MessageContext.WSDL_PORT));
LOG.debug("WSDL_SERVICE = " + smc.get(MessageContext.WSDL_SERVICE));
[Code]...
The top debug lines both show the PRODUCTION URL! Shouldn't at least the port be the DEMO URL that I'd previously set?
Am I doing something wrong?
View Replies
View Related
Feb 16, 2014
I have a problem with progress bar implementation to my project. Let me explain it;
I have Jframe named GUI. Filled with 2 datechooser combo box and 1 Buton.
And i have a Swingworker class named "MySwingWorker" for my long running task just like this;
package exampleproject;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.logging.Level;
import java.util.logging.Logger;
[code]....
Just i want add a progress bar for listening MySwingWorker's setProgress updates. When buton clicked swingworker should executed and progress bar should come to screen. I read many articles about that but not understand correctly. Because i am beginner in JAVA.
Question1: Should i (create new class) or (implement to current gui or swingworker class) for progressbar?
Question2: Should i fired progress bar first and execute swingworker from progressbar class? or should i execute swingworker first and fired progress bar later and how?
View Replies
View Related
Jul 26, 2014
Is it a good idea to use the factory design pattern for say if I needed to create four different JDialogs for the same parent frame?
factory design interface
package client;
public interface Dialog {
void getInstanceOf ();
void initComponents ();
}
One of the four JDialog class would look something like this without the comments.
package client;
import javax.swing.JDialog;
@SuppressWarnings("serial")
public class AddCustomerDialog extends JDialog implements Dialog{
public AddCustomerDialog () {
//Some stuff goes here to set the settings for JDialog instance
[code]....
Of course you would have your factory class
View Replies
View Related
Mar 19, 2014
I would like to be able to change the locale in my Swing application at runtime and have all the text elements on the GUI update themselves with localized text from a ResourceBundle of the new locale.If there a simple way of achieving this without having to create an event model for all GUI pages?
View Replies
View Related
Apr 19, 2014
can we create web applications using swings? if yes how to create web app using swing?
View Replies
View Related
Jan 17, 2015
I have created a jtable with two columns so I need add checkboxes dynamically in to the first column.Bıt I couldn find something like add.How can do this.This is what I have so far
public CheckBoxes(){
table=new JTable(new TableModels());
TableColumnModel columnModel = null;
JCheckBox box;
for (int i = 0; i <2; i++) {
[Code] ....
View Replies
View Related
Dec 20, 2014
I've almost finished building an Editor in Java, but i'm a bit stuck on creating a JCheckBox that saves your credentials (as in password only) . I would like it to be on a JPanel under the password input box and above the Login and Register buttons.
Code:
Login.java (Main class for this problem)
[URL] ....
The main thing here is using GridLayout, which is what im currently working with but can't seem to get it under the password input box.. check: [URL] ....
View Replies
View Related
Mar 17, 2014
How to add combo box to swing ....
View Replies
View Related
Feb 12, 2014
how to open a GUI on top of another GUI? I have built a GUI and have a button that when pressed I want to open a new GUI which is another java application within the project, it seems pretty straight forward and I just need to insert 'new [name of application]()'
Button btnEdit = new Button(shell, SWT.NONE);
btnEdit.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
new edit();
}
});
btnEdit.setBounds(76, 10, 75, 25);
btnEdit.setText("Edit");
View Replies
View Related
Sep 13, 2014
What is the best way to run a Swing application on the web? Should I convert it to an applet or do something else?
View Replies
View Related
Jan 6, 2014
I find myself asking these two questions because I see them as relating. First question is; I always write
Java Code: f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); mh_sh_highlight_all('java');
(where f is a JFrame object)
to set the close for the JFrame. What I don't get about this is what is going on in the parenthesis. I looked in the Java Documentation, and it says an int goes inside. In that case, I don't really get what the word JFrame is doing there. Overall, please explain what is inside the parenthesis of that line and why it has to be there.The second question is a generic question. I notice a lot of times an object will be created, and as its parameter, you will have to instantiate an object. an example would be
Java Code: Class f = new Class(new Object) mh_sh_highlight_all('java');
What does it mean when an object gets created inside of a new object? Why is putting Java Code: new Object mh_sh_highlight_all('java');
ever necessary when concerning the two parenthesis?
View Replies
View Related
Jan 16, 2015
I am trying to add a JMenuBar to this program with just one dropdown to select one option but I am getting an error with the setJMenuBar(menuBar); line as it does not extend JFram. How I would add a menu to this program another way.
public class Calculator extends JPanel implements ActionListener{
private static final long serialVersionUID = 1L;
JMenuBar menuBar = new JMenuBar();
JMenu noteMenu = new JMenu("Note");
JMenuItem newNote = new JMenuItem("New Note");
public static final int WIDTH = 350;
public static final int HEIGHT = 560;
[Code] ....
View Replies
View Related
Oct 3, 2014
According to what I read, "when programming in Swing, your GUI creation code should be placed on the Event Dispatch Thread (EDT). This will prevent potential race conditions that could lead to deadlock." (See below for code.)
Why is this? How could making a GUI lead to deadlock?
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
View Replies
View Related