473,659 Members | 3,605 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

string not recognized as valid datetime

I'm connecting to a java web service that defines the following complex type
in the wsdl

<xs:complexTy pe name="employee" >
<xs:sequence>
<xs:element minOccurs="0" name="firstName " type="xs:string " />
<xs:element minOccurs="0" name="hireDate" type="xs:date" />
<xs:element minOccurs="0" name="lastName" type="xs:string " />
<xs:element minOccurs="0" name="terminati onDate" type="xs:date" />
</xs:sequence>
</xs:complexType>

When the type is marshalled to my VS2005 generated proxy the java web
service will omit the terminationDate in the soap message. The proxy then
throws the "string not recognized as valid datetime" error. The proxy code
for the field is copied below. How can I get the proxy to marshal this
type? Shouldn't it set the terminationDate Field to 0 and set
terminationDate Specified=false ?
[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied,
DataType="date" )]
public System.DateTime terminationDate {
get {return this.terminatio nDateField;}
set {this.terminati onDateField = value;}
}

[System.Xml.Seri alization.XmlIg noreAttribute()]
public bool terminationDate Specified {
get {
return this.terminatio nDateFieldSpeci fied;
}
set {
this.terminatio nDateFieldSpeci fied = value;
}
}
Jul 12 '07 #1
1 6025
Found the issue. The termination dates where passed as
'2007-001-01T00:00:00-3:00' in the response message and the xsd and proxy
are typed as 'date' and not 'dateTime'.

"Scott Holman" <sh*****@micros .comwrote in message
news:OW******** *****@TK2MSFTNG P05.phx.gbl...
I'm connecting to a java web service that defines the following complex
type in the wsdl

<xs:complexTy pe name="employee" >
<xs:sequence>
<xs:element minOccurs="0" name="firstName " type="xs:string " />
<xs:element minOccurs="0" name="hireDate" type="xs:date" />
<xs:element minOccurs="0" name="lastName" type="xs:string " />
<xs:element minOccurs="0" name="terminati onDate" type="xs:date" />
</xs:sequence>
</xs:complexType>

When the type is marshalled to my VS2005 generated proxy the java web
service will omit the terminationDate in the soap message. The proxy then
throws the "string not recognized as valid datetime" error. The proxy
code for the field is copied below. How can I get the proxy to marshal
this type? Shouldn't it set the terminationDate Field to 0 and set
terminationDate Specified=false ?
[System.Xml.Seri alization.XmlEl ementAttribute( Form=System.Xml .Schema.XmlSche maForm.Unqualif ied,
DataType="date" )]
public System.DateTime terminationDate {
get {return this.terminatio nDateField;}
set {this.terminati onDateField = value;}
}

[System.Xml.Seri alization.XmlIg noreAttribute()]
public bool terminationDate Specified {
get {
return this.terminatio nDateFieldSpeci fied;
}
set {
this.terminatio nDateFieldSpeci fied = value;
}
}

Jul 13 '07 #2

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

Similar topics

0
4878
by: RSH | last post by:
I am having a bit of trouble filling a datatable with a query. I'm getting the error message: System.FormatException: String was not recognized as a valid DateTime. at System.DateTimeParse.Parse(String s, DateTimeFormatInfo dtfi, DateTimeStyles styles) at System.DateTime.Parse(String s, IFormatProvider provider, DateTimeStyles styles) at System.DateTime.Parse(String s, IFormatProvider provider) at System.Convert.ToDateTime(String value,...
6
2498
by: Rookie Card | last post by:
I know this is a very common issue but cannot find a thread that resolves the issue. I need to re-format my dates to "MMM d, yyyy". The problem I have is I have an MSSQL database that allows <NULLS>. I'm using this code to format the dates: <%# IIF((dsCase.FieldValue("inj_beg", Container) <> nothing),DateTime.Parse(dsCase.FieldValue("inj_beg", Container)).ToString("MMM d, yyyy"), "") %>
11
33308
by: Bob Day | last post by:
The IsDate code below should result in False, instead it throws the exception below. Why? How do I check if a string can be converted to a date if this function does not work properly? Bob code: Dim blnDate_Valid As Boolean = True Dim x As String = "Hello"
1
4687
by: database | last post by:
I AM FACING A PROBLEM WHEN I ACCESS ONE OF THE PAGES. IT USED TO WORK BEFORE BUT AFTER RESTARTING THE APPLICATION SEVER IT GIVES THE FOLLOWING ERROR. - Server Error -------------------------------------------------------------------------------- The string was not recognized as a valid DateTime. There is a unknown word starting at index 20.
10
4110
by: mercea | last post by:
hi all, i'm trying to insert the time/date a button was clicked on a gridview and it generates an error:the string was not recognized as a valid DateTime.There is an unknown word starting at index 0 i have changed the culture to en-US but it still doesn't work. i actually created the date/time column after some data had been entered into the table so the column allows nulls. this is my code: InsertCommand="INSERT INTO...
0
758
by: Andres Bohren | last post by:
Hi i have a GridView and have Problems to put the values into the right Datatypes. Protected Sub GridView1_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles GridView1.RowUpdating Dim intID As Integer = GridView1.DataKeys(e.RowIndex).Value.ToString() Dim strDatum As String = GridView1.Rows(e.RowIndex).Cells(2).Text
4
15329
by: dhanashivam | last post by:
hi, in my web application i am getting date values from sql server database and store in the datatable. it works fine when i use the US culture. But when i change the culture to british i am getting the error. String was not recognized as a valid DateTime.Couldn't store <22/02/08> in dt1 Column. Expected type is DateTime. Any one please can help me?
1
15333
by: Magnus.Moraberg | last post by:
Hi, I have the following event which checks if a cell in a dgv contains a date and if so, checks if it is formatted correctly. I don't think its good practice for be to try this by catching an exception. Is there a better way? Notice also my use of a dummy dateTime object. Also, does the DateTime object contain any information about how it should be formatted? For example - "Format Error: DateTime cell incorrectly formatted. Expected...
3
4971
by: lucindaa | last post by:
Hi, i have a string variable having date as following format "05-01-2010" when convert this date into DateTime Format i got the following error 'String was not recognized as a valid DateTime' Please Help me to solve it
0
8428
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8748
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8531
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8628
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6181
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5650
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4335
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1978
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.