Error with simulation package using workstation with OS windows 7

Asked By 0 points N/A Posted on -
qa-featured

Hello,

One of my friends has recently installed solid works 2012 successfully. He is using workstation with OS windows 7. According to him, the modeling part of the software worked perfectly, but when he started with the simulation package, he was met with an error. The screenshot of the error is as follows:

"SolidWorks
Fatal Error: c00ce513: line: 8,column 53
Whitespace is not allowed at this location"

When he clicks on the OK button several times, it disappears and he is able to use the simulation package, but why does it appear again and again?

If anyone of you has any idea, please let me know. I'll be waiting for your suggestions and feedback.

Kind regards.

SHARE
Answered By 0 points N/A #150220

Error with simulation package using workstation with OS windows 7

qa-featured

Try this:

Maybe it’s because your xmlTag value contains one or more whitespace characters. You can change the offending column names in the table as long as you remember to change any related stored procs or in-code sql queries.

Or:

Maybe it’s because the Column fields that you pass to the Xml there is ampersand and in XML its a special character and you need to turn it off. You need to leave your code the way it and in your code where you pass the xml string, you must use the replace function in C# or Vb.net like this:

                Xml.Replace("&", "& amp;");

It will turn it off and everything will be fine again.

Related Questions