473,413 Members | 2,066 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,413 software developers and data experts.

Problem add Web Reference for CSTA WSDL

Hi,

I am trying to create a Web Reference for CSTA using the URL
http://www.ecma-international.org/st...perations.wsdl

Visual .Net complains that:
"
The document was understood, but it could not be processed.
- The WSDL document contains links that could not be resolved.
- There was an error downloading
'http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta.xsd'.
- The request failed with HTTP status 404: Not Found.
"
In the WSDL, csta.xds in at http://www.ecma.ch/standards/ecma-323/csta/ed2
and it surely exists.

What have I done wrong?

Thank you very much,
Nov 12 '05 #1
6 5593
"trexim" <tr****@hotmail.com> wrote in message news:2r*************@uni-berlin.de...
- There was an error downloading
'http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta.xsd'.
- The request failed with HTTP status 404: Not Found.
"
In the WSDL, csta.xds in at http://www.ecma.ch/standards/ecma-323/csta/ed2
and it surely exists.

What have I done wrong?


If you look closely, Visual Studio .NET is complaining that a file in
the "ecma-348" folder could not be found. Meanwhile, you say
the file exists in the "ecma-323" folder. I think you have a typo
in the WSDL where it says "ecma-348" when it meant to state
"ecma-323".
Derek Harmon
Nov 12 '05 #2

"Derek Harmon" <lo*******@msn.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
"trexim" <tr****@hotmail.com> wrote in message

news:2r*************@uni-berlin.de...
- There was an error downloading
'http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta.xsd'. - The request failed with HTTP status 404: Not Found.
"
In the WSDL, csta.xds in at http://www.ecma.ch/standards/ecma-323/csta/ed2 and it surely exists.

What have I done wrong?


If you look closely, Visual Studio .NET is complaining that a file in
the "ecma-348" folder could not be found. Meanwhile, you say
the file exists in the "ecma-323" folder. I think you have a typo
in the WSDL where it says "ecma-348" when it meant to state
"ecma-323".
Derek Harmon


Sorry,

I should have been clearer in the question:

In the wsdl file, the type is imported:

<xs:schema
targetNamespace="http://www.ecma-international.org/standards/ecma-348/csta-w
sdl">
<xs:import namespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
schemaLocation="csta.xsd" />
</xs:schema>

It seems that Visual Studio .NET insists on looking for "csta.xsd" in
"http://www.ecma-international.org/standards/ecma-348/csta-wsdl" (does not
exist), but the wsdl has specified the correct place which is
"http://www.ecma.ch/standards/ecma-323/csta/ed2"

Is that a VS .NET resticrion or just a mistake in CSTA WSDL, or they are
just not compatible?

Thanks,
Nov 12 '05 #3
Trexim,

The problem is that the schemaLocation reference to csta.xsd is
relative, therefore wsdl.exe (and Visual Studio) append the path
location of the referencing wsdl document -- which I would assume to be
the default behavior.

Unfortunately, you can't provide a "search path" for included documents,
so your best bet is to download the wsdl and all references schemas, put
them into a single folder on your disk and run wsdl.exe (or the Add Web
Reference wizard).

HTH,
Christoph Schittko
MVP XML
-----Original Message-----
From: trexim [mailto:tr****@hotmail.com]
Posted At: Monday, September 20, 2004 9:10 AM
Posted To: microsoft.public.dotnet.xml
Conversation: Problem add Web Reference for CSTA WSDL
Subject: Re: Problem add Web Reference for CSTA WSDL
"Derek Harmon" <lo*******@msn.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
"trexim" <tr****@hotmail.com> wrote in message news:2r*************@uni-berlin.de...
- There was an error downloading

'http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta.xsd
'.
- The request failed with HTTP status 404: Not Found.
"
In the WSDL, csta.xds in at http://www.ecma.ch/standards/ecma-323/csta/ed2 and it surely exists.

What have I done wrong?


If you look closely, Visual Studio .NET is complaining that a file in the "ecma-348" folder could not be found. Meanwhile, you say
the file exists in the "ecma-323" folder. I think you have a typo
in the WSDL where it says "ecma-348" when it meant to state
"ecma-323".
Derek Harmon


Sorry,

I should have been clearer in the question:

In the wsdl file, the type is imported:

<xs:schema
targetNamespace="http://www.ecma-international.org/standards/ecma-
348/csta-w
sdl">
<xs:import

namespace="http://www.ecma.ch/standards/ecma-323/csta/ed2" schemaLocation="csta.xsd" />
</xs:schema>

It seems that Visual Studio .NET insists on looking for "csta.xsd" in
"http://www.ecma-international.org/standards/ecma-348/csta-wsdl" (does not exist), but the wsdl has specified the correct place which is
"http://www.ecma.ch/standards/ecma-323/csta/ed2"

Is that a VS .NET resticrion or just a mistake in CSTA WSDL, or they are just not compatible?

Thanks,

Nov 12 '05 #4
Thank you for your reply.

I tried that too (quite tedious, with the downloading of 229 .xsd files). I
no longer get the error message while using the "Add Web Reference" wizard,
but VS .Net couldn't generate any codes and complains that:
"
Custom tool warning: DiscoCodeGenerator unable to initialize code generator.
No code generated.
Custom tool warning: Ignore duplicate schema document
'file:///C:/csta_wsdl_docs/accept-call.xsd' with TargetNamespace
'http://www.ecma.ch/standards/ecma-323/csta/ed2'.
"

Obviously this could be a brand new type of error.

I am just surpised that searching the Web and news-group for similar
problem, I couldn't find any entry. As if nobody ever tried this csta.wsdl
with Visual Studio .NET. ECMA does not have (it seems) a developer forum or
anything like that. Microsoft is using some CSTA standard (for voice
application in particular) and appears to be moving away from TAPI.
Hopefully, I am still posting something in topic here.

Any reply/advice/pointer are greatly appreciated.

Thank you very much,
"Christoph Schittko [MVP]" <IN**********@austin.rr.com> wrote in message
news:Ow*************@TK2MSFTNGP10.phx.gbl...
Trexim,

The problem is that the schemaLocation reference to csta.xsd is
relative, therefore wsdl.exe (and Visual Studio) append the path
location of the referencing wsdl document -- which I would assume to be
the default behavior.

Unfortunately, you can't provide a "search path" for included documents,
so your best bet is to download the wsdl and all references schemas, put
them into a single folder on your disk and run wsdl.exe (or the Add Web
Reference wizard).

HTH,
Christoph Schittko
MVP XML
-----Original Message-----
From: trexim [mailto:tr****@hotmail.com]
Posted At: Monday, September 20, 2004 9:10 AM
Posted To: microsoft.public.dotnet.xml
Conversation: Problem add Web Reference for CSTA WSDL
Subject: Re: Problem add Web Reference for CSTA WSDL
"Derek Harmon" <lo*******@msn.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
"trexim" <tr****@hotmail.com> wrote in message

news:2r*************@uni-berlin.de...
> - There was an error downloading
>

'http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta.xsd
'.
> - The request failed with HTTP status 404: Not Found.
> "
> In the WSDL, csta.xds in at

http://www.ecma.ch/standards/ecma-323/csta/ed2
> and it surely exists.
>
> What have I done wrong?

If you look closely, Visual Studio .NET is complaining that a file in the "ecma-348" folder could not be found. Meanwhile, you say
the file exists in the "ecma-323" folder. I think you have a typo
in the WSDL where it says "ecma-348" when it meant to state
"ecma-323".
Derek Harmon


Sorry,

I should have been clearer in the question:

In the wsdl file, the type is imported:

<xs:schema
targetNamespace="http://www.ecma-international.org/standards/ecma-
348/csta-w
sdl">
<xs:import

namespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
schemaLocation="csta.xsd" />
</xs:schema>

It seems that Visual Studio .NET insists on looking for "csta.xsd" in
"http://www.ecma-international.org/standards/ecma-348/csta-wsdl" (does

not
exist), but the wsdl has specified the correct place which is
"http://www.ecma.ch/standards/ecma-323/csta/ed2"

Is that a VS .NET resticrion or just a mistake in CSTA WSDL, or they

are
just not compatible?

Thanks,


Nov 12 '05 #5
The new error sounds like it's legitimate. Any chance another file
besides 'file:///C:/csta_wsdl_docs/accept-call.xsd' defines the
namespace 'http://www.ecma.ch/standards/ecma-323/csta/ed2' where if
should reference it via an import or an include?

HTH,
Christoph Schittko
MVP XML .NET
-----Original Message-----
From: trexim [mailto:tr****@hotmail.com]
Posted At: Monday, September 20, 2004 3:37 PM
Posted To: microsoft.public.dotnet.xml
Conversation: Problem add Web Reference for CSTA WSDL
Subject: Re: Problem add Web Reference for CSTA WSDL

Thank you for your reply.

I tried that too (quite tedious, with the downloading of 229 .xsd files). I
no longer get the error message while using the "Add Web Reference"
wizard,
but VS .Net couldn't generate any codes and complains that:
"
Custom tool warning: DiscoCodeGenerator unable to initialize code
generator.
No code generated.
Custom tool warning: Ignore duplicate schema document
'file:///C:/csta_wsdl_docs/accept-call.xsd' with TargetNamespace
'http://www.ecma.ch/standards/ecma-323/csta/ed2'.
"

Obviously this could be a brand new type of error.

I am just surpised that searching the Web and news-group for similar
problem, I couldn't find any entry. As if nobody ever tried this csta.wsdl with Visual Studio .NET. ECMA does not have (it seems) a developer forum or
anything like that. Microsoft is using some CSTA standard (for voice
application in particular) and appears to be moving away from TAPI.
Hopefully, I am still posting something in topic here.

Any reply/advice/pointer are greatly appreciated.

Thank you very much,
"Christoph Schittko [MVP]" <IN**********@austin.rr.com> wrote in message news:Ow*************@TK2MSFTNGP10.phx.gbl...
Trexim,

The problem is that the schemaLocation reference to csta.xsd is
relative, therefore wsdl.exe (and Visual Studio) append the path
location of the referencing wsdl document -- which I would assume to be the default behavior.

Unfortunately, you can't provide a "search path" for included documents, so your best bet is to download the wsdl and all references schemas, put them into a single folder on your disk and run wsdl.exe (or the Add Web Reference wizard).

HTH,
Christoph Schittko
MVP XML
-----Original Message-----
From: trexim [mailto:tr****@hotmail.com]
Posted At: Monday, September 20, 2004 9:10 AM
Posted To: microsoft.public.dotnet.xml
Conversation: Problem add Web Reference for CSTA WSDL
Subject: Re: Problem add Web Reference for CSTA WSDL
"Derek Harmon" <lo*******@msn.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
> "trexim" <tr****@hotmail.com> wrote in message
news:2r*************@uni-berlin.de...
> > - There was an error downloading
> >

'http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta.xsd '.
> > - The request failed with HTTP status 404: Not Found.
> > "
> > In the WSDL, csta.xds in at
http://www.ecma.ch/standards/ecma-323/csta/ed2
> > and it surely exists.
> >
> > What have I done wrong?
>
> If you look closely, Visual Studio .NET is complaining that a file
in
> the "ecma-348" folder could not be found. Meanwhile, you say
> the file exists in the "ecma-323" folder. I think you have a
typo > in the WSDL where it says "ecma-348" when it meant to state
> "ecma-323".
>
>
> Derek Harmon
>

Sorry,

I should have been clearer in the question:

In the wsdl file, the type is imported:

<xs:schema
targetNamespace="http://www.ecma-international.org/standards/ecma-
348/csta-w
sdl">
<xs:import

namespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
schemaLocation="csta.xsd" />
</xs:schema>

It seems that Visual Studio .NET insists on looking for "csta.xsd" in "http://www.ecma-international.org/standards/ecma-348/csta-wsdl"

(does not
exist), but the wsdl has specified the correct place which is
"http://www.ecma.ch/standards/ecma-323/csta/ed2"

Is that a VS .NET resticrion or just a mistake in CSTA WSDL, or
they are
just not compatible?

Thanks,


Nov 12 '05 #6
I have about 230 ".xsd" files, all of them start with:

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:csta="http://www.ecma.ch/standards/ecma-323/csta/ed2"
elementFormDefault="qualified" attributeFormDefault="unqualified">
.........
.........
</xsd:schema>

Is that redefition?

The wsdl file has this:

<types>
<xs:schema
targetNamespace="http://www.ecma-international.org/standards/ecma-348/csta-w
sdl">
<xs:import namespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
schemaLocation="csta.xsd"/>
</xs:schema>
</types>
------------

For example, "accept-call.xsd" ia:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:csta="http://www.ecma.ch/standards/ecma-323/csta/ed2"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<xsd:annotation>
<xsd:documentation>CSTA-accept-call</xsd:documentation>
</xsd:annotation>
<xsd:include schemaLocation="call-connection-identifiers.xsd"/>
<xsd:include schemaLocation="device-feature-types.xsd"/>
<xsd:include schemaLocation="extension-types.xsd"/>
<xsd:element name="AcceptCall">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="callToBeAccepted" type="csta:ConnectionID"/>
<xsd:element ref="csta:correlatorData" minOccurs="0"/>
<xsd:element ref="csta:userData" minOccurs="0"/>
<xsd:element ref="csta:extensions" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="AcceptCallResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="csta:extensions" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
---------------------------------------------------------------
While "agent-busy-event.xsd" is:

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:csta="http://www.ecma.ch/standards/ecma-323/csta/ed2"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<xsd:annotation>
<xsd:documentation>CSTA-agent-busy-event</xsd:documentation>
</xsd:annotation>
<xsd:include schemaLocation="event-cause.xsd"/>
<xsd:include schemaLocation="device-identifiers.xsd"/>
<xsd:include schemaLocation="status-reporting.xsd"/>
<xsd:include schemaLocation="device-feature-types.xsd"/>
<xsd:include schemaLocation="extension-types.xsd"/>
<xsd:element name="AgentBusyEvent">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="csta:monitorCrossRefID"/>
<xsd:element name="agentDevice" type="csta:SubjectDeviceID"/>
<xsd:element name="agentID" type="csta:AgentID" minOccurs="0"/>
<xsd:element name="acdGroup" type="csta:DeviceID" minOccurs="0"/>
<xsd:element name="pendingAgentState" type="csta:PendingAgentState"
minOccurs="0"/>
<xsd:element ref="csta:cause" minOccurs="0"/>
<xsd:element ref="csta:extensions" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>

----------------------------------------------------------------------------
-

By the way, I have 320 error message like the below one for each file (not
only for accept-call.xsd):

- Custom tool warning: Ignore duplicate schema document
'file:///C:/csta_wsdl_docs/accept-call.xsd' with TargetNamespace
'http://www.ecma.ch/standards/ecma-323/csta/ed2'.
- Custom tool warning: Ignore duplicate schema document
'file:///C:/csta_wsdl_docs/agent-busy-event.xsd' with TargetNamespace
'http://www.ecma.ch/standards/ecma-323/csta/ed2'.
- Custom tool warning: Ignore duplicate schema document
'file:///C:/csta_wsdl_docs/agent-logged-off-event.xsd' with TargetNamespace
'http://www.ecma.ch/standards/ecma-323/csta/ed2'.

....... and so on .....

Thanks,


"Christoph Schittko [MVP]" <IN**********@austin.rr.com> wrote in message
news:OA**************@TK2MSFTNGP15.phx.gbl...
The new error sounds like it's legitimate. Any chance another file
besides 'file:///C:/csta_wsdl_docs/accept-call.xsd' defines the
namespace 'http://www.ecma.ch/standards/ecma-323/csta/ed2' where if
should reference it via an import or an include?

HTH,
Christoph Schittko
MVP XML .NET
-----Original Message-----
From: trexim [mailto:tr****@hotmail.com]
Posted At: Monday, September 20, 2004 3:37 PM
Posted To: microsoft.public.dotnet.xml
Conversation: Problem add Web Reference for CSTA WSDL
Subject: Re: Problem add Web Reference for CSTA WSDL

Thank you for your reply.

I tried that too (quite tedious, with the downloading of 229 .xsd

files).
I
no longer get the error message while using the "Add Web Reference"
wizard,
but VS .Net couldn't generate any codes and complains that:
"
Custom tool warning: DiscoCodeGenerator unable to initialize code
generator.
No code generated.
Custom tool warning: Ignore duplicate schema document
'file:///C:/csta_wsdl_docs/accept-call.xsd' with TargetNamespace
'http://www.ecma.ch/standards/ecma-323/csta/ed2'.
"

Obviously this could be a brand new type of error.

I am just surpised that searching the Web and news-group for similar
problem, I couldn't find any entry. As if nobody ever tried this

csta.wsdl
with Visual Studio .NET. ECMA does not have (it seems) a developer

forum
or
anything like that. Microsoft is using some CSTA standard (for voice
application in particular) and appears to be moving away from TAPI.
Hopefully, I am still posting something in topic here.

Any reply/advice/pointer are greatly appreciated.

Thank you very much,
"Christoph Schittko [MVP]" <IN**********@austin.rr.com> wrote in

message
news:Ow*************@TK2MSFTNGP10.phx.gbl...
Trexim,

The problem is that the schemaLocation reference to csta.xsd is
relative, therefore wsdl.exe (and Visual Studio) append the path
location of the referencing wsdl document -- which I would assume to be the default behavior.

Unfortunately, you can't provide a "search path" for included documents, so your best bet is to download the wsdl and all references schemas, put them into a single folder on your disk and run wsdl.exe (or the Add Web Reference wizard).

HTH,
Christoph Schittko
MVP XML

> -----Original Message-----
> From: trexim [mailto:tr****@hotmail.com]
> Posted At: Monday, September 20, 2004 9:10 AM
> Posted To: microsoft.public.dotnet.xml
> Conversation: Problem add Web Reference for CSTA WSDL
> Subject: Re: Problem add Web Reference for CSTA WSDL
>
>
> "Derek Harmon" <lo*******@msn.com> wrote in message
> news:%2****************@TK2MSFTNGP11.phx.gbl...
> > "trexim" <tr****@hotmail.com> wrote in message
> news:2r*************@uni-berlin.de...
> > > - There was an error downloading
> > >
>
'http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta.xsd '.
> > > - The request failed with HTTP status 404: Not Found.
> > > "
> > > In the WSDL, csta.xds in at
> http://www.ecma.ch/standards/ecma-323/csta/ed2
> > > and it surely exists.
> > >
> > > What have I done wrong?
> >
> > If you look closely, Visual Studio .NET is complaining that a file in
> > the "ecma-348" folder could not be found. Meanwhile, you say
> > the file exists in the "ecma-323" folder. I think you have a typo > > in the WSDL where it says "ecma-348" when it meant to state
> > "ecma-323".
> >
> >
> > Derek Harmon
> >
>
> Sorry,
>
> I should have been clearer in the question:
>
> In the wsdl file, the type is imported:
>
> <xs:schema
> targetNamespace="http://www.ecma-international.org/standards/ecma-
> 348/csta-w
> sdl">
> <xs:import
namespace="http://www.ecma.ch/standards/ecma-323/csta/ed2"
> schemaLocation="csta.xsd" />
> </xs:schema>
>
> It seems that Visual Studio .NET insists on looking for "csta.xsd" in > "http://www.ecma-international.org/standards/ecma-348/csta-wsdl" (does not
> exist), but the wsdl has specified the correct place which is
> "http://www.ecma.ch/standards/ecma-323/csta/ed2"
>
> Is that a VS .NET resticrion or just a mistake in CSTA WSDL, or they are
> just not compatible?
>
> Thanks,


Nov 12 '05 #7

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

Similar topics

5
by: Bill Hauver | last post by:
I am attempting to use a web service from my work pc which is behind a firewall. I have used wsdl.exe to create the web service reference class and added it to my project. (this seems to work...
0
by: trexim | last post by:
Hi, I am trying to create a Web Reference for CSTA using the URL http://www.ecma-international.org/standards/ecma-348/csta-wsdl/csta-wsdl-all-operations.wsdl Visual .Net complains that: "...
0
by: umhlali | last post by:
I get the following exception when my VB.NET app calls a Java web service that returns an array of objects. The same call works for a single object though. So looks like there is no problem...
7
by: Danny Tuppeny | last post by:
Hi All, I've been going through Google Groups, but nothing seems to quite match my problem. It's hard to post a WSDL or anything at the moment (it's not my service, I'm just using it), but maybe...
6
by: seeIT | last post by:
In a client application a simple webservice (add/multiply) was added to solution panel but proxy methods do not appear. WSDL description in solution panel follows: <?xml version="1.0"...
0
by: leslie_tighe | last post by:
Hello, I have a web service that is running in a java server using axis that I want to use from .net. In VS.net 2003 I setup a project with a web reference. Using generated code I am able to...
0
by: Richard Gregory | last post by:
Hi, I have the wsdl below, for an Axis web service, and when I select Add Web Refernce in Visual Studio the proxy is missing a class representing the returnedElementsType (see reference.cs below...
9
by: Cesar | last post by:
Hello there, A java programmer sent me a wsdl file, which I have to use to consume his web methods. When I run the wsld.exe tool to generate the class' code, I get the following message: ...
0
by: shruthi | last post by:
Hai, I m nt able to refer the webservice created using java and xml through vb.net.when i try to refer the wsdl file i get an error D:\WindowsApplication7\Web References\ws\Reference.map(1):...
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
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new...

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.