I have a web service that returns a simple object:
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.4927")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="urn:CHA...
Hi All,
I have a website hosted on my web server contacting a secure web service on another server. I have created a self signed certificate and attached it to the https:// binding. I have done 2 things to try and accept the certificate on my web server:
Open IE and browse to my wsdl file in the web service - Installed the certificate...
I have a website (python/django) that needs to use a load of Java resources that may or may not be on the same server. Therefore I am writing a mini webserver in Java that will receive a request and then when processing is finished, POST some data back to a url on the site.
I have got the java code receiving connections on sockets and r...
How would you modularize a large application that has some incoming (SOAP) webservices, some outgoing webservices, transformations between them and internal formats, internal logging services, accesses external archiving webservices, delays stuff and works on this asynchronously and so forth?
One way is to split the functionality into a...
Hi,
I am trying to test the use-case of a customer having a proxy with login credentials, trying to use our webservice from our client.
If the request is synchronous, my job is easy. Catch the WebException, check for the 407 code, and prompt the user for the login credentials.
However, for async requests, I seem to be running into a p...
I have the following test in my Rails Application:
it "should validate xml" do
builder = Builder::XmlMarkup.new
builder.server(:name => "myServer", :ip => "192.168.1.1").should == "<server name=\"myServer\" ip=\"192.168.1.1\"/>"
end
The problem is that this test passes sometimes, because the order of the xml tag attributes is unpr...
I have asked a few questions on here before about various things relating to this but this is more of a consolidation question as I would like to check I have got the gist of everything.
I am in the middle of developing a social media web app and although I have a lot of experience coding in Java and in PHP I am trying things a bit diff...
Hi All
I am trying to implement a feature. But I've never had anything to do with "Web Services" before, other than using them.
I have a desktop application, and I want that application to be able to sort of "post" some information (i.e. email address, username, user-selected options (just plain text) etc) to an application or "web ser...
I have a Jersey resource that access the database. Basically it opens a database connection in the initialization of the resource. Performs queries on the resource's methods.
I have observed that when I do not use @Singleton, the database is being open at each request. And we know opening a connection is really expensive right?
So my q...
i have just upgraded a test copy of my site to asp.net 4.0 and have noticed a strange issue that only arises when i upload the site to my server.
the site has an asmx web service that returns json, yet when i run the site on my server it returns xml. it as been working fine in asp.net 3.5 for over a year.
the webMethod is decorated wi...
I'm not satisfied with the answers given by the SOAP vs REST questions notably here:
http://stackoverflow.com/questions/106546/performance-of-soap-vs-xml-rpc-or-rest
because it's just general philosophical answers and not pragmatic answers with some study cases.
Nobody can give precise cases of when soap would be more suitable than re...
I'm fairly new to writing web services. I'm working on a SOAP service using JAXWS. I'd like to be able to have users log-in and in my service know which user is issuing a command. In other words, have some session handling.
One way I've seen to do this is to use cookies and access the HTTP layer from my web service. However, this ...
I have put a webservice I found here http://www.rebolforces.com/zine/rzine-1-02/#sect6.
on my own website.
I tested http://reboltutorial.com/discordian.wsdl with
http://www.soapclient.com/soaptest.html
it did work as I got this answer
Sweetmorn, Discord 48, Year of Our
Lady of Discord 3176
But doing the same thing with soapsona...
Hi
We have two servers, both are containing a local application connecting to local web service, applications and services are identical on both servers.
One of the servers work just fine,
The other one is just dead, I have impression the the security configuration are different on those servers.
What prevents an application X from c...
hello.
i have a midlet that is a client for an ejb web service. i have the following problems, my goal is to make an sms program that sends and receives sms through http.
when the midlet accesses the web service, i would like to find a way to later asynchronously push a message to the midlet. how can i do this?
can my stateless web ...
Hi everyone!
Im not sure about what authentification method I should use for my webservice. I've searched on SO, and found nothing that helped me.
Preliminary
Im building an application that uploads data from a local database to a server (running my webservice), where all records are merged and stored in a central database. I am curre...
This will sound naive (but then I am a junior programmer), but if I write a web service say in Python (standard WSDL web service), I then need to host it so it is reachable from an end point.
This will give a URI for the service and then from another language, say Java or VB.NET (any), I can add a web service (this one) and then call th...
Hi ,
I am new to SOAP UI usage. I would like to test one of the webservices generated using weblogic 8.1 SP 6. The webservice is a document type webservice. Is there any way to test this webservice using SOAP UI ??
Or is there any tool which helps to test document type webservices??
Thanks in advance.
...
Hi all,
I am trying to call the FedEx tracking webservice. Currently I am running the sample application provided by FedEx itself (Added my test account number and other details). When I run the application, I get the following error:
The remote server returned an error: (407) Proxy Authentication Required.
I am inside a proxy at my o...
There is a web service running on tomcat on a server. It is built on Java Servlet. It is listening others to call itself on a SSL enabled http port. so its web service adreess looks
like: https://172.29.12.12/axis/services/XYZClient?wsdl
On the other hand I want to connect the web service above from a windows application which is built ...