Webservice Which Returns 2 Parameters?

Jan 12, 2012

I want to create a webservice which returns me 2 parameters in VB.net

redirect URL if the user is authenticated OR Error occured text

I am able to create a webservice which sends only one parameter that is either URL or error msg.

Both are strings.

how to pass above 2 things and retrieve them in application.

View 1 Replies


ADVERTISEMENT

WebService Development - Constructors With Parameters

Mar 3, 2010

I'm fairly new to WebService development and have just set up my own webservice (ASP.Net 3.5, Visual Studio 2008 .asmx file). I cannot find a way of setting up my webservice to take parameters on the constructor. If I create a constructor that takes parameters, it is not then shown when I hook up to the webservice from my application (it only shows a parameterless constructor).

View 2 Replies

Passing An Array Of Strings To A Webservice As Parameters?

Jul 26, 2011

I have created a webservice in VB.NET

<WebMethod(Description:="This
method will return object Values (in an array of String)for all objects (in an array og String)",
Enablesession:=False)>

[Code]....

Error 1 Value of type '1-dimensional array of String' cannot be converted to 'TestUse_SEdkVistaWebService.JF_WebService.ArrayOfString'

View 4 Replies

Pgreader Returns No Rows (the Parameters Are Right And The Database Contains The Data Too)?

May 12, 2010

I have a postgresql database, one table. This table has a date column too.And I have this code:

[code]...

The problem is, that the pgreader returns no rows (the parameters are right and the database contains the data too).firstday and lastday are f.e. '2005.05. 01.', the ConvertDate function converts the date to '2005-05-01' (the dates are storen in this form in the database)And when the commandtext="select * from arfolyamok where datum between '2005-05-01' and '2005-05-31'", then it works, the pgreader has the rows.Why? What make I wrong?

View 3 Replies

SQL Update Query Returns Error Message Saying Not All The Parameters Have Been Set?

Jul 8, 2010

I'm trying to update an Access database by using an OLE connection, retrieving the information from textboxes where the user enters the new information.All the fields in my Access table are required fields, so I have validated that some info is entered in each one of the textboxes and that is the correct data type.But when I run the update query I get an error message saying something like values haven't been entered for some required parameters (my Visual Studio is the Spanish version, so I can't give the exact error message in English).The bit of code where the error occurs is inside the procedure called by my "Ok" button:

Dim campo1, campo2, campo3, campo4, campo5 As String
Dim campo6, campo7, campo8 As Double
Dim campo9, campo10 As Integer

[code]....

(I didn't post the whole code inside the procedure, but of course I'm creating the connection and everything)

The table has 10 fields, and the data is read from the textboxes and stored in variables (campo1, campo2, campo3, etc.), which I'm then using in the "set" query command.

"id" is the first field from the selected row in the datagrid, which I'm sending as a parameter to the procedure called by the "OK" button.The error message shows at runtime, so I'm guessing it's something in the query. Am I writing it correctly?

View 3 Replies

.net - WCF Client Returns "nothing" As A Response To A Third Party Webservice

Jul 8, 2010

I have a 3rd party webservice (happens to be a peoplesoft EIP service) that I'm trying to call from .net. I've tried using a service reference and the old web reference to call this service and every time I call it I get a response of "nothing" back from the service.

I've ran the service call through SoapUI and it works fine. I've captured the network traffic using Fiddler and notice that when i call the service from SoapUi or from .Net I get the same resulting xml back from the call. So that means the call is working. I've turned on tracing and logging within WCF and I'm not seeing any errors. Nor is it throwing an exception.

So my theory is that .net is having a hard time translating the xml from the service back into a .net object.

Here is a snippet of my code:

Dim psclient As New psService.LSS_WEBORDER_PortTypeClient
Dim psreq As New psService.LSS_WEBORDER_REQ_MSG_TypeShape
psreq = New psService.LSS_WEBORDER_REQ_MSG_TypeShape

[Code].....

View 1 Replies

C# - Search For Names In The Database That Matches Whole Parameters Or Any Part Of Parameters

May 13, 2011

I'm writing a query to select all records that has any part of parameter. I have one table called Employees. Some people have name like this: John David Clark If the parameter is

[Code]....

I should be able to get result back as long as there's a match in the parameters. If I use Function Contains (q.FirstName & " " & q.LastName).Contains(employeeName), I will not get any result back if employeeName is "John Clark" Function Contains looks only for next words from left to right. It doesn't match a single word at a time. So that's why I used this in the Linq to SQL:

[Code]....

View 2 Replies

Error [07002] The # Binded Parameters < The # Of Parameters Makers

Aug 30, 2010

I am getting error [07002] the # binded parameters < the # of parameters makers, i checked both parameters were perfect even though i am getting this error here is my code

[Code]...

View 1 Replies

Null Check Always Returns Null, If Removed Returns Object Reference Not Set To An Instance Of An Object

Jun 24, 2010

I have some code which gets child items for a menu via the GetChildren function which takes a list of menuData: Dim builtMenu As New List(Of MenuData)(_rawData.FindAll(Function(item) item.GroupingID = 0))

For Each menuData As MenuData In builtMenu
If menuData.Children IsNot Nothing Then
menuData.Children.AddRange(GetChildren(menuData))
End If
Next

If I check if menudata.children isnot nothing, it always is nothing because the GetChildren function is yet to run (providing the child items, which do exist). If I remove this check and just have this code:

Dim builtMenu As New List(Of MenuData)(_rawData.FindAll(Function(item) item.GroupingID = 0))

For Each menuData As MenuData In builtMenu
menuData.Children.AddRange(GetChildren(menuData))
Next

Then I am presented with a Object reference not set to an instance of an object error on menuData.Children.AddRange(GetChildren(menuData))

View 1 Replies

C# - Difference With Parameters.Add And Parameters.AddWithValue?

Feb 6, 2012

Basically Commands has Parameters and parameters has functions like Add, AddWithValue, and etc. In all tutorials i've seen, i usually noticed that they are using Add instead of AddWithValue.

[Code]...

since it saves my coding time. So which is better to use? Which is safe to use? Does it improves performance?

View 2 Replies

Get The GET Parameters And POST Parameters In Just One Function?

Aug 6, 2011

is there a way to get the GET parameters and POST parameters in just one function or Collection in ASP.NET? Like using $_REQUEST in PHP? I'm using VB.NET.

View 3 Replies

Translate PHP Json Webservice Request TO .Net Json Webservice Request?

Jun 13, 2011

I have to send a request to Webservice and I have a working PHP solution, that I have to translate in VB.net

Here's the code working in PHP

//fill in the details of the contacts.userId is obtained from loginResult.
$contactData = array('lastname'=>'Valiant', 'assigned_user_id'=>$userId);
//encode the object in JSON format to communicate with the server.

[code]....

Naturally I imported a reference to a Json library and Imported (Imports Newtonsoft.Json)?

View 1 Replies

.net - Webservice To WCF?

May 11, 2011

we had developed a webservice in vb.net,framework 2.0. We would need to rewrite this websevice in WCF with framework 3.5. Please provide some guidance regarding this and also there are many othersystems consuming our webservice url. Will this conversion have impact on the source system or does it involve any build activity for the source system to consume the url that will be developed with WCF method?

View 3 Replies

Asp.net - Building A WebService In ASP 4 - VB

Aug 31, 2011

I have a search engine that will use a webservice to search through my database to find 3 specific things. I don't even know if it will work like this, but I have a dropdown list on my main page to select Product, Feature, Description. From what the user selects, the webservice should then go to an if statement to use the correct SELECT statement and find results for the search.

Will someone help me figure out how to fix what I've written to make it work? Please don't be too critical, I don't have a lot of experience. I have also been researching SQL Injection because I have a lot of code that is vulnerable so keep that in mind when you look at my code.

I can't get the blue squiggly lines to go away that are underneath the DropdownList1.Value instances on the WebService page.

WebService:

<WebMethod()> _
Public Function GetCompletionList(ByVal prefixText As String, ByVal count As Integer) As String()
Dim Feature As String = DropDownList1.Value
Dim Description As String = DropDownList1.Value
Dim Product As String = DropDownList1.Value

[CODE]..........................

Default.aspx page - Here I need the dropdownlist to tie to the database somehow.

<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>

[CODE]........................

View 2 Replies

Asp.net - Subsonic With Webservice?

May 6, 2009

I am trying to get subsonic to run work in a webservice I am not sure how to return the data. I only get the word Object in my results when It return anything instead of values. What am I missing?

<WebMethod(Description:="Method to retrieveCptCode subsonic List")> _
Public Function GetSubCptCodes() As CPTCodeCollection
Dim coll As CPTCodeCollection = New CPTCodeCollection()
Dim qry As Query = New Query(CPTCode.Schema)
coll.LoadAndCloseReader(qry.ExecuteReader())
Return coll
End Function

View 1 Replies

C# - While Invoking A Webservice?

Mar 2, 2011

I am invoking a webservice and got this error..Do anyone know what is the exact problem..System.ServiceModel.Security.MessageSecurityException: An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail. ---> System.ServiceModel.FaultException: An error occurred when verifying security for the message.

[Code]...

View 1 Replies

Emulate ASP Webservice

Jul 21, 2009

I have a webservice created using classic ASP which i am trying to get working in .Net.

Currently i am using the following ASP to post an XML file to [URL] . This then sends back an XML response.

Code:

I am trying to emulate this in VB.Net so that i can receive an XML response from the xml_url.

However i get an error warnign me that the following cannot be created:

Code:

View 2 Replies

Get Access Of Php Webservice From .net?

Jul 9, 2009

I want to get access of php webservice from vb.net

View 1 Replies

Get The Session Value From Webservice?

Jun 3, 2012

As in the title, How to get the session value from asp.net web-service ?

View 1 Replies

Schedule A Webservice In .net?

Jun 11, 2011

Is there an easy way to schedule a webservice that was created in vb.net. Would I need to create a .asmx file or do I create an executable in vb that calls a webservice?I have created a webservice using SOAPUI 3.6.1. would it be easier to schedule that instead of creating a vb app.

View 5 Replies

Set Timeout On Webservice?

Sep 2, 2010

Setting timeout on a vb.net webservice.

View 2 Replies

Using Collections In A WebService?

Mar 18, 2011

I created a website that contains a Webservice that transfers data to a windows application Using a collection, however, I get this Error that says that anything that inherits the ICOllection, it must implement Add(System.Object)

View 2 Replies

VB With Dynamic Webservice URL

Aug 4, 2011

Writing a VB app that uses a webservice. The URL for this webservice will change based on where the app is running from so I need to change it at runtime. I see that by default the web reference URL has its behavior set to "Dynamic" which means I should be able to change it at runtime, but at the same time the app.config file has the Scope set to "Application," which means it's read-only at runtime. I'm looking to use My.Settings.WebServiceURL = "new url" but in order to do this the scope has to be set to User... I think. But if that's the case then what does the "Dynamic" behavior do for me? Can someone give me a code example of how I can change this at runtime?

View 2 Replies

.net - DataMember Name Property Is Ignored In Webservice?

Jan 4, 2012

In my project I have a view model City that is exposed by wcf. One of the properties is named differently then the already exposed contract dictates. Therefore I added the DataMember attribute and set the Name value like so:

<DataContract(Namespace:=ServiceNamespace)> _
Public Class City
private mySelectedTranslation as String

[Code]....

View 1 Replies

.net - Webservice Needs To Be Accessible Through Website?

Apr 22, 2010

I have a .exe program which has an embedded webservice running on port 800.I can access it locally via 127.0.0.1:800 just fine once the program is executed.I need to be able to send the service commands such as: * 127.0.0.1:800/dev * will get a list of devices attached to the program.

To my knowledge i need to forward port 800 on my router and then access my internet IP externally and I should be able to view/access this web service? am i correct?I am then wanting to create a PHP site which will send the desired commands back to the web-service running on my home pc.

View 1 Replies

.net WebService - Bypass Ssl Validation

Apr 6, 2009

Well im working agains a webservice that has a certificate that is not 100% correctly setup the certificate is setup for the domain [URL] and the api is located at [URL] now i cant connect to this webservice as i then get a WebException "Could Not establish trush relationship for the SSL/TLS secure channel. The remote certificate is invalid according to the validation procedure. Now my question is there any way to bypass this check i use a normal Web Reference (2.0) not a Service Reference..

View 5 Replies

Access A Webservice Method From VB?

Jun 23, 2010

i am trying to access a webservice method from vb .net

dim xml as string
long id = 123
string[] accountList = new string[]{"1234"};
xml = ws.test(ID,accountList);

i am not getting my result in xml string.

View 2 Replies

Attachments Using REST WebService

May 26, 2011

I am currently developing an application using VB.NET in which I am using the REST WebServices. I have been able to do the basics with REST, however, I have not been able to add an attachment (more specifically upload a file, using REST which gets attached). I have done extensive research online, but so far I have not been able to find any working examples in VB.NET. To actually upload the data I use System.Net.WebClient. The following VB.NET code does the important work:[code]As you can see, the postString is converted to bytes and then uploaded to the server. However, I do not know where or how I should be posting the raw attachment itself. The documentation for the service we are specifically using states to use a variable "attachment_ 1," which I added to the postString variable, but I am not sure what the next step should be. Should the file be converted into bytes and appended to the postBytes variable?

View 1 Replies

C# - Using AJAX To Run A Webservice In The Background

Apr 20, 2011

I basically need to do this, but unfortunately my hosting provider doesn't give me "Full Trust" so I can't run threads. Is there a way to do this using AJAX?

//Updates Information in Database
Thread threadFind = new Thread(LoadFind);
threadFind.Start();

Response.Write("Send old information to users"); I don't want my users to have to wait at all for a response, so I can send them the old information. However, while they are on the page I want another thread (or something that works like a thread) to update the information for the next user that visits.

View 2 Replies

Download A File Using Webservice?

Sep 16, 2010

i have a website and i want to download a file from another folder on the same server. I want to use webservice, which i am not very familiar with. How can i download that file by pressing a button on my website, using webservice?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved