I have a web application in Java which does data exchange using XML. I have written a servlet and it uses HTTP Post to upload the XML file from a particular client. Once the Post method is completed successfully, it sends 200 OK message to the client (using the default web server HTTP status). Now I need to include some HTTP status code in my application so that the client gets some HTTP status message (eg. 400 Bad request, 502 bad gateway) when there is an issue with the upload. How should I add the HTTP status codes in my web application? Please help me with suggestion.Thanks
HTTP Status code in Java server based web application
1.3k Views Asked by mona At
2
There are 2 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in XML
- Impose component restriction to a series of parsys-CQ
- Wrong xml being inflated android
- Shorten the XSD
- Writing/Overwriting to specific XML file from ASP.NET code behind
- Magento custom block. Can't get block's file
- Layout not shifting up when keyboard is open
- CSV to XML XSLT: How to quote excape
- Getting deeply embedded XML element values
- Saving FileSystemInfo Array to File
- how to apply templates within xsl:for-each
- Spring - configure Jboss Intros for xml with java config?
- Problems with implementing custom actionbar android
- Can Apache Ant be told to cache its XML files?
- Is Log4j2 xml configuration case sensitive?
- How to get a specific node value in XML Pull Parser
Related Questions in HTTP-STATUS-CODES
- http status code for failed email send
- Scrapy encountered http status <521>
- HTTP Status Code Priority and Processing
- PHP header returning Status 301 OK
- Redirect form with 302
- Link sniffing - http get response codes wrong
- HTTP Request failed with status (canceled)
- Can i just check the domain availability by using the HTTP return status code?
- REST API - What to return when search criteria (queryParams) doesn't yield any results
- Retrive HttpStatusCode using webclient and then extract json In it. For use In C# client applications
- Slim PHP Framework API - http statuscodes not changing
- How to findout HTTP status faster?
- Http-source flume into hdfs is not working​.? The status code for the post request is 400?
- Is it correct to return 404 when a REST resource is not found?
- Rest API batch response status
Related Questions in HTTP-UPLOAD
- Arbitrary Number of File Uploads in Django
- Best way to upload files from iOS app to Windows Server?
- Rename file with uploadify
- HTTP file upload: Can I rely on the browser always sending a file name?
- Upload user file to google drive through django web application
- How to configure http_upload error for prosody
- HTTURLConnection Upload not 100% working
- HTTP Status code in Java server based web application
- Multiple image upload without flash
- multipart/form-data vs application/octet-stream
- DotNet app receives Gateway 502 (proxy server error) - after posting large file to web server
- Sitecore - Item Web API-Uploading Media Item With Template
- HTTP upload server in Ruby
- How to upload image and video on server using HttpUrl connection?
- How to configure open-fire server with HttpUploadComponent for offline file transferring?
Related Questions in DATA-EXCHANGE
- Send data from one module to another module with type safety
- Can and should an ontology be used to generate code for data converters?
- Any .NET implementation of Concise Binary Object Representation(CBOR)?
- Exchange data between 2 user at the same url
- Database or message queue for exchange of data between two apps
- How to integrate Power Automate with BIM360
- data exchange of two windows WPF
- Is there a way to extract data from Nagios as if it was a web service?
- Is there a way to return data from the called azure function back to logic app who called it?
- How to keep track of dirty controls in a dialog
- php (or better choice?) for sending turn data to a simple webapp game
- Recovering structs sent over a network
- Control anylogic through external programs
- How to create batch process to upload Oracle DB data to AWS Data Exchange?
- Lighting diagrams language and notation
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can use
HttpServletResponse#setStatus()orHttpServletResponse#sendError().The methods differ in what they cause the servlet container to do, so choose the one most appropriate for your situation.
setStatus()sendError()The list of status code constants is available in the Field Summary of the javadoc. For the codes in your question:
HttpServletResponse.SC_BAD_REQUESTHttpServletResponse.SC_BAD_GATEWAY