472,334 Members | 1,486 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,334 software developers and data experts.

Consume web service using HTTP

Howdy,

I wrote a web service in .Net for my customer. My customer has another
vendor who now has to consume it but they are not using Visual Studio. Most
of their pages are jsp, and they said they need to consume this web service
using HTTP. The developer's IDE is Notepad. Yeah, weird I know.

How is this done? I guess if I can get it to run ASP, IDE independant, that
should make them happy. Any references you can point me to?

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com


Jan 16 '06 #1
5 10236

this can be done... it took me a while to figure it out but its not all that
bad.
first, in the web.config you need a section:
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
which enables http get and post operations to the service. then you can use
an http form like:
<form target="zero" action='servicename.asmx/servicefunction'
method="post">
with a normal 'submit' button to send the data to the service. the one ugly
part i had to work around was the returned xml, i ended up sending it to a
hidden frame just because i didn't want it anyway. there are probably
better ways to use the returned data if you call it with javascript or
vbscript.
"David Lozzi" <Da********@nospam.nospam> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Howdy,

I wrote a web service in .Net for my customer. My customer has another
vendor who now has to consume it but they are not using Visual Studio.
Most of their pages are jsp, and they said they need to consume this web
service using HTTP. The developer's IDE is Notepad. Yeah, weird I know.

How is this done? I guess if I can get it to run ASP, IDE independant,
that should make them happy. Any references you can point me to?

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

Jan 16 '06 #2
This is what I have so far in my classic asp page

Dim objSrvHTTP
Dim objXMLSend
Dim objXMLReceive
set objSrvHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
set objXMLSend = Server.CreateObject("MSXML2.DOMDocument")
set objXMLReceive = Server.CreateObject("MSXML2.DOMDocument")

objXMLSend.async = false
objXMLSend.loadXML "<OrderDetails
xmlns='http://www.domain.com'><orderno>123456</orderno></OrderDetails>"

objSrvHTTP.open
"POST","http://localhost/prgnrt/orderstatus.asmx/OrderDetails",false
objSrvHTTP.send objXMLSend
objXMLReceive = objSrvHTTP.responseText
Response.ContentType = "text/xml"
Response.Write(objSrvHTTP.responseText)
and I get this error:

Request format is invalid: text/xml.
The web service details are:

HTTP POST
The following is a sample HTTP POST request and response. The placeholders
shown need to be replaced with actual values.

POST /prgnrt/orderstatus.asmx/OrderDetails HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Content-Length: length

orderno=stringHTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0"?>
xmlThanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"David Lozzi" <Da********@nospam.nospam> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Howdy,

I wrote a web service in .Net for my customer. My customer has another
vendor who now has to consume it but they are not using Visual Studio.
Most of their pages are jsp, and they said they need to consume this web
service using HTTP. The developer's IDE is Notepad. Yeah, weird I know.

How is this done? I guess if I can get it to run ASP, IDE independant,
that should make them happy. Any references you can point me to?

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

Jan 16 '06 #3
Hi David,

Welcome to MSDN newsgroup.
As for the calling webservice in JSP application, I think you'd consider
the following options:

1. If you're calling the webservice through JSP's serverside code(java
code), I think you have to lookup some JAVA specific webservice sdk which
can help create webservice proxy classes which simplified webservice
consuming... Elsewise, you have to use the java specific http request
component to manually send SOAP XML http request to the .net webservice
.....

2. If you're calling the webservice through webpage's clientside script
code, using the XML HTTP component as you mentioned should be ok.

Based on the code you provided, you directly send the following XML as SOAP
messageto target .net webservcie:

"<OrderDetails
xmlns='http://www.domain.com'><orderno>123456</orderno></OrderDetails>"

This is not correct since SOAP webservcie message should include the
complete SOAP envelope which contains soap headers(optional) and soap boday
(required).... To determine the correct XML soap message you should
send, I suggest you use some TCP or HTTP trace tools to trace the soap
message ( you can consuming the webservcie through .net client app first
to capture such SOAP message). And the Trace Utility in SOAP toolkit 3.0
is a good http trace tools:

#SOAP Toolkit 3.0
http://www.microsoft.com/downloads/d...0DD-CEEC-4088-
9753-86F052EC8450&displaylang=en

When you has captured the soap message , you can define a XML template file
or string that you can use to easily build a SOAP request message....

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
From: "David Lozzi" <Da********@nospam.nospam>
References: <uL**************@TK2MSFTNGP11.phx.gbl>
Subject: Re: Consume web service using HTTP
Date: Mon, 16 Jan 2006 17:03:47 -0500
Lines: 75
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
X-RFC2646: Format=Flowed; Response
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
Message-ID: <#J**************@TK2MSFTNGP12.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.webservices
NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.comcast.net 24.63.42.200
Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
microsoft.public.dotnet.framework.webservices:1337 3
X-Tomcat-NG: microsoft.public.dotnet.framework.webservices

This is what I have so far in my classic asp page

Dim objSrvHTTP
Dim objXMLSend
Dim objXMLReceive
set objSrvHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
set objXMLSend = Server.CreateObject("MSXML2.DOMDocument")
set objXMLReceive = Server.CreateObject("MSXML2.DOMDocument")

objXMLSend.async = false
objXMLSend.loadXML "<OrderDetails
xmlns='http://www.domain.com'><orderno>123456</orderno></OrderDetails>"

objSrvHTTP.open
"POST","http://localhost/prgnrt/orderstatus.asmx/OrderDetails",false
objSrvHTTP.send objXMLSend
objXMLReceive = objSrvHTTP.responseText
Response.ContentType = "text/xml"
Response.Write(objSrvHTTP.responseText)
and I get this error:

Request format is invalid: text/xml.
The web service details are:

HTTP POST
The following is a sample HTTP POST request and response. The placeholders
shown need to be replaced with actual values.

POST /prgnrt/orderstatus.asmx/OrderDetails HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Content-Length: length

orderno=stringHTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0"?>
xmlThanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"David Lozzi" <Da********@nospam.nospam> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Howdy,

I wrote a web service in .Net for my customer. My customer has another
vendor who now has to consume it but they are not using Visual Studio.
Most of their pages are jsp, and they said they need to consume this web
service using HTTP. The developer's IDE is Notepad. Yeah, weird I know.

How is this done? I guess if I can get it to run ASP, IDE independant,
that should make them happy. Any references you can point me to?

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com


Jan 17 '06 #4
I updated as suggested but I still get the same error.

Dim objSrvHTTP
Dim objXMLSend
Dim objXMLReceive
set objSrvHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
set objXMLSend = Server.CreateObject("MSXML2.DOMDocument")
set objXMLReceive = Server.CreateObject("MSXML2.DOMDocument")

objXMLSend.async = false
objXMLSend.loadXML "<soap:Envelope
xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""
xmlns:xsd=""http://www.w3.org/2001/XMLSchema""
xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"">" & _
"<soap:Body><OrderDetails xmlns=""http://www.domain.com"">" & _
"<orderno>123456</orderno>" & _
"</OrderDetails></soap:Body></soap:Envelope>"

objSrvHTTP.open
"POST","http://localhost/prgnrt/orderstatus.asmx/OrderDetails",false
objSrvHTTP.send objXMLSend
objXMLReceive = objSrvHTTP.responseText
Response.ContentType = "text/xml"
Response.Write(objSrvHTTP.responseText)

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:7C**************@TK2MSFTNGXA02.phx.gbl...
Hi David,

Welcome to MSDN newsgroup.
As for the calling webservice in JSP application, I think you'd consider
the following options:

1. If you're calling the webservice through JSP's serverside code(java
code), I think you have to lookup some JAVA specific webservice sdk which
can help create webservice proxy classes which simplified webservice
consuming... Elsewise, you have to use the java specific http request
component to manually send SOAP XML http request to the .net webservice
....

2. If you're calling the webservice through webpage's clientside script
code, using the XML HTTP component as you mentioned should be ok.

Based on the code you provided, you directly send the following XML as
SOAP
messageto target .net webservcie:

"<OrderDetails
xmlns='http://www.domain.com'><orderno>123456</orderno></OrderDetails>"

This is not correct since SOAP webservcie message should include the
complete SOAP envelope which contains soap headers(optional) and soap
boday
(required).... To determine the correct XML soap message you should
send, I suggest you use some TCP or HTTP trace tools to trace the soap
message ( you can consuming the webservcie through .net client app first
to capture such SOAP message). And the Trace Utility in SOAP toolkit 3.0
is a good http trace tools:

#SOAP Toolkit 3.0
http://www.microsoft.com/downloads/d...0DD-CEEC-4088-
9753-86F052EC8450&displaylang=en

When you has captured the soap message , you can define a XML template
file
or string that you can use to easily build a SOAP request message....

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
From: "David Lozzi" <Da********@nospam.nospam>
References: <uL**************@TK2MSFTNGP11.phx.gbl>
Subject: Re: Consume web service using HTTP
Date: Mon, 16 Jan 2006 17:03:47 -0500
Lines: 75
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
X-RFC2646: Format=Flowed; Response
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
Message-ID: <#J**************@TK2MSFTNGP12.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.webservices
NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.comcast.net 24.63.42.200
Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.webservices:1337 3
X-Tomcat-NG: microsoft.public.dotnet.framework.webservices

This is what I have so far in my classic asp page

Dim objSrvHTTP
Dim objXMLSend
Dim objXMLReceive
set objSrvHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
set objXMLSend = Server.CreateObject("MSXML2.DOMDocument")
set objXMLReceive = Server.CreateObject("MSXML2.DOMDocument")

objXMLSend.async = false
objXMLSend.loadXML "<OrderDetails
xmlns='http://www.domain.com'><orderno>123456</orderno></OrderDetails>"

objSrvHTTP.open
"POST","http://localhost/prgnrt/orderstatus.asmx/OrderDetails",false
objSrvHTTP.send objXMLSend
objXMLReceive = objSrvHTTP.responseText
Response.ContentType = "text/xml"
Response.Write(objSrvHTTP.responseText)
and I get this error:

Request format is invalid: text/xml.
The web service details are:

HTTP POST
The following is a sample HTTP POST request and response. The placeholders
shown need to be replaced with actual values.

POST /prgnrt/orderstatus.asmx/OrderDetails HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Content-Length: length

orderno=stringHTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0"?>
xmlThanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"David Lozzi" <Da********@nospam.nospam> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Howdy,

I wrote a web service in .Net for my customer. My customer has another
vendor who now has to consume it but they are not using Visual Studio.
Most of their pages are jsp, and they said they need to consume this web
service using HTTP. The developer's IDE is Notepad. Yeah, weird I know.

How is this done? I guess if I can get it to run ASP, IDE independant,
that should make them happy. Any references you can point me to?

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com


Jan 18 '06 #5
Thanks for your response.

So have you tried using some trace tools to capture a example SOAP request
message(sent by .net webservice proxy)? Also, for testing, you can use the
..net's HttpWebRequest component to post raw XML soap message to the service
to see whether this works, if still not work , there may exists some
problem with our XML SOAP message, elsewise, the problem should reside in
the msxml code....

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
From: "David Lozzi" <Da********@nospam.nospam>
References: <uL**************@TK2MSFTNGP11.phx.gbl>
<#J**************@TK2MSFTNGP12.phx.gbl>
<7C**************@TK2MSFTNGXA02.phx.gbl>
Subject: Re: Consume web service using HTTP
Date: Wed, 18 Jan 2006 15:54:26 -0500
Lines: 184
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
X-RFC2646: Format=Flowed; Original
Message-ID: <eq*************@TK2MSFTNGP12.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.webservices
NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.comcast.net 24.63.42.200
Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
microsoft.public.dotnet.framework.webservices:1340 1
X-Tomcat-NG: microsoft.public.dotnet.framework.webservices

I updated as suggested but I still get the same error.

Dim objSrvHTTP
Dim objXMLSend
Dim objXMLReceive
set objSrvHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
set objXMLSend = Server.CreateObject("MSXML2.DOMDocument")
set objXMLReceive = Server.CreateObject("MSXML2.DOMDocument")

objXMLSend.async = false
objXMLSend.loadXML "<soap:Envelope
xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""
xmlns:xsd=""http://www.w3.org/2001/XMLSchema""
xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"">" & _
"<soap:Body><OrderDetails xmlns=""http://www.domain.com"">" & _
"<orderno>123456</orderno>" & _
"</OrderDetails></soap:Body></soap:Envelope>"

objSrvHTTP.open
"POST","http://localhost/prgnrt/orderstatus.asmx/OrderDetails",false
objSrvHTTP.send objXMLSend
objXMLReceive = objSrvHTTP.responseText
Response.ContentType = "text/xml"
Response.Write(objSrvHTTP.responseText)

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:7C**************@TK2MSFTNGXA02.phx.gbl...
Hi David,

Welcome to MSDN newsgroup.
As for the calling webservice in JSP application, I think you'd consider
the following options:

1. If you're calling the webservice through JSP's serverside code(java
code), I think you have to lookup some JAVA specific webservice sdk which
can help create webservice proxy classes which simplified webservice
consuming... Elsewise, you have to use the java specific http request
component to manually send SOAP XML http request to the .net webservice
....

2. If you're calling the webservice through webpage's clientside script
code, using the XML HTTP component as you mentioned should be ok.

Based on the code you provided, you directly send the following XML as
SOAP
messageto target .net webservcie:

"<OrderDetails
xmlns='http://www.domain.com'><orderno>123456</orderno></OrderDetails>"

This is not correct since SOAP webservcie message should include the
complete SOAP envelope which contains soap headers(optional) and soap
boday
(required).... To determine the correct XML soap message you should
send, I suggest you use some TCP or HTTP trace tools to trace the soap
message ( you can consuming the webservcie through .net client app first
to capture such SOAP message). And the Trace Utility in SOAP toolkit 3.0
is a good http trace tools:

#SOAP Toolkit 3.0
http://www.microsoft.com/downloads/d...0DD-CEEC-4088- 9753-86F052EC8450&displaylang=en

When you has captured the soap message , you can define a XML template
file
or string that you can use to easily build a SOAP request message....

Hope helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
From: "David Lozzi" <Da********@nospam.nospam>
References: <uL**************@TK2MSFTNGP11.phx.gbl>
Subject: Re: Consume web service using HTTP
Date: Mon, 16 Jan 2006 17:03:47 -0500
Lines: 75
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
X-RFC2646: Format=Flowed; Response
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
Message-ID: <#J**************@TK2MSFTNGP12.phx.gbl>
Newsgroups: microsoft.public.dotnet.framework.webservices
NNTP-Posting-Host: c-24-63-42-200.hsd1.ma.comcast.net 24.63.42.200
Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.webservices:1337 3
X-Tomcat-NG: microsoft.public.dotnet.framework.webservices

This is what I have so far in my classic asp page

Dim objSrvHTTP
Dim objXMLSend
Dim objXMLReceive
set objSrvHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
set objXMLSend = Server.CreateObject("MSXML2.DOMDocument")
set objXMLReceive = Server.CreateObject("MSXML2.DOMDocument")

objXMLSend.async = false
objXMLSend.loadXML "<OrderDetails
xmlns='http://www.domain.com'><orderno>123456</orderno></OrderDetails>"

objSrvHTTP.open
"POST","http://localhost/prgnrt/orderstatus.asmx/OrderDetails",false
objSrvHTTP.send objXMLSend
objXMLReceive = objSrvHTTP.responseText
Response.ContentType = "text/xml"
Response.Write(objSrvHTTP.responseText)
and I get this error:

Request format is invalid: text/xml.
The web service details are:

HTTP POST
The following is a sample HTTP POST request and response. The placeholders
shown need to be replaced with actual values.

POST /prgnrt/orderstatus.asmx/OrderDetails HTTP/1.1
Host: localhost
Content-Type: application/x-www-form-urlencoded
Content-Length: length

orderno=stringHTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0"?>
xmlThanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com

"David Lozzi" <Da********@nospam.nospam> wrote in message
news:uL**************@TK2MSFTNGP11.phx.gbl...
Howdy,

I wrote a web service in .Net for my customer. My customer has another
vendor who now has to consume it but they are not using Visual Studio.
Most of their pages are jsp, and they said they need to consume this web
service using HTTP. The developer's IDE is Notepad. Yeah, weird I know.

How is this done? I guess if I can get it to run ASP, IDE independant,
that should make them happy. Any references you can point me to?

Thanks!!

--
David Lozzi
Web Applications Developer
dlozzi@(remove-this)delphi-ts.com



Jan 19 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Harry Hudini | last post by:
Is it possible to restart a service using ASP ? I have some code here to restart a service using vbscript, but it doesnt translate into asp at all....
2
by: M B HONG 20 | last post by:
Hi all - I am developing an ASP.NET web application that requires the use of remote calls going on behind the client's page in the browser. I...
2
by: raghavendra | last post by:
Hi, How to run automatically windows service by using setup deployment insatllation script using visual studio 2003.? What i did is :-- 1. ...
1
by: JTrigger | last post by:
I need to call a .Net web service that takes an array or object as a parameter from a PERL client. I have been trying to use the PERL SOAP::Lite...
3
by: Jim Lewis | last post by:
I have read several things that state accessing a Web Service through a Query String should work. However, when I try to execute...
0
by: JDF | last post by:
I am trying to create a Windows service using SimpleXMLRPCServer and win32serviceutil. The service itself seems to be working properly (starts,...
3
by: =?Utf-8?B?RGFuZGFuIFpoYW5n?= | last post by:
Now I have a web application, a web service and a SQL Server database. The Web application will invoke the web service, the web service invokes...
8
by: Mo | last post by:
Hi, I can not find a decent example showing how to consume a asp.net 2.0 web service using classic ASP. Does any body have an example I could...
0
by: anujitkarmakar | last post by:
I have tried calling web service using SOAP. I tried the following code. But did not work. Its giving the error. Code: protected void...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.