Click here to Skip to main content
15,907,281 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to use array update the xml file? Pin
Nick Parker28-Dec-03 3:19
protectorNick Parker28-Dec-03 3:19 
GeneralAttention C++ developers Pin
Alex Korchemniy27-Dec-03 15:40
Alex Korchemniy27-Dec-03 15:40 
GeneralRe: Attention C++ developers Pin
Colin Angus Mackay27-Dec-03 17:07
Colin Angus Mackay27-Dec-03 17:07 
GeneralRe: Attention C++ developers Pin
Alex Korchemniy27-Dec-03 17:11
Alex Korchemniy27-Dec-03 17:11 
GeneralRe: Attention C++ developers Pin
Colin Angus Mackay27-Dec-03 17:52
Colin Angus Mackay27-Dec-03 17:52 
GeneralRe: Attention C++ developers Pin
leppie27-Dec-03 19:07
leppie27-Dec-03 19:07 
GeneralRe: Attention C++ developers Pin
Heath Stewart28-Dec-03 3:21
protectorHeath Stewart28-Dec-03 3:21 
QuestionHow Do I transform 2d coordinates of the mouse into 3d? Pin
SherKar27-Dec-03 14:21
SherKar27-Dec-03 14:21 
AnswerRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Colin Angus Mackay27-Dec-03 17:55
Colin Angus Mackay27-Dec-03 17:55 
AnswerRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
leppie27-Dec-03 19:12
leppie27-Dec-03 19:12 
GeneralRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Colin Angus Mackay28-Dec-03 1:55
Colin Angus Mackay28-Dec-03 1:55 
GeneralRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Nick Parker28-Dec-03 3:44
protectorNick Parker28-Dec-03 3:44 
GeneralRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Colin Angus Mackay28-Dec-03 12:13
Colin Angus Mackay28-Dec-03 12:13 
GeneralRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Nick Parker28-Dec-03 16:55
protectorNick Parker28-Dec-03 16:55 
AnswerRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Bryan White29-Dec-03 22:30
Bryan White29-Dec-03 22:30 
GeneralRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Colin Angus Mackay31-Dec-03 5:37
Colin Angus Mackay31-Dec-03 5:37 
AnswerRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
Colin Angus Mackay31-Dec-03 5:39
Colin Angus Mackay31-Dec-03 5:39 
GeneralRe: How Do I transform 2d coordinates of the mouse into 3d? Pin
SherKar1-Jan-04 13:32
SherKar1-Jan-04 13:32 
AnswerRe: How Do I transform 2d coordinates of the mouse into 3d? - some code to help you Pin
Bryan White1-Jan-04 21:48
Bryan White1-Jan-04 21:48 
Generalvoice Pin
heba_zien27-Dec-03 10:06
heba_zien27-Dec-03 10:06 
GeneralRe: voice Pin
Wizard_0127-Dec-03 10:36
Wizard_0127-Dec-03 10:36 
GeneralRe: voice Pin
Nick Parker27-Dec-03 10:38
protectorNick Parker27-Dec-03 10:38 
GeneralProblem adding web reference to Visual c++ application Pin
Anonymous27-Dec-03 9:56
Anonymous27-Dec-03 9:56 
When I use Microsoft's sproxy.exe (version 7.00.9466) to create a web reference in a Visual C++ application, I get an error message: SDL1000 : Not enough storage is available to complete this operation. If I remove the fault element from the operation element, the header is generated. See wsdl below. Any ideas?


Thanks,
Rick

<?xml version = '1.0'?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns2="http://xmlns.catch.com/ws/types"
xmlns:tns="http://xmlns.catch.com/ws"
name="RemoteAccess"
targetNamespace="http://xmlns.catch.com/ws">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns="http://xmlns.catch.com/ws/types"
targetNamespace="http://xmlns.catch.com/ws/types">

<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>

<complexType name="WebServiceException">
<sequence>
<element name="errorCode" type="int"/>
<element name="message" type="string"/></sequence></complexType>

</schema></types>

<message name="RemoteAccessProvider_endSession"/>
<message name="RemoteAccessProvider_endSessionResponse"/>


<portType name="RemoteAccessProvider">

<operation name="endSession" parameterOrder="">
<input message="tns:RemoteAccessProvider_endSession"/>
<output message="tns:RemoteAccessProvider_endSessionResponse"/>
<fault name="WebServiceException" message="tns:WebServiceException"/></operation>

</portType>

<binding name="RemoteAccessProviderBinding" type="tns:RemoteAccessProvider">

<operation name="endSession">
<input>
<soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://xmlns.catch.com/ws"/></input>
<output>
<soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://xmlns.catch.com/ws"/></output>

<!-- Offending Code, remove and sproxy.exe works.-->
<fault name="WebServiceException">
<soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://xmlns.catch.com/ws/"/></fault>
<!-- Offending Code End -->

<soap:operation soapAction=""/></operation>

<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/></binding>
<service name="RemoteAccess">
<port name="RemoteAccessProviderPort" binding="tns:RemoteAccessProviderBinding">
<soap:address xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" location="http://localhost/ws"/></port></service></definitions>

GeneralConditional Xml Document Reading Pin
LokiSD27-Dec-03 6:04
LokiSD27-Dec-03 6:04 
GeneralRe: Conditional Xml Document Reading Pin
Nick Parker27-Dec-03 8:14
protectorNick Parker27-Dec-03 8:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.