We are connecting a webservice (java) from C# (VS.Net 2003) application. Web service running on HTTP 1.0 protocol. On the other hand VS.Net 2003 trying to reach with HTTP 1.1 protocol.
Therefore objects are coming null value.
For example we are getting string[5] object is correctly but array's items are null value.
We have to take HT...
One would assume with any web-based data application that database transactions would be an integral part of the design. Looking around at CrmService, I can't find anything that suggests that transactional 'CRUD's are available. Is it the case that this is not supported/implemented in MSCRM? If it is, and i have missed it, could someone ...
I have a webservice SOAP ( in php), and I have a .Net program that will call that webservice and retrieve results.
Is it doable? Any tutorial on this?
...
I'm developing an asp.net webservice application to provide json-formatted data to a widget that uses jQuery.ajax to make the request. I've been using the FireBug Net view to check how long the requests for data take.
In my initial prototype I was simply requesting static json data files, which on my dev machine were obviously returned ...
I am a java developer. I want to learn SOA/SaaS for our web application. What is best book/resource to start with ?
...
I currently have a windows application which is automated and runs daily.
the purpose is to access a webservice to download a dataset, inserting into sql 2005 database.
Is a windows service application suitable in this situation, would it be more flexible, and would it perform better.
...
My flex project has the following mxml file:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:coverflow="com.dougmccune.coverflow.*"
layout="vertical" horizontalAlign="center" verticalAlign="middle"
viewSourceURL="srcview/index.html" xmlns:containers="com.dougmccune.containers.*" ...
I am writing a Java web service for legacy SCO machines (which only have Java 1.3 available). I have been able to get more recently-added XML parsing functions integrated by including the Xerces jar on my classpath. However Java is screaming about not being able to find javax.xml.soap, even though I've got Axis 1.3 and explicitly added a...
Hello all,
Scribd API: http://www.scribd.com/developers
For those of you that are aware of Scribd, used it or can take a look at the API above.
Can anyone tell me if it is possible to upload documents from my site straight to scribd?
I ask because from the API (PHP Implementation) it seems that I have to first ask my users to uploa...
Hello,
I'm using Tibco BusinessWorks to consume a soap web service over an HTTPS connection.
The instructions boil down to:
Export certificates using a web browser.
Use the Tools->Trusted Certificates->Import PEM format to folder within the project.
In the SSL Config of the Transport Details tab, point to the trusted certs folder you...
I'm building a client-server (c#) application that uses a web services to synchronize the data.
Basically I am passing the XML of a DataSet back and forth. But depending on various parameters the dataset can actually be quite large. I'm compressing the XML using Gzip and want to pass that to the web server and the get the resulting com...
Hi,
I have Basic Authorization mechanism on the server for WSDL/SOAP. How I can send "Authorization" header through Flex WebService?
Simplified example:
var ws:WebService = new WebService();
ws.wsdl = "http://localhost:8000/api/service.wsdl"
var encoder:Base64Encoder = new Base64Encoder();
encoder.insertNewLines = false;
encoder.enco...
I have to use a 3rd party web service implemented in .NET 2.0 (on IIS, of course).
I have to make a java client. I am using wsdl2java to generate the SOAP stub.
As the original Apache Axis project now appears unmaintained, and I was having some problems parsing some responses from the service, I converted the client to use the latest ...
Hello! I am looking to create a lightweight, heavy traffic, db site. It will be standard 3 tiered architecture in asp.net. Part of this site is web-based, but most of the functions will ideally be available on mobile devices, also.
That being said, I know that web services is the classic answer for this, since I can access a web service...
I have a .wsdl file, and only a .wsdl file, no .xsd, nothing.
That .wsdl is in the SOAP 1.2 format. When I want to generate .cs class against that file using the command line
wsdl /out:mycsclass.cs blahblah.wsdl
I got this error:
Warning: This web reference does not conform to WS-I Basic Profile
v1.1.
SOAP 1.1 binding w...
I have to mock quite complicated java web service and I'm searching for the right solution. One way to do it would be to use Soap UI, but I need something that would be able to modify server state ie. one request would affect future requests.
In this particular case it could be done quickly by saving serialized objects to disk and some...
Is it possible to access the Request object in a REST method under JAX-RS?
I just found out
[@Context][1] Request request;
...
Hello dear fellow SOers,
I have a system sitting on a "Master Server", that is periodically transferring quite a few chunks of information from a MySQL DB to another server in the web.
Both servers have a MySQL Server and an Apache running. I would like an easy-to-use solution for this.
Currently I'm looking into:
XMLRPC
RestFul Ser...
I have a simple hello-world EJB3 successfully deployed as web service. I can check it with url: http://localhost:8080/jbossws/services
Following is the client which works for Glassfish but doesn't work for JBOSS
package com.hardik.mejb;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
impor...
Hi everybody,
for a web service, depending on a XML file, there are a couple af classes in C# generated.
Depending on these classes, there is at compile time then the WSDL file generated.
Is there a possibility at runtime to simply replace the XML file and to have the WSDL file generated on the fly?
Best regards,
Valer
...