473,385 Members | 1,317 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 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 10367

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. I also have a script here that displays the...
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 successfully got the service working via SOAP (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. created a windows service & tested the same. 2....
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 package to do this without success. I can call one...
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 http://localhost/webservice1/service1.asmx/HelloWorld I get the...
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, stops, etc) and I can connect using an XMLRPC client...
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 the SQL Server stored procedure. I let the web...
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 use? Thanks
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 btnTestSoap_Click(object sender, EventArgs e) { ...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.