web-services

Adding independent aspx/asmx pages into DotNetNuke

与世无争的帅哥 提交于 2020-01-04 14:31:21
问题 Howdy, I just installed dotnetnuke 5.06 on my server, say, the path is mydomain.com/dnn I have a library independent of dotnetnuke that I have to run and it contains web services and various other httphandlers so I haven't tried to integrate it into DNN just yet. the library is located under mydomain.com/dnn/lib The library worked fine on my old server running 5.04 and everything worked fine, but for some reason my new installation with 5.06 (windows 2008, sql server, iis 7.5) returns 404

How can I get started using a WSDL file with Visual Studio it's in the root of the project instead of being hosted on the internet somewhere

大兔子大兔子 提交于 2020-01-04 14:29:52
问题 I've been tasked when integrating a web form into Oracle CRM on Demand (Siebel) using web services. I've been given the WSDL, and some high level documentation from Oracle. Well, I knew I was in trouble when I tried to add the WSDL as Web Reference and I was asked to enter an URL. I have the WSDL file in the root of the project, but I have no idea how to link to it. So, I guess that means I need to learn up on web services using C# and Visual Studio. I have a Safari Books Online account, so I

How can I get started using a WSDL file with Visual Studio it's in the root of the project instead of being hosted on the internet somewhere

时光总嘲笑我的痴心妄想 提交于 2020-01-04 14:28:28
问题 I've been tasked when integrating a web form into Oracle CRM on Demand (Siebel) using web services. I've been given the WSDL, and some high level documentation from Oracle. Well, I knew I was in trouble when I tried to add the WSDL as Web Reference and I was asked to enter an URL. I have the WSDL file in the root of the project, but I have no idea how to link to it. So, I guess that means I need to learn up on web services using C# and Visual Studio. I have a Safari Books Online account, so I

Java Web service using Apt. Do I need an annotation processor? What is wrong?

别等时光非礼了梦想. 提交于 2020-01-04 14:22:56
问题 I have been trying to make a simple web service and have been following this tutorial . Unfortunately I am stuck. Here is what I have done so far: 1) I created this class: package server; import javax.jws.WebService; @WebService public class HelloImpl { /** * @param name * @return Say hello to the person. */ public String sayHello(String name) { return "Hello, " + name + "!"; } } 2) I ran: apt HelloImpl.java 3) I get this warning: hostName[username:~/Desktop/webtest][534]% apt HelloImpl.java

AMAZON Api authentication error

一个人想着一个人 提交于 2020-01-04 14:18:20
问题 Attempting to use the amazon API to obtain product data and currently failing miserably. Getting the following error: (The HTTP request was forbidden with client authentication scheme 'Anonymous'.) Anyone care to point me in the right direction or provide a link to good example of the API usage? Dim itemRequest As New ItemSearchRequest With itemRequest .Keywords = "Matrix" .SearchIndex = "DVD" .ResponseGroup = New String() {"Images"} End With Dim request As New ItemSearch request

SOAP Extension Stream Empty After Serialization

浪尽此生 提交于 2020-01-04 14:17:13
问题 I have had this problem for the last day. I have created a SOAP Extension following the MSDN articles and a load of blog posts but I just can't get it to work. Ok Some code: public class EncryptionExtension : SoapExtension { Stream _stream; public override object GetInitializer(Type serviceType) { return typeof(EncryptionExtension); } public override object GetInitializer(LogicalMethodInfo methodInfo, SoapExtensionAttribute attribute) { return attribute; } public override void Initialize

How to define separate wsdl for different services in a same spring-WS project?

ⅰ亾dé卋堺 提交于 2020-01-04 14:14:22
问题 I'm new to Spring -WS and so I'm looking for some suggestion on Spring web services. I'm trying to create web services for my company product. There are two sets of services for two different targets. But I don't want to create two different projects, as I don't want to pass around 2 *.war to the clients and also at lower levels have lot of mutual dependencies. So, I would like some suggestion/advice on how to generate two(or multiple) WSDL files. so the two different WSDL files will be

WCF REST service url routing based on query parameters

时光怂恿深爱的人放手 提交于 2020-01-04 14:14:15
问题 Since WCF routing doesn't support routing for REST services, I created a REST service that has one enpoint which accepts all incoming requests and than redirects those requests based on the query parameters. I did this by following this article http://blog.tonysneed.com/2012/04/24/roll-your-own-rest-ful-wcf-router/. This approach works for passing through requests and returning the results. The problem is whenever I get an error, like a 404, from the actual service the message that is

Passing uniform webservices through Camel

五迷三道 提交于 2020-01-04 14:12:22
问题 I'm contemplating using Camel for my project and would like to know if it's feasable or camel is not a good choice. I need multiple clients running same exact application to exchange information via web services (CXF or AXIS). The exchange will go through a central hub that will do a content based routing from one client to the other and will also log this communication in the database. The hub will also route one client's response to another when the responses come in. There could be a large

how to get soap response from webServiceTemplate

旧巷老猫 提交于 2020-01-04 13:48:49
问题 I need to get a soap response using "webServiceTemplate". Currently in my existing architecture it's using function "public boolean sendSourceAndReceiveToResult(String uri, Source requestPayload, Result responseResult) { } " but this is returning only boolean value, but is there any way to capture the soap response? I tried with "marshalSendAndReceive" functions but its not working. Could you please suggest how can I get the soap response using webServiceTemplate functions, or will I have to