I'm trying to access this webservice http://webservices.esalestax.net/CertiTAX.NET/certicalc.asmx?wsdl. It's a .Net implementation with overloaded methods. I have no problems accessing it from .Net. However, there are two problems when accessing it from Java. Since, it is a RPC Styled service, I'm using Axis to consume the service. However, as you can see from the wsdl, it has overloaded operations ie there is more than one operation with the same name under the same port. Axis throws the DuplicateOperation Exception when trying to generate the proxies. I understand that the webservice specifications don't allow overloading. Is there a way to generate the proxies in Java without tampering with the wsdl? I'm using Axis version 1.4.
Consuming overloaded methods in a .Net Webservice from Java
321 Views Asked by Sriram At
0
There are 0 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 AXIS
- How to use plotyy for 2 different plots inside a subplot?
- R - confused about the axis scaling
- Bad Orientation of Principal Axis of a Point Cloud
- Matplotlib axis time formatter
- R ggplot2 -- Set z axis limit in stat_contour plot
- how to fix x-axis and y-axis scale
- Axis2 keeps generating files in temp folder when running on tomcat
- Using client certificate with Apache Axis 1
- Reversing RotateAxisAngle back to angles
- How to programmatically set the SSL context of a Axis client?
- Sonarqube thrashing when doing AST scan on old Apache Axis 1.2.1 generated code
- How to make dual labeled axes from one dataset with d3
- Change axis displayed value in D3
- Shift Plot Data Along X Axis Matlab
- gnuplot - "How to draw an asymptote" / "Get axis value range", get x or y axis minimum and maximum values
Related Questions in JAX-RPC
- How to print SOAP message version of JAX-RPC service in websphere
- Is J2EE 1.3 in End of Life stage?
- How to determine if a Java web service is JAX-WS or JAX-RPC
- com.sun.jersey.api.client.ClientHandlerException:
- What is the difference between wscompile and wsimport?
- JAX- RPC : Getting error "org.xml.sax.SAXException: WSWS3047E: Error: Cannot deserialize element"
- Soap client cannot connect to web service after bea weblogic deployment
- wscompile JAX-RPC generates Calendar object instead of Date
- Consuming overloaded methods in a .Net Webservice from Java
- JAX-RPC 1.1 and Holder class
- Cannot start Netbeans 8.0.1 after JAX-RPC Web Services plugin installation
- Call C# WCF web service from Java using JAX-RPC
- IBM WebSphere JAX-RPC Client Compression
- Spring WS - JaxRPC - Web service response
- Complex type with single array element throws marshalling exception
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?